/* ================================================================
   NEON SIGN CONFIGURATOR — neon-signages-2.css
   Namespace: ncfg-
   All fonts loaded via Google Fonts in the blade template
   ================================================================ */

/* ----------------------------------------------------------------
   SECTION WRAPPER
   ---------------------------------------------------------------- */
.ncfg-section {
    background: #090506 url('../Images/background.webp') center center / cover no-repeat;
    padding: 50px 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.ncfg-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------------------------------------------------------
   LAYOUT: LEFT preview | RIGHT configurator
   ---------------------------------------------------------------- */
.ncfg-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 660px;
}

/* ----------------------------------------------------------------
   LEFT — Preview Panel
   ---------------------------------------------------------------- */
.ncfg-preview-col {
    flex: 0 0 52%;
    max-width: 52%;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 540px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.ncfg-preview-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.ncfg-ambient-glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.3) 0%, rgba(255, 45, 120, 0.08) 50%, transparent 75%);
    pointer-events: none;
    z-index: 1;
    filter: blur(15px);
    transition: background 0.35s ease;
}

.ncfg-sofa-img {
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 85%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.ncfg-neon-text-wrap {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    width: 90%;
    pointer-events: none;
}

.ncfg-neon-text {
    font-family: 'Dancing Script', cursive;
    font-size: 100px;
    font-weight: 700;
    color: #ff2d78;
    text-shadow: none;
    line-height: 1.2;
    transition: color 0.35s ease, font-family 0.15s ease;
    word-break: break-word;
    max-width: 95%;
    display: block;
}

/* ----------------------------------------------------------------
   RIGHT — Configurator Panel
   ---------------------------------------------------------------- */
.ncfg-config-col {
    flex: 0 0 48%;
    max-width: 48%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    height: 660px;
    max-height: 660px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.ncfg-config-col::-webkit-scrollbar {
    width: 6px;
}

.ncfg-config-col::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.ncfg-config-col::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.ncfg-config-inner {
    padding: 28px 28px 32px;
}

/* Header */
.ncfg-config-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.ncfg-config-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.25;
}

.ncfg-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ncfg-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.ncfg-review-count {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* ----------------------------------------------------------------
   FIELD GROUPS
   ---------------------------------------------------------------- */
.ncfg-field-group {
    margin-bottom: 24px;
}

.ncfg-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

/* Text input */
.ncfg-text-input {
    width: 100%;
    padding: 13px 16px;
    font-size: 16px;
    font-family: 'Outfit', system-ui, sans-serif;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    color: #111;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ncfg-text-input:focus {
    border-color: #E43D12;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
    background: #fff;
}

/* ----------------------------------------------------------------
   FONT GRID — 27 fonts, 3 columns, scrollable
   ---------------------------------------------------------------- */
.ncfg-font-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #c4b5fd #f8f8ff;
}

.ncfg-font-grid::-webkit-scrollbar {
    width: 5px;
}

.ncfg-font-grid::-webkit-scrollbar-track {
    background: #f8f8ff;
    border-radius: 10px;
}

.ncfg-font-grid::-webkit-scrollbar-thumb {
    background: #c4b5fd;
    border-radius: 10px;
}

.ncfg-font-btn {
    padding: 9px 6px;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 7px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncfg-font-btn:hover {
    border-color: #E43D12;
    background: #f5f0ff;
    color: #E43D12;
    transform: translateY(-1px);
}

.ncfg-font-btn.active {
    background: #E43D12 !important;
    border-color: #E43D12 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(228, 61, 18, 0.35);
}

/* ----------------------------------------------------------------
   COLOUR ROW
   ---------------------------------------------------------------- */
.ncfg-colour-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.ncfg-colour-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.ncfg-colour-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.ncfg-colour-btn.active {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ncfg-colour-btn[data-colour="#ffffff"] {
    border-color: #ccc;
}

.ncfg-colour-btn[data-colour="#ffffff"].active {
    border-color: #555;
}

/* ----------------------------------------------------------------
   SIZE GRID
   ---------------------------------------------------------------- */
.ncfg-size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ncfg-size-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 3px;
    text-align: center;
}

.ncfg-size-btn:hover {
    border-color: #E43D12;
}

.ncfg-size-btn.active {
    background: #E43D12 !important;
    border-color: #E43D12 !important;
    box-shadow: none;
}

.ncfg-size-name {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    display: block;
}

.ncfg-size-btn.active .ncfg-size-name {
    color: #ffffff !important;
}

.ncfg-size-dim {
    font-size: 11.5px;
    color: #718096;
    display: block;
    font-weight: 400;
    white-space: nowrap;
}

.ncfg-size-btn.active .ncfg-size-dim {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ----------------------------------------------------------------
   ADD-ONS GRID
   ---------------------------------------------------------------- */
.ncfg-addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ncfg-addon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.ncfg-addon-item:hover {
    border-color: #E43D12;
}

.ncfg-addon-item.selected {
    background: #E43D12 !important;
    border-color: #E43D12 !important;
    color: #ffffff !important;
    box-shadow: none;
}

.ncfg-addon-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.ncfg-addon-content {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.ncfg-addon-radio {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ncfg-addon-item.selected .ncfg-addon-radio {
    color: #ffffff !important;
}

.ncfg-addon-icon {
    font-size: 14px;
    color: #E43D12;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ncfg-addon-item.selected .ncfg-addon-icon {
    color: #ffffff !important;
}

.ncfg-addon-name {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
}

.ncfg-addon-item.selected .ncfg-addon-name {
    color: #ffffff !important;
}

/* ----------------------------------------------------------------
   DIVIDER + SUMMARY
   ---------------------------------------------------------------- */
.ncfg-summary-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 12px 14px;
    background: #f8f6ff;
    border: 1px solid #ede9fe;
    border-radius: 8px;
}

.ncfg-summary-label {
    font-size: 13px;
    font-weight: 800;
    color: #E43D12;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Roboto', sans-serif;
}

.ncfg-summary-text {
    font-size: 13px;
    color: #4b5563;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
}

/* ----------------------------------------------------------------
   CTA BUTTONS
   ---------------------------------------------------------------- */
.ncfg-cta-wrap {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ncfg-btn-quote {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: #E43D12;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.ncfg-btn-quote:hover {
    background: #cc340e;
    color: #ffffff;
}

.ncfg-btn-whatsapp {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: #25d366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ncfg-btn-whatsapp:hover {
    background: #1eb956;
    color: #ffffff;
}

/* Own logo note */
.ncfg-own-logo-note {
    font-size: 13px;
    color: #555555;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.ncfg-own-logo-link {
    font-weight: 700;
    color: #25d366;
    text-decoration: none;
}

.ncfg-own-logo-link:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .ncfg-layout {
        flex-direction: column;
        gap: 24px;
    }

    .ncfg-preview-col {
        flex: none;
        max-width: 100%;
        width: 100%;
        position: relative;
        height: 440px;
    }

    .ncfg-preview-box {
        min-height: 400px;
    }

    .ncfg-sofa-img {
        width: 75%;
        max-width: 420px;
        bottom: 4%;
    }

    .ncfg-neon-text-wrap {
        top: 30%;
    }

    .ncfg-config-col {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    .ncfg-config-inner {
        padding: 28px 24px;
    }

    .ncfg-font-grid {
        max-height: 240px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 575.98px) {

    .ncfg-section,
    .ncfg-container,
    .ncfg-layout,
    .ncfg-config-col {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .ncfg-preview-col {
        height: 340px;
    }

    .ncfg-preview-box {
        min-height: 300px;
    }

    .ncfg-neon-text {
        font-size: 40px;
    }

    .ncfg-sofa-img {
        width: 85%;
        bottom: 3%;
    }

    .ncfg-config-inner {
        padding: 20px 14px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .ncfg-config-title {
        font-size: 24px;
    }

    .ncfg-font-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 138px !important;
        overflow-y: auto !important;
        gap: 6px !important;
        padding-right: 4px !important;
        -webkit-overflow-scrolling: touch;
    }

    .ncfg-font-btn {
        min-width: 0 !important;
    }

    .ncfg-size-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .ncfg-size-btn {
        min-width: 0 !important;
        padding: 10px 4px !important;
        box-sizing: border-box !important;
    }

    .ncfg-size-name {
        font-size: 13px !important;
    }

    .ncfg-size-dim {
        font-size: 10px !important;
        white-space: normal !important;
        word-break: break-word !important;
        text-align: center !important;
    }

    .ncfg-addons-grid {
        grid-template-columns: 1fr;
    }

    .ncfg-cta-wrap {
        flex-direction: column;
    }

    .ncfg-btn-quote,
    .ncfg-btn-whatsapp {
        min-width: unset;
        width: 100%;
    }
}


/* ================================================================
   NEON REVIEWS SECTION (nr-) — Light Masonry / Grid Style
   ================================================================ */
.nr-section {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

/* Header summary panel */
.nr-header-panel {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
}

.nr-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.nr-stars-main {
    color: #E43D12;
    font-size: 22px;
    letter-spacing: 2px;
}

.nr-based-on {
    color: #64748b;
    font-size: 16px;
}

/* Statistics list (bars) */
.nr-stats-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nr-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #64748b;
}

.nr-progress-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nr-stars-mini {
    color: #E43D12;
    font-size: 11px;
    width: 75px;
    display: flex;
    gap: 1px;
}

.nr-bar-wrap {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.nr-bar-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 4px;
}

.nr-stat-percent {
    width: 32px;
    text-align: right;
    color: #475569;
}

.nr-stat-count {
    width: 36px;
    color: #94a3b8;
}

/* Photo attach grid */
.nr-photos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.nr-photo-item {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
}

.nr-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nr-photo-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #E43D12;
    font-size: 16px;
    cursor: pointer;
    border: 1px dashed #94a3b8;
}

/* Filter / sorting */
.nr-filter-row {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.nr-sort-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.nr-sort-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

/* Masonry grid cards */
.nr-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nr-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.nr-card-media {
    margin: -24px -24px 20px -24px;
    overflow: hidden;
}

.nr-card-media img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    max-height: 480px;
}

.nr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.nr-username {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 20px;
}

.nr-stars-card {
    color: #E43D12;
    font-size: 12px;
    display: flex;
    gap: 1px;
}

.nr-review-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.nr-review-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 12px;
}

.nr-readmore {
    font-size: 16px;
    color: #64748b;
    text-decoration: underline;
    cursor: pointer;
}

.nr-readmore:hover {
    color: #E43D12;
}

/* Load more button */
.nr-loadmore-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #1a1a1a;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.nr-loadmore-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

@media (max-width: 767.98px) {
    .nr-header-panel {
        padding: 24px;
    }

    .nr-photos-grid {
        margin-top: 10px;
        justify-content: flex-start;
    }
}

/* Lightbox Modal */
.nr-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.nr-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
    transition: color 0.2s;
}

.nr-modal-close:hover {
    color: #E43D12;
}

.nr-modal-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 20px;
    z-index: 100000;
    transition: color 0.2s, transform 0.2s;
}

.nr-modal-btn:hover {
    color: #E43D12;
    transform: scale(1.1);
}

.nr-modal-content-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    max-height: 80%;
}

.nr-modal-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .nr-modal-btn {
        font-size: 24px;
        padding: 10px;
    }

    .nr-modal-content-wrap {
        max-width: 90%;
    }
}

/* ================================================================
   NEON PRODUCT DETAILS & INCLUSIONS SECTION (npd-) — White Theme
   ================================================================ */
.npd-section.npd-white-theme {
    background-color: #ffffff;
    color: #1a1a1a;

}

/* 1. Navigation Tab Bar */
.npd-white-theme .npd-nav-wrapper {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.npd-white-theme .npd-nav-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.npd-white-theme .npd-nav-tabs::-webkit-scrollbar {
    display: none;
}

.npd-white-theme .npd-tab-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.npd-white-theme .npd-tab-btn:hover {
    color: #E43D12;
    border-color: #E43D12;
    background-color: #fff5f2;
}

.npd-white-theme .npd-tab-btn.active {
    background-color: #E43D12;
    color: #ffffff !important;
    border-color: #E43D12;
    box-shadow: 0 4px 14px rgba(228, 61, 18, 0.3);
}

/* 2. Tab Panes Switching */
.npd-tab-pane {
    display: none;
}

.npd-tab-pane.active {
    display: block;
    animation: npdFadeIn 0.35s ease-in-out;
}

@keyframes npdFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. Text Styles & Divider */
.npd-white-theme .npd-green-title {
    color: #111111;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Lora', Georgia, serif;
    line-height: 1.3;
    text-align: left !important;
}

.npd-white-theme .npd-sub-text {
    color: #4a5568;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: auto;
    text-align: left !important;
}

/* 4. Feature Banner & Glassmorphism Card */
.npd-feature-banner {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.npd-glass-card {
    background: #FFFFFF1A;

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 626px;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.npd-glass-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.npd-glass-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 24px;
}

.npd-glass-highlight {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.4;
}

/* 5. The Box Contains (Image Container) */
.npd-box-image-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.npd-box-img {
    width: 100%;
    max-width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); */
}

/* 6. Installation Step Cards */
.npd-install-step-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.npd-install-step-card:hover {
    transform: translateY(-4px);
    border-color: #E43D12;
}

.npd-install-step-card .step-num {
    font-size: 32px;
    font-weight: 800;
    color: #E43D12;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.npd-install-step-card h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.npd-install-step-card p {
    color: #64748b;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Buttons in Customise Tab */
.npd-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: #E43D12;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.npd-btn-primary:hover {
    background-color: #c8320b;
    color: #ffffff;
}

.npd-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.npd-btn-whatsapp:hover {
    background-color: #1eb757;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .npd-diagram-wrapper {
        min-height: auto;
    }

    .npd-callout {
        position: static;
        margin-bottom: 12px;
    }

    .callout-line {
        display: none;
    }

    .npd-diagram-accessories {
        position: static;
        margin-top: 30px;
        flex-direction: row;
        gap: 24px;
    }

    .npd-diagram-bottom-row {
        padding-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .npd-wire-line {
        display: none;
    }

    .npd-feature-banner {
        min-height: auto;
        padding: 24px 16px;
    }

    .npd-glass-card {
        max-width: 100%;
        padding: 28px 20px;
    }

    .npd-glass-title {
        font-size: 24px;
    }

    .npd-glass-desc {
        font-size: 14px;
    }

    .npd-glass-highlight {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .npd-white-theme .npd-tab-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .npd-white-theme .npd-green-title {
        font-size: 18px;
    }

    .npd-white-theme .npd-card-title {
        font-size: 18px;
    }

    .npd-white-theme .npd-led-strip-wrap {
        padding: 0;
    }
}

/* ----------------------------------------------------------------
   PREMIUM NEON SIGN BOARDS — DUAL DIRECTION VERTICAL MARQUEE
   ---------------------------------------------------------------- */
.np-hero-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}




.np-marquee-wrapper {
    position: relative;
    height: 570px;
    overflow: hidden;
    border-radius: 24px;
}

.np-marquee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.np-marquee-col {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.np-marquee-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
}

/* Upward Marquee (Bottom to Top) */
.track-up {
    animation: marqueeScrollUp 18s linear infinite;
}

/* Downward Marquee (Top to Bottom) */
.track-down {
    animation: marqueeScrollDown 18s linear infinite;
}

/* Pause marquee animation on hover */
.np-marquee-wrapper:hover .np-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScrollUp {
    0% {
        transform: translateY(0);
    }

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

@keyframes marqueeScrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.np-marquee-card {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.np-marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.np-marquee-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 991.98px) {
    .np-marquee-wrapper {
        height: 420px;
    }

    .np-marquee-card {
        height: 190px;
    }
}

@media (max-width: 575.98px) {
    .np-marquee-wrapper {
        height: 340px;
    }

    .np-marquee-card {
        height: 150px;
        border-radius: 14px;
    }

    .np-marquee-grid {
        gap: 10px;
    }
}

/* ----------------------------------------------------------------
   2nd GEN LED NEON SIGNS SECTION (min-abt-section)
   ---------------------------------------------------------------- */
.min-abt-section {
    position: relative;
    background-color: #ffffff;
}

.min-abt-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 0 !important;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
    display: flex;
    align-items: center;
    box-shadow: none;
}

.min-abt-glass-card {
    background: #FFFFFF1A;

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 658px;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.min-abt-glass-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.min-abt-glass-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 30px;
    margin-bottom: 0;
}

/* Bottom Images & Info Grid */
.min-abt-tall-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.min-abt-tall-img {
    width: 100%;
    height: 366px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.min-abt-sub-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.min-abt-stack-img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.min-abt-info-text {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #333333;
    line-height: 1.65;
}

@media (max-width: 991.98px) {
    .min-abt-banner {
        min-height: auto;
        padding: 24px 15px;
    }

    .min-abt-glass-card {
        max-width: 100%;
        padding: 28px 20px;
    }

    .min-abt-glass-title {
        font-size: 24px;
    }

    .min-abt-tall-img {
        height: 280px;
    }
}

/* ----------------------------------------------------------------
   CUSTOMER REVIEWS TYPOGRAPHY & MANUAL STYLES
   ---------------------------------------------------------------- */
.nr-sidebar-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 26px !important;
    line-height: 130% !important;
    letter-spacing: 0 !important;
    color: #111111 !important;
    margin-bottom: 4px !important;
}

.nr-username {
    font-family: 'Outfit', 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 30px !important;
    letter-spacing: 0px !important;
    color: #111111 !important;
}

.nr-review-title {
    font-family: 'Outfit', 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 28.8px !important;
    letter-spacing: 0px !important;
    color: #475569 !important;
    margin-bottom: 8px !important;
}

.nr-review-desc {
    font-family: 'Outfit', 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 28.8px !important;
    letter-spacing: 0px !important;
    color: #475569 !important;
    margin-bottom: 8px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nr-review-desc.expanded {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
}

.nr-readmore {
    font-family: 'Outfit', 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 28.8px !important;
    letter-spacing: 0px !important;
    color: #475569 !important;
    text-decoration: underline !important;
    display: inline-block;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.nr-readmore:hover {
    color: #1e293b !important;
    text-decoration: underline !important;
}

/* ----------------------------------------------------------------
   STICKY SIDEBAR FOR REVIEWS SECTION
   ---------------------------------------------------------------- */
@media (min-width: 992px) {
    .nr-section .row.g-4 {
        align-items: stretch !important;
    }

    .nr-sidebar-col {
        position: relative !important;
    }

    .nr-sidebar-box {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 100px !important;
        z-index: 10 !important;
        align-self: flex-start !important;
    }
}

/* ----------------------------------------------------------------
   END DETAILED INFORMATION SECTION STYLES
   ---------------------------------------------------------------- */
.nr-info-heading {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #212121 !important;
    margin-top: 32px !important;
    margin-bottom: 12px !important;
}

.nr-info-desc {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 25px !important;
    letter-spacing: 0% !important;
    color: #212121 !important;
    margin-bottom: 20px !important;
}

.we-deliver.neon {
    color: #000;
}

@media (max-width: 768px) {

    .ncfg-container,
    section.neon-space-section,
    .nr-section,
    .ds2-cities-section {
        padding: 0 20px !important;
    }

    .we-deliver h2 {
        padding: 0 18px;
    }

    section.neon-space-section,
    section.neon-space-section .why-text-heading,
    section.neon-space-section p,
    .npd-white-theme .npd-green-title,
    .npd-white-theme .npd-sub-text,
    .we-deliver h2,
    .we-deliver.neon h2,
    .we-deliver .deliver-box h3,
    .we-deliver .deliver-box p {
        text-align: left !important;
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .npd-section.npd-white-theme,
    .np-hero-section {
        padding: 0 10px;
    }

    .bhd {
        padding: 0 26px;
    }
}

/* ----------------------------------------------------------------
   DETAILED INFORMATION CARD SECTION (nr-info-card-wrapper)
   ---------------------------------------------------------------- */
.nr-info-card-wrapper {
    background: linear-gradient(135deg, #1a0f12 0%, #0d0608 100%);
    border: 1px solid rgba(228, 61, 18, 0.25);
    border-radius: 24px;
    padding: 44px 40px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.nr-info-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.35;
}

.nr-info-card-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 16px;
}

.nr-info-card-heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 12px;
}

.nr-info-readmore-link {
    color: #E43D12 !important;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nr-info-readmore-link:hover {
    opacity: 0.85;
}

.nr-info-touch-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: #ffffff;
    color: #111111 !important;
    font-family: 'Outfit', 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 10px 10px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    margin-top: 15px;
}

.nr-info-touch-btn .touch-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #E43D12;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.nr-info-touch-btn:hover {
    background-color: #E43D12;
    color: #ffffff !important;
}

.nr-info-touch-btn:hover .touch-arrow {
    background-color: #ffffff;
    color: #E43D12;
    transform: translate(2px, -2px);
}

@media (max-width: 767.98px) {
    .nr-info-card-wrapper {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .nr-info-card-title {
        font-size: 22px !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
    }

    .nr-info-card-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .nr-info-card-heading {
        font-size: 18px !important;
    }

    .nr-info-touch-btn {
        font-size: 14.5px;
        padding: 8px 8px 8px 20px;
    }

    .nr-info-touch-btn .touch-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .npd-box-img {
        max-width: 100%;
    }


}

.deliver-box {
    backdrop-filter: blur(45px);
    background: #e43c121f;
}