:root {
    --ns-blue: #006fe6;
    --ns-blue-dark: #003d82;
    --ns-dark: #07111f;
    --ns-dark-2: #0c1828;
    --ns-border: rgba(255,255,255,.12);
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f6f8;
}

.ns-header {
    z-index: 1030;
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
}

.ns-header-main {
    background: linear-gradient(135deg, #07111f 0%, #0b2340 55%, #003d82 100%);
    padding: 16px 0;
    color: #fff;
}

.ns-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
}

.ns-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
}

.ns-logo span {
    margin-top: 3px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,.65);
}

.ns-search {
    height: 46px;
    display: flex;
    background: rgba(0,0,0,.38);
    border: 1px solid var(--ns-border);
    border-radius: 8px;
    overflow: hidden;
}

.ns-search input {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0 16px;
    outline: none;
    font-size: 14px;
}

.ns-search input::placeholder {
    color: rgba(255,255,255,.55);
}

.ns-search button {
    width: 52px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
}

.ns-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.ns-action {
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.1;
}

.ns-action i {
    font-size: 23px;
    color: #fff;
}

.ns-action small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
}

.ns-cart,
.ns-mobile-btn {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid var(--ns-border);
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.ns-cart strong {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--ns-blue);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-mobile-btn {
    border: 0;
}

.ns-navbar {
    background: #06101d;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0;
}

.ns-menu-list {
    gap: 4px;
}

.ns-navbar .nav-link {
    color: #fff;
    padding: 19px 18px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .35px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
    white-space: nowrap;
}

.ns-navbar .nav-link i {
    font-size: 14px;
    color: #58aaff;
}

.ns-navbar .nav-link:hover,
.ns-navbar .nav-link:focus {
    color: #fff;
    background: rgba(255,255,255,.07);
}

.ns-category-item > .nav-link {
    background: var(--ns-blue);
    min-width: 255px;
    justify-content: center;
}

.ns-category-item > .nav-link i {
    color: #fff;
}

.ns-category-item > .nav-link:hover {
    background: #087cff;
}

.ns-dropdown {
    background: #fff;
    border: 0;
    border-radius: 0 0 12px 12px;
    padding: 8px;
    min-width: 280px;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.ns-dropdown .dropdown-item {
    font-size: 14px;
    border-radius: 7px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
}

.ns-dropdown .dropdown-item i {
    color: var(--ns-blue);
    font-size: 12px;
}

.ns-dropdown .dropdown-item:hover {
    background: #eef5ff;
    color: var(--ns-blue);
}


    

@media (max-width: 991px) {
    .ns-header-main {
        padding: 12px 0;
    }

    .ns-logo img {
        width: 155px;
    }

    .ns-logo span {
        display: none;
    }

    .ns-navbar .navbar-collapse {
        padding: 10px 0 18px;
    }

    .ns-navbar .nav-link {
        padding: 13px 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .ns-category-item > .nav-link {
        min-width: auto;
        border-radius: 8px;
    }

    .ns-dropdown {
        border-radius: 8px;
        margin-top: 6px;
    }

    .ns-menu-list {
        gap: 0;
    }

    .ns-navbar .navbar-collapse {
        padding: 10px 0 18px;
    }

    .ns-navbar .nav-link {
        padding: 14px 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        justify-content: flex-start;
    }

    .ns-category-item > .nav-link {
        min-width: auto;
        justify-content: flex-start;
        border-radius: 8px;
    }

    .ns-dropdown {
        border-radius: 8px;
        margin-top: 6px;
    }
}

.ns-footer {
    background:
        linear-gradient(180deg, #07111f 0%, #03070d 100%);
    color: #fff;
    padding: 0 0 28px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.ns-footer-cta {
    transform: translateY(-34px);
    background: linear-gradient(135deg, #006fe6 0%, #003d82 100%);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.ns-footer-cta span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.7);
    margin-bottom: 4px;
}

.ns-footer-cta h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 800;
}

.ns-footer-logo img {
    width: 185px;
    max-width: 100%;
    height: auto;
    margin-bottom: 22px;
}

.ns-footer-text {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.8;
    max-width: 420px;
}

.ns-footer h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 20px;
    position: relative;
}

.ns-footer h5::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: var(--ns-blue);
    margin-top: 9px;
    border-radius: 10px;
}

.ns-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ns-footer li {
    margin-bottom: 11px;
}

.ns-footer a {
    color: rgba(255,255,255,.68);
    text-decoration: none;
    transition: .2s;
}

.ns-footer a:hover {
    color: #fff;
}

.ns-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.ns-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ns-footer-social a:hover {
    background: var(--ns-blue);
    border-color: var(--ns-blue);
}

.ns-footer-contact {
    display: grid;
    gap: 15px;
}

.ns-footer-contact div {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.ns-footer-contact i {
    width: 22px;
    color: var(--ns-blue);
    font-size: 18px;
    margin-top: 2px;
}

.ns-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 42px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.ns-footer-bottom p {
    margin: 0;
}

.ns-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #18a957;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 1020;
    box-shadow: 0 12px 30px rgba(0,0,0,.32);
}

.ns-whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

.ns-mobile-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #06101d;
    padding: 8px;
    gap: 8px;
    box-shadow: 0 -8px 25px rgba(0,0,0,.25);
}

.ns-mobile-bottom a {
    height: 44px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 700;
    font-size: 14px;
}

.ns-mobile-bottom a:first-child {
    background: var(--ns-blue);
}

.ns-mobile-bottom a:last-child {
    background: #18a957;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 64px;
    }

    .ns-footer {
        padding-bottom: 26px;
    }

    .ns-footer-cta {
        transform: translateY(-20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .ns-footer-cta h3 {
        font-size: 21px;
    }

    .ns-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.ns-search-result {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-left: 5px solid var(--ns-blue);
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.ns-search-result span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ns-blue);
    font-weight: 800;
    margin-bottom: 5px;
}

.ns-search-result h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
}

.ns-search-result h2 strong {
    color: var(--ns-blue);
}

.ns-search-result p {
    margin: 6px 0 0;
    color: #6b7280;
}

.ns-process-heading {
    background: linear-gradient(135deg, #07111f 0%, #0b2340 70%, #003d82 100%);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.08);
}

.ns-process-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255,255,255,.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ns-blue);
    font-size: 25px;
    flex: 0 0 auto;
}

.ns-process-heading span {
    display: block;
    color: rgba(255,255,255,.62);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.ns-process-heading h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ns-products-grid {
    align-items: stretch;
}

.ns-product-card {
    background: #fff;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
    transition: .25s ease;
    position: relative;
}

.ns-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
    border-color: rgba(0,111,230,.28);
}

.ns-product-image {
    height: 215px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.ns-product-image img {
    max-width: 100%;
    max-height: 175px;
    object-fit: contain;
    transition: .25s ease;
}

.ns-product-card:hover .ns-product-image img {
    transform: scale(1.04);
}

.ns-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ns-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ns-product-body {
    padding: 17px;
    display: flex;
    flex-direction: column;
    min-height: 125px;
}

.ns-product-body h3 {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
    text-align: center;
    flex: 1;
}

.ns-product-body h3 a {
    color: #111827;
    text-decoration: none;
}

.ns-product-body h3 a:hover {
    color: var(--ns-blue);
}

.ns-product-actions {
    margin-top: auto;
}

.ns-product-btn {
    height: 40px;
    border-radius: 8px;
    background: #07111f;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: .2s;
}

.ns-product-btn:hover {
    background: var(--ns-blue);
    color: #fff;
}

.ns-products-note {
    margin-top: 22px;
    text-align: right;
    color: #6b7280;
    font-size: 13px;
    font-style: italic;
}

.ns-empty-products {
    background: #fff;
    border-radius: 16px;
    padding: 70px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.ns-empty-products i {
    font-size: 58px;
    color: #c3c8d0;
    margin-bottom: 22px;
}

.ns-empty-products h1 {
    font-size: 28px;
    font-weight: 850;
    color: #111827;
}

.ns-empty-products p {
    color: #6b7280;
    margin-bottom: 26px;
}

@media (max-width: 767px) {
    .ns-process-heading {
        padding: 15px;
    }

    .ns-process-icon {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .ns-process-heading h2 {
        font-size: 18px;
    }

    .ns-product-image {
        height: 170px;
        padding: 16px;
    }

    .ns-product-image img {
        max-height: 130px;
    }

    .ns-product-body {
        padding: 13px;
        min-height: 118px;
    }

    .ns-product-body h3 {
        font-size: 13px;
    }

    .ns-product-btn {
        height: 38px;
        font-size: 11px;
    }

    .ns-products-note {
        text-align: center;
    }
}

.ns-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #03070d;
}

.ns-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ns-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .46;
}

.ns-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #03070d 0%, rgba(3,7,13,.92) 36%, rgba(3,7,13,.55) 68%, rgba(3,7,13,.25) 100%),
        linear-gradient(180deg, rgba(0,111,230,.14), rgba(0,0,0,.55));
    z-index: 1;
}

.ns-hero .container {
    position: relative;
    z-index: 2;
}

.ns-hero-content {
    padding: 54px 0 58px;
    max-width: 650px;
}

.ns-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,111,230,.14);
    border: 1px solid rgba(0,111,230,.38);
    color: #58aaff;
    padding: 9px 15px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-size: 13px;
    margin-bottom: 16px;
}

.ns-hero h1 {
    color: #fff;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.02;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
}

.ns-hero h1 strong {
    display: block;
    color: var(--ns-blue);
}

.ns-hero p {
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.55;
    max-width: 600px;
    margin-bottom: 24px;
}

.ns-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ns-hero-buttons .btn {
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    padding: 14px 24px;
}

@media (max-width: 767px) {
    .ns-hero {
        min-height: auto;
    }

    .ns-hero-bg img {
        opacity: .32;
    }

    .ns-hero::before {
        background:
            linear-gradient(180deg, rgba(3,7,13,.9) 0%, rgba(3,7,13,.96) 100%);
    }

    .ns-hero-content {
        padding: 42px 0;
    }

    .ns-hero h1 {
        font-size: 33px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .ns-hero p {
        font-size: 15px;
    }

    .ns-hero-buttons .btn {
        width: 100%;
    }
}

.ns-product-page {
    padding-bottom: 30px;
}

.ns-product-header {
    background: linear-gradient(135deg, #07111f 0%, #0b2340 70%, #003d82 100%);
    color: #fff;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.ns-product-header span {
    display: block;
    color: #58aaff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ns-product-header h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.ns-product-description {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 28px;
    color: #374151;
    line-height: 1.8;
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.06);
}

.ns-product-detail-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 12px 32px rgba(0,0,0,.09);
    display: grid;
    grid-template-columns: 260px 1fr;
    height: 100%;
    transition: .25s ease;
}

.ns-product-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0,0,0,.16);
    border-color: rgba(0,111,230,.25);
}

.ns-product-detail-image {
    background: #fff;
    min-height: 250px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0,0,0,.06);
}

.ns-product-detail-image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    cursor: zoom-in;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,.10));
}

.ns-product-detail-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ns-product-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: #eef5ff;
    color: var(--ns-blue);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.ns-product-code strong {
    color: #07111f;
}

.ns-product-detail-info h2 {
    font-size: 24px;
    font-weight: 900;
    color: #111827;
    margin: 0 0 24px;
    line-height: 1.25;
}

.ns-product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ns-product-detail-actions .btn {
    border-radius: 8px;
    font-weight: 800;
    padding: 11px 18px;
}

.ns-product-video {
    margin-top: 34px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,.09);
    border: 1px solid rgba(0,0,0,.06);
}

.ns-product-video h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #111827;
}

@media (max-width: 991px) {
    .ns-product-detail-card {
        grid-template-columns: 1fr;
    }

    .ns-product-detail-image {
        border-right: 0;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }
}

@media (max-width: 767px) {
    .ns-product-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .ns-product-header .btn {
        width: 100%;
    }

    .ns-product-detail-info {
        padding: 22px;
    }

    .ns-product-detail-info h2 {
        font-size: 20px;
    }

    .ns-product-detail-actions .btn {
        width: 100%;
    }

    .ns-product-detail-image {
        min-height: 220px;
    }

    .ns-product-detail-image img {
        max-height: 190px;
    }
}

.ns-image-modal .modal-content{
    background:#05080d;
    border:0;
}

.ns-image-modal .modal-body{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.ns-modal-image{
    max-width:92vw;
    max-height:82vh;
    object-fit:contain;
    border-radius:12px;
    background:#fff;
    padding:20px;
    box-shadow:
        0 25px 70px rgba(0,0,0,.55);
    animation:nsZoom .25s ease;
}

.ns-modal-caption{
    margin-top:25px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    text-align:center;
    max-width:900px;
}

.ns-image-close{
    position:absolute;
    right:25px;
    top:25px;
    width:52px;
    height:52px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:24px;
    transition:.2s;
    z-index:10;
}

.ns-image-close:hover{
    background:var(--ns-blue);
    transform:rotate(90deg);
}

@keyframes nsZoom{

    from{
        opacity:0;
        transform:scale(.9);
    }

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

}

@media (max-width:768px){

    .ns-image-modal .modal-body{
        padding:20px;
    }

    .ns-modal-image{
        padding:12px;
        max-width:100%;
        max-height:72vh;
    }

    .ns-modal-caption{
        font-size:15px;
    }


}

.ns-cart-page {
    padding-bottom: 40px;
}

.ns-cart-header {
    background: linear-gradient(135deg, #07111f 0%, #0b2340 70%, #003d82 100%);
    color: #fff;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.ns-cart-header span,
.ns-form-title span {
    display: block;
    color: #58aaff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ns-cart-header h1,
.ns-form-title h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.ns-cart-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 24px;
    align-items: start;
}

.ns-cart-items,
.ns-cart-summary,
.ns-cart-form,
.ns-cart-empty {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.ns-cart-items {
    padding: 18px;
}

.ns-cart-item {
    display: grid;
    grid-template-columns: 96px 1fr 90px 50px;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.ns-cart-item:last-child {
    border-bottom: 0;
}

.ns-cart-img {
    width: 96px;
    height: 96px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.ns-cart-img img {
    max-width: 100%;
    max-height: 78px;
    object-fit: contain;
    cursor: zoom-in;
    filter: drop-shadow(0 6px 8px rgba(0,0,0,.10));
}

.ns-cart-info span {
    color: var(--ns-blue);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .6px;
}

.ns-cart-info strong {
    display: block;
    color: #07111f;
    font-size: 15px;
    margin-bottom: 5px;
}

.ns-cart-info h2 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.3;
}

.ns-cart-qty label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 5px;
}

.ns-cart-qty input {
    text-align: center;
    font-weight: 800;
}

.ns-cart-remove a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff1f2;
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ns-cart-remove a:hover {
    background: #dc2626;
    color: #fff;
}

.ns-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.ns-cart-actions .btn {
    font-weight: 800;
    border-radius: 8px;
}

.ns-cart-summary {
    padding: 24px;
    position: sticky;
    top: 190px;
}

.ns-cart-summary h3 {
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.ns-cart-summary div {
    background: #eef5ff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
}

.ns-cart-summary div span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.ns-cart-summary div strong {
    color: var(--ns-blue);
    font-size: 34px;
    font-weight: 900;
}

.ns-cart-summary p {
    color: #6b7280;
    line-height: 1.65;
    font-size: 14px;
}

.ns-cart-form {
    margin-top: 30px;
    padding: 28px;
}

.ns-form-title {
    margin-bottom: 24px;
}

.ns-form-title p {
    margin: 8px 0 0;
    color: #6b7280;
}

.ns-cart-form label {
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.ns-cart-form .form-control {
    min-height: 46px;
    border-radius: 8px;
}

.ns-client-type {
    background: #eef5ff;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.ns-client-type label {
    background: #fff;
    border-radius: 9px;
    padding: 13px 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ns-field-alert {
    display: none;
    background: #fff3cd;
    color: #664d03;
    font-size: 12px;
    border-radius: 6px;
    padding: 4px 7px;
    margin-left: 6px;
}

.ns-cart-empty {
    padding: 70px 20px;
    text-align: center;
}

.ns-cart-empty i {
    font-size: 58px;
    color: #c3c8d0;
    margin-bottom: 22px;
}

.ns-cart-empty h2 {
    font-size: 28px;
    font-weight: 850;
    color: #111827;
}

.ns-cart-empty p {
    color: #6b7280;
    margin-bottom: 26px;
}

@media (max-width: 991px) {
    .ns-cart-layout {
        grid-template-columns: 1fr;
    }

    .ns-cart-summary {
        position: static;
    }
}

@media (max-width: 767px) {
    .ns-cart-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .ns-cart-header .btn {
        width: 100%;
    }

    .ns-cart-item {
        grid-template-columns: 82px 1fr 45px;
        gap: 12px;
    }

    .ns-cart-img {
        width: 82px;
        height: 82px;
    }

    .ns-cart-info h2 {
        font-size: 15px;
    }

    .ns-cart-qty {
        grid-column: 2 / 4;
    }

    .ns-cart-remove {
        grid-column: 3;
        grid-row: 1;
        text-align: right;
    }

    .ns-client-type {
        grid-template-columns: 1fr;
    }

    .ns-cart-actions .btn {
        width: 100%;
    }

    .ns-cart-form {
        padding: 22px;
    }
}

.ns-breadcrumb-wrap {
    margin-top: 22px;
    margin-bottom: 8px;
}

.ns-breadcrumb {
    list-style: none;
    padding: 12px 16px;
    margin: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

.ns-breadcrumb li {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.ns-breadcrumb li:not(:last-child)::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 9px;
    color: #9ca3af;
    font-size: 12px;
}

.ns-breadcrumb a {
    color: #374151;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ns-breadcrumb a:hover {
    color: var(--ns-blue);
}

.ns-breadcrumb .active {
    color: var(--ns-blue);
}

@media (max-width: 767px) {
    .ns-breadcrumb {
        padding: 10px 12px;
        gap: 7px;
    }

    .ns-breadcrumb li {
        font-size: 12px;
    }
}

.ns-about-page {
    padding-bottom: 40px;
}

.ns-about-hero {
    background:
        linear-gradient(135deg, rgba(7,17,31,.96), rgba(0,61,130,.92)),
        url('../images/folder-ns-2024.jpg') center/cover;
    color: #fff;
    border-radius: 16px;
    padding: 44px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    overflow: hidden;
}

.ns-about-hero span,
.ns-section-title span {
    display: block;
    color: #58aaff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ns-about-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.ns-about-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.65;
}

.ns-about-years {
    min-width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*backdrop-filter: blur(8px);*/
}

.ns-about-years strong {
    color: #fff;
    font-size: 58px;
    font-weight: 950;
    line-height: 1;
}

.ns-about-years small {
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    margin-top: 8px;
}

.ns-about-card,
.ns-about-highlight,
.ns-about-timeline,
.ns-solutions {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.ns-about-card h2,
.ns-about-highlight h2,
.ns-about-timeline h2,
.ns-section-title h2 {
    color: #111827;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 18px;
}

.ns-about-card p,
.ns-about-highlight p {
    color: #4b5563;
    line-height: 1.85;
    font-size: 16px;
}

.ns-about-highlight {
    background: linear-gradient(135deg, #006fe6, #003d82);
    color: #fff;
}

.ns-about-highlight i {
    font-size: 42px;
    margin-bottom: 20px;
}

.ns-about-highlight h2 {
    color: #fff;
}

.ns-about-highlight p {
    color: rgba(255,255,255,.78);
}

.ns-about-timeline {
    margin-top: 30px;
}

.ns-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
}

.ns-timeline div {
    background: #f4f7fb;
    border-radius: 12px;
    padding: 18px;
    border-left: 4px solid var(--ns-blue);
}

.ns-timeline strong {
    display: block;
    color: var(--ns-blue);
    font-size: 26px;
    font-weight: 950;
}

.ns-timeline span {
    color: #374151;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ns-solutions {
    margin-top: 30px;
}

.ns-section-title {
    margin-bottom: 22px;
}

.ns-solution-item {
    background: #f4f7fb;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    border: 1px solid rgba(0,0,0,.05);
    transition: .25s ease;
}

.ns-solution-item:hover {
    transform: translateY(-4px);
    background: #eef5ff;
}

.ns-solution-item i {
    width: 48px;
    height: 48px;
    background: var(--ns-blue);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.ns-solution-item h3 {
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.ns-solution-item p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991px) {
    .ns-about-hero {
        flex-direction: column;
        padding: 32px;
    }

    .ns-about-years {
        width: 150px;
        height: 150px;
        min-width: 150px;
    }

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

@media (max-width: 767px) {
    .ns-about-hero,
    .ns-about-card,
    .ns-about-highlight,
    .ns-about-timeline,
    .ns-solutions {
        padding: 24px;
    }

    .ns-about-hero h1 {
        font-size: 34px;
    }

    .ns-about-hero p {
        font-size: 15px;
    }

    .ns-timeline {
        grid-template-columns: 1fr;
    }
}

.ns-catalog-page {
    padding-bottom: 40px;
}

.ns-catalog-hero {
    background:
        radial-gradient(circle at right, rgba(0,111,230,.35), transparent 38%),
        linear-gradient(135deg, #07111f 0%, #0b2340 65%, #003d82 100%);
    color: #fff;
    border-radius: 18px;
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 34px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    overflow: hidden;
}

.ns-catalog-content span {
    display: block;
    color: #58aaff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ns-catalog-content h1 {
    margin: 0 0 8px;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -1.6px;
}

.ns-catalog-content h2 {
    margin: 0 0 18px;
    max-width: 720px;
    font-size: 25px;
    font-weight: 800;
    color: rgba(255,255,255,.92);
}

.ns-catalog-content p {
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.ns-catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ns-catalog-actions .btn {
    border-radius: 9px;
    font-weight: 850;
    text-transform: uppercase;
    font-size: 14px;
    padding: 14px 24px;
}

.ns-catalog-preview {
    display: flex;
    justify-content: center;
}

.ns-catalog-book {
    width: 240px;
    height: 320px;
    background:
        linear-gradient(145deg, #0b2340 0%, #006fe6 100%);
    border-radius: 12px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow:
        -18px 22px 35px rgba(0,0,0,.35),
        inset -8px 0 0 rgba(0,0,0,.18);
    transform: rotate(-5deg);
    position: relative;
}

.ns-catalog-book::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
}

.ns-catalog-book img {
    position: absolute;
    top: 32px;
    left: 26px;
    width: 145px;
    height: auto;
}

.ns-catalog-book strong {
    font-size: 34px;
    font-weight: 950;
    text-transform: uppercase;
    line-height: 1;
}

.ns-catalog-book span {
    font-size: 16px;
    font-weight: 800;
    margin-top: 8px;
}

.ns-catalog-book small {
    color: rgba(255,255,255,.68);
    margin-top: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .6px;
}

.ns-catalog-card {
    background: #fff;
    border-radius: 15px;
    padding: 26px;
    height: 100%;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.ns-catalog-card i {
    width: 52px;
    height: 52px;
    background: var(--ns-blue);
    color: #fff;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 18px;
}

.ns-catalog-card h3 {
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 10px;
}

.ns-catalog-card p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .ns-catalog-hero {
        grid-template-columns: 1fr;
    }

    .ns-catalog-preview {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .ns-catalog-hero {
        padding: 28px;
    }

    .ns-catalog-content h1 {
        font-size: 36px;
    }

    .ns-catalog-content h2 {
        font-size: 21px;
    }

    .ns-catalog-content p {
        font-size: 15px;
    }

    .ns-catalog-actions .btn {
        width: 100%;
    }

    .ns-catalog-book {
        width: 200px;
        height: 270px;
    }
}

.ns-page-header {
    background:
        radial-gradient(circle at right, rgba(0,111,230,.28), transparent 40%),
        linear-gradient(135deg, #07111f 0%, #0b2340 70%, #003d82 100%);
    color: #fff;
    border-radius: 16px;
    padding: 34px 38px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.ns-page-header span {
    display: block;
    color: #58aaff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.ns-page-header h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -1.4px;
}

.ns-page-header p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    max-width: 720px;
}

.ns-event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    height: 100%;
    transition: .25s ease;
}

.ns-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

.ns-event-image {
    height: 230px;
    display: block;
    overflow: hidden;
    background: #07111f;
}

.ns-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.ns-event-card:hover .ns-event-image img {
    transform: scale(1.06);
    opacity: .85;
}

.ns-event-body {
    padding: 22px;
}

.ns-event-body span {
    display: block;
    color: var(--ns-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.ns-event-body h2 {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
}

.ns-event-body h2 a {
    color: #111827;
    text-decoration: none;
}

.ns-event-body h2 a:hover {
    color: var(--ns-blue);
}

.ns-event-link {
    color: var(--ns-blue);
    text-decoration: none;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ns-event-video {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.07);
}

.ns-event-video h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #111827;
}

.ns-event-gallery {
    align-items: stretch;
}

.ns-event-photo {
    width: 100%;
    height: 210px;
    border: 0;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #07111f;
    box-shadow: 0 10px 26px rgba(0,0,0,.12);
    cursor: zoom-in;
}

.ns-event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.ns-event-photo:hover img {
    transform: scale(1.07);
    opacity: .85;
}

@media (max-width: 767px) {
    .ns-page-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
    }

    .ns-page-header .btn {
        width: 100%;
    }

    .ns-event-image {
        height: 210px;
    }

    .ns-event-photo {
        height: 155px;
    }
}

.ns-gallery-modal .modal-content {
    background: #03070d;
    border: 0;
}

.ns-gallery-modal .modal-body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.ns-gallery-image {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

.ns-gallery-caption {
    margin-top: 18px;
    color: #fff;
    text-align: center;
}

.ns-gallery-caption span {
    display: block;
    font-weight: 700;
}

.ns-gallery-caption small {
    color: rgba(255,255,255,.6);
}

.ns-gallery-close,
.ns-gallery-nav {
    position: absolute;
    z-index: 10;
    border: 0;
    color: #fff;
    background: rgba(255,255,255,.12);
    transition: .2s;
}

.ns-gallery-close {
    right: 25px;
    top: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 24px;
}

.ns-gallery-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 28px;
}

.ns-gallery-prev {
    left: 24px;
}

.ns-gallery-next {
    right: 24px;
}

.ns-gallery-close:hover,
.ns-gallery-nav:hover {
    background: var(--ns-blue);
}

.ns-gallery-item {
    cursor: zoom-in;
}

@media (max-width: 767px) {
    .ns-gallery-modal .modal-body {
        padding: 20px;
    }

    .ns-gallery-image {
        max-width: 100%;
        max-height: 72vh;
    }

    .ns-gallery-nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .ns-gallery-prev {
        left: 10px;
    }

    .ns-gallery-next {
        right: 10px;
    }
}

.ns-contact-info,
.ns-contact-form,
.ns-contact-map {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    overflow: hidden;
}

.ns-contact-info,
.ns-contact-form {
    padding: 30px;
}

.ns-contact-info h2,
.ns-contact-form h2 {
    color: #111827;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 24px;
}

.ns-contact-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.ns-contact-item:last-child {
    border-bottom: 0;
}

.ns-contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eef5ff;
    color: var(--ns-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.ns-contact-item strong {
    display: block;
    color: #111827;
    font-weight: 900;
    margin-bottom: 3px;
}

.ns-contact-item span,
.ns-contact-item a {
    color: #6b7280;
    text-decoration: none;
    line-height: 1.55;
}

.ns-contact-item a:hover {
    color: var(--ns-blue);
}

.ns-contact-form label {
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.ns-contact-form .form-control {
    min-height: 46px;
    border-radius: 8px;
}

.ns-contact-map iframe {
    display: block;
    filter: grayscale(.15);
}

@media (max-width: 767px) {
    .ns-contact-info,
    .ns-contact-form {
        padding: 24px;
    }
}