:root {
    --nt-dark: #07111f;
    --nt-navy: #0b1f3a;
    --nt-blue: #2563eb;
    --nt-cyan: #06b6d4;
    --nt-gold: #f59e0b;
    --nt-orange: #fb923c;
    --nt-white: #ffffff;
    --nt-soft: #f8fafc;
    --nt-muted: #64748b;
    --nt-border: rgba(255, 255, 255, 0.18);
    --nt-glass: rgba(255, 255, 255, 0.12);
    --nt-shadow: 0 24px 80px rgba(2, 6, 23, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--nt-dark);
    color: var(--nt-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.nt-page-bg {
    position: fixed;
    inset: 0;
    z-index: -5;
    overflow: hidden;
    background: radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.32), transparent 28%), radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.22), transparent 28%), linear-gradient(135deg, #07111f 0%, #0b1f3a 48%, #111827 100%);
}

.nt-blur {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.45;
    animation: ntFloatBlur 9s ease-in-out infinite alternate;
}

.nt-blur-one {
    top: 12%;
    left: 4%;
    background: rgba(37, 99, 235, 0.35);
}

.nt-blur-two {
    right: 7%;
    top: 28%;
    background: rgba(6, 182, 212, 0.28);
    animation-delay: 1.6s;
}

.nt-blur-three {
    left: 40%;
    bottom: 4%;
    background: rgba(245, 158, 11, 0.24);
    animation-delay: 3s;
}

@keyframes ntFloatBlur {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(45px, -35px, 0) scale(1.1);
    }
}

/* Header */

.nt-header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nt-navbar {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(7, 17, 31, 0.84), rgba(15, 23, 42, 0.68));
    backdrop-filter: blur(22px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.10);
    padding: 12px 18px;
}

.nt-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--nt-white) !important;
}

.nt-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nt-dark);
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.35);
}

.nt-brand strong {
    display: block;
    line-height: 1;
    font-size: 1.06rem;
}

.nt-brand small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
    margin-top: 3px;
}

.nt-toggler {
    border: 1px solid var(--nt-border);
    color: var(--nt-white);
    box-shadow: none !important;
}

    .nt-toggler i {
        font-size: 1.5rem;
    }

/* ==============================
   Premium Header Menu Buttons
   ============================== */

.nt-menu {
    gap: 10px;
    align-items: center;
}

    .nt-menu .nav-item {
        position: relative;
    }

.nt-menu-btn,
.nt-nav-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px !important;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.1px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nt-menu-btn {
    color: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(14px);
}

    .nt-menu-btn i,
    .nt-nav-cta i {
        font-size: 1rem;
        transition: transform 0.25s ease;
    }

    .nt-menu-btn::before,
    .nt-nav-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        border-radius: inherit;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .nt-menu-btn::before {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(6, 182, 212, 0.28));
    }

    .nt-menu-btn::after,
    .nt-nav-cta::after {
        content: "";
        position: absolute;
        top: -80%;
        left: -40%;
        width: 34px;
        height: 220%;
        z-index: -1;
        background: rgba(255, 255, 255, 0.35);
        transform: rotate(22deg) translateX(-80px);
        transition: transform 0.55s ease;
    }

    .nt-menu-btn:hover {
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.22);
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(37, 99, 235, 0.20);
    }

        .nt-menu-btn:hover::before {
            opacity: 1;
        }

        .nt-menu-btn:hover::after,
        .nt-nav-cta:hover::after {
            transform: rotate(22deg) translateX(190px);
        }

        .nt-menu-btn:hover i,
        .nt-nav-cta:hover i {
            transform: translateY(-1px) scale(1.08);
        }

/* FinTrust special premium button */
.nt-fintrust-btn {
    color: #ffffff !important;
    border-color: rgba(245, 158, 11, 0.34);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(251, 146, 60, 0.08));
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.10);
}

    .nt-fintrust-btn::before {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.45), rgba(251, 146, 60, 0.28));
    }

    .nt-fintrust-btn:hover {
        box-shadow: 0 16px 36px rgba(245, 158, 11, 0.22);
    }

/* Main CTA */
.nt-nav-cta {
    color: #07111f !important;
    border: 1px solid rgba(245, 158, 11, 0.50);
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange)) !important;
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

    .nt-nav-cta::before {
        background: linear-gradient(135deg, #facc15, #fb923c);
        opacity: 1;
    }

    .nt-nav-cta:hover {
        color: #07111f !important;
        transform: translateY(-3px);
        box-shadow: 0 20px 44px rgba(245, 158, 11, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }

/* Active current page look */
.nt-menu .nav-link.active,
.nt-menu-btn.active {
    color: #ffffff !important;
    border-color: rgba(6, 182, 212, 0.38);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.36), rgba(6, 182, 212, 0.18));
    box-shadow: 0 14px 34px rgba(6, 182, 212, 0.16);
}

/* Mobile menu premium */
@media (max-width: 991px) {
    .nt-menu {
        gap: 10px;
        padding-top: 18px;
        align-items: stretch;
    }

    .nt-menu-btn,
    .nt-nav-cta {
        width: 100%;
        justify-content: flex-start;
        padding: 13px 16px !important;
        border-radius: 18px;
    }

    .nt-nav-cta {
        justify-content: center;
        margin-top: 4px;
    }
}

/* Hero */

.nt-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.nt-slider {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.nt-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: ntHeroSlider 18s infinite;
}

.nt-slide-one {
    background: linear-gradient(110deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.62)), radial-gradient(circle at 80% 25%, rgba(37, 99, 235, 0.32), transparent 32%);
}

.nt-slide-two {
    background: linear-gradient(110deg, rgba(7, 17, 31, 0.96), rgba(15, 23, 42, 0.66)), radial-gradient(circle at 78% 25%, rgba(6, 182, 212, 0.34), transparent 32%);
    animation-delay: 6s;
}

.nt-slide-three {
    background: linear-gradient(110deg, rgba(7, 17, 31, 0.96), rgba(17, 24, 39, 0.68)), radial-gradient(circle at 80% 25%, rgba(245, 158, 11, 0.3), transparent 32%);
    animation-delay: 12s;
}

@keyframes ntHeroSlider {
    0%, 28% {
        opacity: 1;
        transform: scale(1);
    }

    33%, 95% {
        opacity: 0;
        transform: scale(1.06);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.nt-hero-content {
    padding-top: 90px;
    animation: ntFadeUp 0.9s ease both;
}

.nt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--nt-border);
    border-radius: 999px;
    background: var(--nt-glass);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    margin-bottom: 24px;
}

    .nt-badge i {
        color: var(--nt-gold);
    }

.nt-hero h1 {
    max-width: 820px;
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: -4px;
    font-weight: 900;
    margin-bottom: 24px;
}

    .nt-hero h1 span {
        display: block;
        background: linear-gradient(135deg, var(--nt-white), var(--nt-gold), var(--nt-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.nt-hero p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.16rem;
    line-height: 1.8;
}

.nt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.nt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 800;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

    .nt-btn:hover {
        transform: translateY(-4px);
    }

.nt-btn-primary {
    color: #07111f;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    box-shadow: 0 20px 44px rgba(245, 158, 11, 0.28);
}

    .nt-btn-primary:hover {
        color: #07111f;
        box-shadow: 0 26px 56px rgba(245, 158, 11, 0.38);
    }

.nt-btn-glass {
    color: var(--nt-white);
    border-color: var(--nt-border);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
}

    .nt-btn-glass:hover {
        color: var(--nt-white);
        background: rgba(255, 255, 255, 0.16);
    }

.nt-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
}

    .nt-trust-row div {
        min-width: 150px;
        padding: 16px 18px;
        border: 1px solid var(--nt-border);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
    }

    .nt-trust-row strong {
        display: block;
        color: var(--nt-white);
        font-size: 1rem;
    }

    .nt-trust-row span {
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.88rem;
    }

/* Hero Card */

.nt-hero-card {
    position: relative;
    margin-top: 90px;
    border: 1px solid var(--nt-border);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
    backdrop-filter: blur(22px);
    box-shadow: var(--nt-shadow);
    padding: 18px;
    animation: ntFloatCard 4.5s ease-in-out infinite;
}

@keyframes ntFloatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

.nt-card-top {
    display: flex;
    gap: 8px;
    padding: 4px 2px 16px;
}

    .nt-card-top span,
    .nt-preview-header span {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.32);
    }

        .nt-card-top span:first-child,
        .nt-preview-header span:first-child {
            background: #fb7185;
        }

        .nt-card-top span:nth-child(2),
        .nt-preview-header span:nth-child(2) {
            background: #facc15;
        }

        .nt-card-top span:nth-child(3),
        .nt-preview-header span:nth-child(3) {
            background: #22c55e;
        }

.nt-dashboard {
    padding: 24px;
    border-radius: 26px;
    background: rgba(7, 17, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nt-dashboard-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

    .nt-dashboard-head small {
        color: rgba(255, 255, 255, 0.56);
        font-weight: 700;
    }

    .nt-dashboard-head h3 {
        font-weight: 900;
        margin: 4px 0 0;
    }

    .nt-dashboard-head i {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(34, 197, 94, 0.12);
        color: #86efac;
        font-size: 1.6rem;
    }

.nt-meter {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin: 24px 0;
}

.nt-meter-fill {
    height: 100%;
    width: 78%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nt-blue), var(--nt-cyan), var(--nt-gold));
    animation: ntMeter 2.8s ease-in-out infinite alternate;
}

@keyframes ntMeter {
    from {
        width: 48%;
    }

    to {
        width: 92%;
    }
}

.nt-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

    .nt-dashboard-grid div {
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .nt-dashboard-grid i {
        color: var(--nt-gold);
        font-size: 1.35rem;
    }

    .nt-dashboard-grid strong {
        display: block;
        margin-top: 10px;
        font-size: 0.95rem;
    }

    .nt-dashboard-grid span {
        color: rgba(255, 255, 255, 0.52);
        font-size: 0.84rem;
    }

.nt-demo-link {
    margin-top: 18px;
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #07111f;
    font-weight: 900;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    transition: 0.25s ease;
}

    .nt-demo-link:hover {
        color: #07111f;
        transform: translateY(-3px);
    }

.nt-floating-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--nt-white);
    font-weight: 800;
    border: 1px solid var(--nt-border);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    animation: ntChipFloat 3.5s ease-in-out infinite alternate;
}

.nt-chip-one {
    right: 34%;
    top: 24%;
}

.nt-chip-two {
    right: 5%;
    bottom: 18%;
    animation-delay: 1.2s;
}

@keyframes ntChipFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-18px);
    }
}

/* Marquee */

.nt-marquee {
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.nt-marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding: 18px 0;
    animation: ntMarquee 24s linear infinite;
}

    .nt-marquee-track span {
        color: rgba(255, 255, 255, 0.76);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        white-space: nowrap;
    }

@keyframes ntMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Sections */

.nt-section {
    padding: 100px 0;
    position: relative;
}

.nt-section-card {
    padding: 34px;
    border-radius: 34px;
    border: 1px solid var(--nt-border);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: var(--nt-shadow);
}

.nt-icon-xl {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    margin-bottom: 24px;
}

.nt-section-card h2,
.nt-section-title h2,
.nt-product-content h2,
.nt-contact-card h2 {
    font-weight: 950;
    letter-spacing: -1.5px;
}

.nt-section-card p,
.nt-section-title p,
.nt-product-content p,
.nt-contact-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.nt-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.nt-about-box,
.nt-service-card,
.nt-stat {
    border: 1px solid var(--nt-border);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 28px;
    transition: 0.25s ease;
}

    .nt-about-box:hover,
    .nt-service-card:hover,
    .nt-stat:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    }

    .nt-about-box i,
    .nt-service-card i {
        font-size: 2rem;
        color: var(--nt-gold);
        margin-bottom: 18px;
        display: inline-block;
    }

    .nt-about-box h4,
    .nt-service-card h4 {
        font-weight: 900;
        margin-bottom: 10px;
    }

    .nt-about-box p,
    .nt-service-card p {
        color: rgba(255, 255, 255, 0.62);
        margin: 0;
        line-height: 1.7;
    }

.nt-section-title {
    max-width: 720px;
    margin: 0 auto 48px;
}

    .nt-section-title span,
    .nt-kicker {
        display: inline-flex;
        color: var(--nt-gold);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        margin-bottom: 12px;
    }

    .nt-section-title h2 {
        font-size: clamp(2rem, 4vw, 3.4rem);
    }

.nt-services-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.nt-service-card {
    min-height: 250px;
}

/* Product */

.nt-product-showcase {
    border: 1px solid var(--nt-border);
    border-radius: 42px;
    padding: 42px;
    background: radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.16), transparent 28%), rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    box-shadow: var(--nt-shadow);
}

.nt-product-content h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    margin-bottom: 18px;
}

.nt-product-points {
    display: grid;
    gap: 12px;
    margin: 26px 0 30px;
}

    .nt-product-points div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.82);
        font-weight: 700;
    }

    .nt-product-points i {
        color: #86efac;
    }

.nt-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.nt-product-preview {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--nt-border);
    background: rgba(7, 17, 31, 0.58);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
    transform: rotate(2deg);
    transition: 0.25s ease;
}

    .nt-product-preview:hover {
        transform: rotate(0deg) translateY(-8px);
    }

.nt-preview-header {
    display: flex;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.nt-preview-hero {
    padding: 42px 28px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(6, 182, 212, 0.16)), rgba(255, 255, 255, 0.06);
}

    .nt-preview-hero small {
        color: var(--nt-gold);
        font-weight: 900;
        text-transform: uppercase;
    }

    .nt-preview-hero h3 {
        font-weight: 950;
        margin: 10px 0;
    }

    .nt-preview-hero p {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

.nt-preview-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 22px;
}

    .nt-preview-cards div {
        padding: 22px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.09);
        font-weight: 900;
    }

/* Stats */

.nt-stats-section {
    padding-top: 20px;
}

.nt-stat {
    text-align: center;
}

    .nt-stat strong {
        display: block;
        font-size: clamp(2rem, 4vw, 3.3rem);
        line-height: 1;
        font-weight: 950;
        color: var(--nt-gold);
    }

    .nt-stat span {
        display: block;
        margin-top: 10px;
        color: rgba(255, 255, 255, 0.66);
        font-weight: 700;
    }

/* Contact */

.nt-contact-card {
    border-radius: 42px;
    padding: 46px;
    border: 1px solid var(--nt-border);
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.22), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(22px);
    box-shadow: var(--nt-shadow);
}

    .nt-contact-card h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

.nt-contact-actions {
    display: grid;
    gap: 14px;
}

.nt-contact-btn {
    min-height: 58px;
    padding: 16px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--nt-white);
    font-weight: 900;
    border: 1px solid var(--nt-border);
    background: rgba(255, 255, 255, 0.1);
    transition: 0.25s ease;
}

    .nt-contact-btn:hover {
        color: var(--nt-white);
        transform: translateX(8px);
        background: rgba(255, 255, 255, 0.16);
    }

    .nt-contact-btn i {
        color: var(--nt-gold);
    }

.nt-contact-btn-dark {
    color: #07111f;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
}

    .nt-contact-btn-dark:hover {
        color: #07111f;
    }

/* Footer */

.nt-footer {
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 31, 0.7);
}

.nt-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .nt-footer-brand h5 {
        margin: 0;
        font-weight: 900;
    }

    .nt-footer-brand p {
        margin: 4px 0 0;
        color: rgba(255, 255, 255, 0.58);
    }

.nt-footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 10px;
}

    .nt-footer-links a {
        color: rgba(255, 255, 255, 0.72);
        font-weight: 700;
    }

        .nt-footer-links a:hover {
            color: var(--nt-gold);
        }

.nt-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
}

/* Animations */

@keyframes ntFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 991px) {
    .nt-header {
        top: 10px;
    }

    .nt-navbar {
        border-radius: 20px;
    }

    .nt-menu {
        padding-top: 16px;
        align-items: stretch;
    }

    .nt-hero-content {
        padding-top: 130px;
    }

    .nt-hero-card {
        margin-top: 10px;
    }

    .nt-chip-one,
    .nt-chip-two {
        display: none;
    }

    .nt-about-grid {
        grid-template-columns: 1fr;
    }

    .nt-product-showcase,
    .nt-contact-card {
        padding: 28px;
        border-radius: 32px;
    }

    .nt-product-preview {
        transform: none;
    }

    .nt-footer-links {
        justify-content: flex-start;
        margin-top: 18px;
    }
}

@media (max-width: 575px) {
    .nt-hero h1 {
        letter-spacing: -2px;
    }

    .nt-hero-actions,
    .nt-product-actions {
        flex-direction: column;
    }

    .nt-btn {
        width: 100%;
    }

    .nt-trust-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nt-dashboard-grid,
    .nt-preview-cards {
        grid-template-columns: 1fr;
    }

    .nt-section {
        padding: 72px 0;
    }

    .nt-contact-card,
    .nt-product-showcase {
        padding: 22px;
    }
}

/* ==============================
   Final Smooth Repeat Reveal
   ============================== */

/* ==============================
   Clean Smooth Slide Animation
   No Blur Effect
   ============================== */

.nt-reveal {
    opacity: 0;
    transform: var(--nt-start-transform, translate3d(0, 42px, 0) scale(0.99));
    transition: opacity 0.75s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

    .nt-reveal.nt-show {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

/* Smooth hover only after visible */
.nt-service-card.nt-show:hover,
.nt-about-box.nt-show:hover,
.nt-stat.nt-show:hover {
    transform: translate3d(0, -10px, 0) scale(1.015);
}

/* Product preview hover */
.nt-product-preview.nt-show:hover {
    transform: translate3d(0, -8px, 0) rotate(0deg) scale(1.01);
}

/* Mobile light slide */
@media (max-width: 768px) {
    .nt-reveal {
        transform: translate3d(0, 28px, 0) scale(0.995);
        transition: opacity 0.65s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
}


    .nt-reveal.nt-show {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }

/* Hover smooth */
.nt-service-card.nt-show:hover,
.nt-about-box.nt-show:hover,
.nt-stat.nt-show:hover {
    transform: translate3d(0, -10px, 0) scale(1.015);
}

/* Mobile light animation */
@media (max-width: 768px) {
    .nt-reveal {
        filter: blur(4px);
        transform: translate3d(0, 30px, 0) scale(0.99);
        transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    }
}


/* ==============================
   Inner Pages - Namokar Tech
   ============================== */

.nt-inner-hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    padding: 150px 0 70px;
    position: relative;
    overflow: hidden;
}

    .nt-inner-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 12% 20%, rgba(245, 158, 11, 0.20), transparent 30%), radial-gradient(circle at 86% 30%, rgba(37, 99, 235, 0.24), transparent 34%);
        pointer-events: none;
    }

.nt-inner-content {
    position: relative;
    max-width: 900px;
    animation: ntFadeUp 0.8s ease both;
}

    .nt-inner-content h1 {
        font-size: clamp(2.4rem, 5vw, 5rem);
        line-height: 1;
        letter-spacing: -3px;
        font-weight: 950;
        margin-bottom: 22px;
    }

    .nt-inner-content p {
        max-width: 760px;
        color: rgba(255, 255, 255, 0.70);
        font-size: 1.12rem;
        line-height: 1.8;
    }

.nt-info-card,
.nt-about-wide-card,
.nt-tech-stack-card,
.nt-process-card,
.nt-process-step,
.nt-contact-info-card,
.nt-form-card {
    border: 1px solid var(--nt-border);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

    .nt-info-card:hover,
    .nt-process-step:hover,
    .nt-contact-info-card:hover,
    .nt-form-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.13);
    }

.nt-info-card {
    min-height: 280px;
}

    .nt-info-card i {
        width: 64px;
        height: 64px;
        border-radius: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        font-size: 1.8rem;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
        margin-bottom: 22px;
    }

    .nt-info-card h3,
    .nt-about-wide-card h2,
    .nt-tech-stack-card h4,
    .nt-process-step h5,
    .nt-contact-info-card h2,
    .nt-form-card h3 {
        font-weight: 900;
    }

    .nt-info-card p,
    .nt-about-wide-card p,
    .nt-process-step p,
    .nt-contact-info-card p,
    .nt-form-note {
        color: rgba(255, 255, 255, 0.66);
        line-height: 1.75;
    }

.nt-check-list {
    display: grid;
    gap: 13px;
    margin-top: 24px;
}

    .nt-check-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.82);
        font-weight: 700;
    }

    .nt-check-list i {
        color: #86efac;
    }

.nt-tech-stack-card {
    background: rgba(7, 17, 31, 0.52);
}

.nt-stack-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

    .nt-stack-item strong {
        color: var(--nt-gold);
    }

.nt-stack-line {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.10);
}

    .nt-stack-line span {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--nt-blue), var(--nt-cyan), var(--nt-gold));
    }

.nt-process-step {
    min-height: 220px;
}

    .nt-process-step strong {
        display: inline-flex;
        font-size: 2.2rem;
        color: var(--nt-gold);
        font-weight: 950;
        margin-bottom: 14px;
    }

.nt-contact-info-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

    .nt-contact-info-item i {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    }

    .nt-contact-info-item span {
        display: block;
        color: rgba(255,255,255,0.55);
        font-size: 0.88rem;
    }

    .nt-contact-info-item strong {
        display: block;
        color: var(--nt-white);
    }

.nt-form-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.80);
    font-weight: 800;
}

.nt-form-control {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(7,17,31,0.50);
    color: var(--nt-white);
    padding: 13px 16px;
    outline: none;
    transition: 0.25s ease;
}

    .nt-form-control::placeholder {
        color: rgba(255,255,255,0.38);
    }

    .nt-form-control:focus {
        border-color: rgba(245, 158, 11, 0.75);
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
    }

.nt-textarea {
    min-height: 140px;
    resize: none;
}

.nt-form-note {
    margin: 16px 0 0;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .nt-inner-hero {
        min-height: auto;
        padding: 130px 0 50px;
    }

    .nt-inner-content h1 {
        letter-spacing: -1.5px;
    }

    .nt-info-card,
    .nt-about-wide-card,
    .nt-tech-stack-card,
    .nt-process-card,
    .nt-process-step,
    .nt-contact-info-card,
    .nt-form-card {
        padding: 22px;
        border-radius: 24px;
    }
}


/* ==============================
   Premium Hero Upgrade
   ============================== */

.nt-premium-hero {
    isolation: isolate;
}

.nt-hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.12;
    background-image: linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.nt-hero-badge {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.nt-hero-title {
    position: relative;
}

.nt-gradient-text {
    background: linear-gradient(135deg, #ffffff, var(--nt-gold), var(--nt-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nt-hero-rotator {
    position: relative;
    height: 48px;
    margin: 10px 0 18px;
    overflow: hidden;
}

    .nt-hero-rotator span {
        position: absolute;
        left: 0;
        top: 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: clamp(1.15rem, 2.2vw, 1.6rem);
        font-weight: 900;
        color: var(--nt-gold);
        opacity: 0;
        transform: translateY(34px);
        animation: ntTextRotate 12s infinite;
    }

        .nt-hero-rotator span:nth-child(1) {
            animation-delay: 0s;
        }

        .nt-hero-rotator span:nth-child(2) {
            animation-delay: 3s;
        }

        .nt-hero-rotator span:nth-child(3) {
            animation-delay: 6s;
        }

        .nt-hero-rotator span:nth-child(4) {
            animation-delay: 9s;
        }

@keyframes ntTextRotate {
    0% {
        opacity: 0;
        transform: translateY(34px);
    }

    8%, 22% {
        opacity: 1;
        transform: translateY(0);
    }

    30%, 100% {
        opacity: 0;
        transform: translateY(-34px);
    }
}

.nt-hero-desc {
    max-width: 650px;
}

.nt-btn-big {
    min-height: 58px;
    padding-inline: 26px;
}

.nt-premium-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

    .nt-premium-points div {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 15px;
        border-radius: 999px;
        color: rgba(255,255,255,0.84);
        font-weight: 800;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(14px);
    }

    .nt-premium-points i {
        color: #86efac;
    }

/* Right side showcase */

.nt-showcase-wrap {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.nt-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    animation: ntOrbitSpin 18s linear infinite;
}

.nt-orbit-one {
    width: 440px;
    height: 440px;
}

.nt-orbit-two {
    width: 330px;
    height: 330px;
    animation-duration: 12s;
    animation-direction: reverse;
}

@keyframes ntOrbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nt-showcase-card {
    position: relative;
    z-index: 3;
    width: min(100%, 430px);
    border-radius: 34px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07));
    backdrop-filter: blur(22px);
    box-shadow: 0 32px 90px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.14);
    animation: ntShowcaseFloat 4.2s ease-in-out infinite;
}

@keyframes ntShowcaseFloat {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

.nt-showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.78);
    font-weight: 800;
    padding: 4px 4px 16px;
}

    .nt-showcase-top div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nt-showcase-top > i {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        color: #86efac;
        background: rgba(34,197,94,0.12);
    }

.nt-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 7px rgba(34,197,94,0.14);
    animation: ntPulseDot 1.4s ease-in-out infinite;
}

@keyframes ntPulseDot {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(34,197,94,0.14);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(34,197,94,0.04);
    }
}

.nt-showcase-body {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(7,17,31,0.62);
}

.nt-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255,255,255,0.08);
}

    .nt-browser-bar span {
        width: 11px;
        height: 11px;
        border-radius: 999px;
    }

        .nt-browser-bar span:nth-child(1) {
            background: #fb7185;
        }

        .nt-browser-bar span:nth-child(2) {
            background: #facc15;
        }

        .nt-browser-bar span:nth-child(3) {
            background: #22c55e;
        }

    .nt-browser-bar small {
        margin-left: auto;
        color: rgba(255,255,255,0.52);
        font-weight: 800;
    }

.nt-product-screen {
    padding: 20px;
}

.nt-product-hero-mini {
    padding: 24px;
    border-radius: 22px;
    background: radial-gradient(circle at 90% 10%, rgba(245,158,11,0.22), transparent 34%), linear-gradient(135deg, rgba(37,99,235,0.38), rgba(6,182,212,0.14));
}

    .nt-product-hero-mini small {
        color: var(--nt-gold);
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .nt-product-hero-mini h3 {
        margin: 10px 0;
        font-weight: 950;
    }

    .nt-product-hero-mini p {
        margin: 0;
        color: rgba(255,255,255,0.68);
        line-height: 1.6;
    }

.nt-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

    .nt-mini-grid div {
        min-height: 86px;
        padding: 14px;
        border-radius: 18px;
        display: grid;
        align-content: center;
        gap: 8px;
        color: rgba(255,255,255,0.82);
        font-weight: 850;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .nt-mini-grid i {
        color: var(--nt-gold);
        font-size: 1.25rem;
    }

.nt-showcase-footer {
    padding-top: 16px;
}

    .nt-showcase-footer a {
        width: 100%;
        min-height: 54px;
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #07111f;
        font-weight: 950;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
        box-shadow: 0 18px 42px rgba(245,158,11,0.26);
        transition: 0.25s ease;
    }

        .nt-showcase-footer a:hover {
            color: #07111f;
            transform: translateY(-3px);
        }

.nt-tech-pill {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--nt-white);
    font-weight: 900;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.24);
    animation: ntPillFloat 3s ease-in-out infinite alternate;
}

    .nt-tech-pill i {
        color: var(--nt-gold);
    }

.nt-pill-one {
    top: 86px;
    left: 0;
}

.nt-pill-two {
    right: 0;
    bottom: 120px;
    animation-delay: 0.8s;
}

.nt-pill-three {
    left: 34px;
    bottom: 54px;
    animation-delay: 1.4s;
}

@keyframes ntPillFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-14px);
    }
}

@media (max-width: 991px) {
    .nt-showcase-wrap {
        margin-top: 10px;
        min-height: 500px;
    }

    .nt-orbit-one {
        width: 360px;
        height: 360px;
    }

    .nt-orbit-two {
        width: 270px;
        height: 270px;
    }

    .nt-tech-pill {
        display: none;
    }
}

@media (max-width: 575px) {
    .nt-hero-rotator {
        height: 42px;
    }

        .nt-hero-rotator span {
            min-height: 42px;
            font-size: 1.08rem;
        }

    .nt-showcase-wrap {
        min-height: auto;
        padding-bottom: 40px;
    }

    .nt-orbit {
        display: none;
    }

    .nt-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   Premium Page Transition
   No Blur Effect
   ============================== */

.nt-page-transition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 32%), radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.20), transparent 34%), linear-gradient(135deg, #07111f, #0b1f3a);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

    .nt-page-transition.nt-transition-show {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }

.nt-transition-card {
    min-width: min(360px, calc(100% - 36px));
    padding: 22px 24px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: ntTransitionCardIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nt-transition-logo {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    font-weight: 950;
    font-size: 1.15rem;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.30);
}

.nt-transition-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.1;
}

.nt-transition-card small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

@keyframes ntTransitionCardIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Page load soft entry */
main {
    animation: ntMainPageIn 0.55s ease both;
}

@keyframes ntMainPageIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
   Contact Form Validation / Alert
   ============================== */

.nt-success-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding: 18px 20px;
    border-radius: 22px;
    color: #dcfce7;
    font-weight: 800;
    border: 1px solid rgba(34, 197, 94, 0.26);
    background: rgba(34, 197, 94, 0.12);
    box-shadow: 0 18px 42px rgba(34, 197, 94, 0.10);
}

    .nt-success-alert i {
        font-size: 1.35rem;
        color: #86efac;
    }

.nt-field-error {
    display: block;
    margin-top: 7px;
    color: #fecaca;
    font-size: 0.86rem;
    font-weight: 700;
}

.nt-validation-summary {
    margin-bottom: 16px;
    color: #fecaca;
    font-weight: 700;
}

    .nt-validation-summary ul {
        margin: 0;
        padding-left: 18px;
    }


/* ==============================
   Wide Premium Layout Fix
   ============================== */

/* Full page content जास्त width घेईल */
.nt-hero > .container,
.nt-section > .container,
.nt-inner-hero > .container {
    width: min(1500px, calc(100% - 54px));
    max-width: 1500px;
}

/* Header पण wide करा */
.nt-navbar {
    width: min(1500px, calc(100% - 54px));
    max-width: 1500px;
}

/* Hero मध्ये left/right balance */
.nt-premium-hero .row {
    --bs-gutter-x: 4rem;
}

/* Left text थोडं left ला आणि right card थोडं right ला */
.nt-hero-content {
    padding-left: 0;
}

.nt-showcase-wrap {
    justify-content: flex-end;
}

/* Hero title screen मध्ये balanced दिसेल */
.nt-hero h1,
.nt-hero-title {
    max-width: 760px;
}

/* Right preview card थोडा मोठा */
.nt-showcase-card {
    width: min(100%, 470px);
}

/* Right side orbit पण थोडा मोठा */
.nt-orbit-one {
    width: 480px;
    height: 480px;
}

.nt-orbit-two {
    width: 360px;
    height: 360px;
}

/* Large screen वर अजून better use */
@media (min-width: 1400px) {
    .nt-hero > .container,
    .nt-section > .container,
    .nt-inner-hero > .container,
    .nt-navbar {
        width: min(1540px, calc(100% - 64px));
        max-width: 1540px;
    }

    .nt-showcase-card {
        width: 490px;
    }
}

/* Laptop screen वर जास्त tight होऊ नये */
@media (max-width: 1200px) {
    .nt-hero > .container,
    .nt-section > .container,
    .nt-inner-hero > .container,
    .nt-navbar {
        width: min(1140px, calc(100% - 32px));
    }

    .nt-premium-hero .row {
        --bs-gutter-x: 2rem;
    }
}

/* Mobile safe */
@media (max-width: 768px) {
    .nt-hero > .container,
    .nt-section > .container,
    .nt-inner-hero > .container,
    .nt-navbar {
        width: calc(100% - 24px);
    }

    .nt-showcase-wrap {
        justify-content: center;
    }
}



/* ==============================
   Why Choose / Work / Packages
   ============================== */

.nt-why-section {
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.12), transparent 34%), radial-gradient(circle at 90% 40%, rgba(245, 158, 11, 0.10), transparent 34%);
}

.nt-why-card,
.nt-package-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .nt-why-card::before,
    .nt-package-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.26), transparent 32%, rgba(6, 182, 212, 0.22));
        opacity: 0;
        transition: opacity 0.28s ease;
        z-index: -1;
    }

    .nt-why-card:hover,
    .nt-package-card:hover {
        transform: translateY(-12px);
        border-color: rgba(245, 158, 11, 0.28);
        box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
    }

        .nt-why-card:hover::before,
        .nt-package-card:hover::before {
            opacity: 1;
        }

.nt-why-icon {
    width: 68px;
    height: 68px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    font-size: 1.85rem;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.22);
    margin-bottom: 24px;
}

.nt-why-card h4 {
    font-weight: 950;
    margin-bottom: 12px;
}

.nt-why-card p {
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.75;
    margin: 0;
}

/* Featured Work */

.nt-work-section {
    position: relative;
}

.nt-work-panel {
    position: relative;
    border-radius: 44px;
    padding: 46px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.16), transparent 30%), radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.18), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
    backdrop-filter: blur(22px);
    box-shadow: var(--nt-shadow);
}

.nt-work-content h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 950;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.nt-work-content p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    max-width: 640px;
}

.nt-work-feature-list {
    display: grid;
    gap: 13px;
    margin: 26px 0 30px;
}

    .nt-work-feature-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.84);
        font-weight: 750;
    }

    .nt-work-feature-list i {
        color: #86efac;
    }

.nt-work-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.nt-work-preview {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 17, 31, 0.62);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    transform: rotate(1.4deg);
    transition: transform 0.28s ease;
}

    .nt-work-preview:hover {
        transform: rotate(0deg) translateY(-8px);
    }

.nt-work-browser {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
}

    .nt-work-browser span {
        width: 12px;
        height: 12px;
        border-radius: 999px;
    }

        .nt-work-browser span:nth-child(1) {
            background: #fb7185;
        }

        .nt-work-browser span:nth-child(2) {
            background: #facc15;
        }

        .nt-work-browser span:nth-child(3) {
            background: #22c55e;
        }

    .nt-work-browser small {
        margin-left: auto;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 800;
    }

.nt-work-screen {
    padding: 24px;
}

.nt-work-screen-hero {
    padding: 32px;
    border-radius: 26px;
    background: radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.22), transparent 34%), linear-gradient(135deg, rgba(37, 99, 235, 0.44), rgba(6, 182, 212, 0.16));
}

    .nt-work-screen-hero small {
        color: var(--nt-gold);
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nt-work-screen-hero h3 {
        font-weight: 950;
        margin: 12px 0;
    }

    .nt-work-screen-hero p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.6;
    }

.nt-work-screen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

    .nt-work-screen-grid div {
        min-height: 96px;
        padding: 18px;
        border-radius: 20px;
        display: grid;
        align-content: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .nt-work-screen-grid i {
        color: var(--nt-gold);
        font-size: 1.35rem;
    }

    .nt-work-screen-grid strong {
        color: rgba(255, 255, 255, 0.86);
    }

.nt-work-floating {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--nt-white);
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    animation: ntPillFloat 3.2s ease-in-out infinite alternate;
}

    .nt-work-floating i {
        color: var(--nt-gold);
    }

.nt-work-floating-one {
    right: 22px;
    top: 40px;
}

.nt-work-floating-two {
    left: 8px;
    bottom: 40px;
    animation-delay: 0.9s;
}

/* Packages */

.nt-package-card {
    min-height: 460px;
    display: flex;
    flex-direction: column;
}

.nt-package-featured {
    border-color: rgba(245, 158, 11, 0.34);
    background: radial-gradient(circle at 85% 12%, rgba(245, 158, 11, 0.22), transparent 30%), linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
    transform: translateY(-14px);
}

    .nt-package-featured:hover {
        transform: translateY(-24px);
    }

.nt-package-badge {
    position: absolute;
    right: 22px;
    top: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #07111f;
    font-weight: 950;
    font-size: 0.78rem;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.22);
}

.nt-package-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

    .nt-package-head i {
        width: 58px;
        height: 58px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        font-size: 1.65rem;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    }

    .nt-package-head h3 {
        margin: 0;
        font-weight: 950;
        font-size: 1.35rem;
    }

.nt-package-card p {
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.75;
}

.nt-package-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 26px;
    display: grid;
    gap: 13px;
}

.nt-package-card li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 750;
}

    .nt-package-card li i {
        width: 24px;
        height: 24px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        background: #86efac;
        font-size: 1rem;
    }

.nt-package-link {
    margin-top: auto;
    min-height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--nt-white);
    font-weight: 950;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    transition: 0.25s ease;
}

    .nt-package-link:hover {
        color: var(--nt-white);
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.16);
    }

.nt-package-link-dark {
    color: #07111f;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.22);
}

    .nt-package-link-dark:hover {
        color: #07111f;
    }

@media (max-width: 991px) {
    .nt-work-panel {
        padding: 28px;
        border-radius: 34px;
    }

    .nt-work-preview {
        transform: none;
    }

    .nt-work-floating {
        display: none;
    }

    .nt-package-featured {
        transform: none;
    }

        .nt-package-featured:hover {
            transform: translateY(-12px);
        }
}

@media (max-width: 575px) {
    .nt-work-panel {
        padding: 22px;
        border-radius: 28px;
    }

    .nt-work-actions {
        flex-direction: column;
    }

    .nt-work-screen-grid {
        grid-template-columns: 1fr;
    }

    .nt-package-card {
        min-height: auto;
    }
}

/* ==============================
   Premium Footer + Floating Actions
   ============================== */

.nt-premium-footer {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.16), transparent 30%), radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.18), transparent 34%), linear-gradient(180deg, rgba(7, 17, 31, 0.96), #050b14);
}

.nt-footer-glow {
    position: absolute;
    left: 50%;
    top: -180px;
    width: 620px;
    height: 620px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.10);
    filter: blur(40px);
    pointer-events: none;
}

.nt-footer-cta {
    position: relative;
    margin-top: 80px;
    padding: 38px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: radial-gradient(circle at 90% 12%, rgba(245, 158, 11, 0.20), transparent 30%), linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    backdrop-filter: blur(20px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

    .nt-footer-cta h2 {
        font-size: clamp(2rem, 4vw, 3.4rem);
        font-weight: 950;
        letter-spacing: -1.8px;
        margin-bottom: 12px;
    }

    .nt-footer-cta p {
        max-width: 720px;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.75;
        margin: 0;
    }

.nt-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.nt-footer-main {
    position: relative;
    padding: 70px 0 42px;
}

.nt-footer-brand-box p {
    margin: 24px 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.8;
}

.nt-footer-logo {
    display: inline-flex;
}

.nt-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .nt-footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--nt-white);
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.08);
        transition: 0.25s ease;
    }

        .nt-footer-social a:hover {
            color: #07111f;
            transform: translateY(-5px);
            background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
            box-shadow: 0 16px 34px rgba(245, 158, 11, 0.24);
        }

.nt-footer-col h5,
.nt-footer-contact h5 {
    font-weight: 950;
    margin-bottom: 22px;
    color: var(--nt-white);
}

.nt-footer-col {
    display: grid;
    gap: 13px;
}

    .nt-footer-col a {
        width: fit-content;
        color: rgba(255, 255, 255, 0.62);
        font-weight: 750;
        transition: 0.25s ease;
    }

        .nt-footer-col a:hover {
            color: var(--nt-gold);
            transform: translateX(6px);
        }

.nt-footer-contact {
    display: grid;
    gap: 16px;
}

.nt-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.07);
}

    .nt-footer-contact-item i {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    }

    .nt-footer-contact-item span {
        display: block;
        color: rgba(255, 255, 255, 0.48);
        font-size: 0.82rem;
        font-weight: 750;
    }

    .nt-footer-contact-item strong {
        display: block;
        color: var(--nt-white);
        font-size: 0.92rem;
    }

.nt-footer-bottom {
    position: relative;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

    .nt-footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.52);
        font-weight: 700;
    }

    .nt-footer-bottom div {
        display: flex;
        gap: 18px;
    }

    .nt-footer-bottom a {
        color: rgba(255, 255, 255, 0.58);
        font-weight: 750;
        transition: 0.25s ease;
    }

        .nt-footer-bottom a:hover {
            color: var(--nt-gold);
        }

/* Floating Contact Buttons */

.nt-floating-actions {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 9990;
    display: grid;
    gap: 12px;
}

.nt-float-btn {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.28);
    transition: 0.25s ease;
    animation: ntFloatAction 2.8s ease-in-out infinite alternate;
}

    .nt-float-btn:hover {
        color: #07111f;
        transform: translateY(-6px) scale(1.04);
        box-shadow: 0 24px 54px rgba(245, 158, 11, 0.38);
    }

.nt-whatsapp-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.24);
    animation-delay: 0.35s;
}

    .nt-whatsapp-btn:hover {
        color: #ffffff;
        box-shadow: 0 24px 54px rgba(34, 197, 94, 0.34);
    }

.nt-call-btn {
    animation-delay: 0.7s;
}

.nt-quote-btn {
    animation-delay: 1.05s;
}

@keyframes ntFloatAction {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .nt-footer-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .nt-footer-cta-actions {
        width: 100%;
        justify-content: flex-start;
    }

        .nt-footer-cta-actions .nt-btn {
            width: 100%;
        }

    .nt-footer-main {
        padding: 54px 0 34px;
    }
}

@media (max-width: 575px) {
    .nt-footer-cta {
        margin-top: 56px;
        padding: 22px;
        border-radius: 28px;
    }

    .nt-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .nt-floating-actions {
        right: 14px;
        bottom: 16px;
        gap: 10px;
    }

    .nt-float-btn {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 1.1rem;
    }
}



/* ==============================
   Namokar Thank You Page
   ============================== */

.nt-thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
}

    .nt-thankyou-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.16), transparent 30%), radial-gradient(circle at 80% 25%, rgba(245, 158, 11, 0.18), transparent 32%), radial-gradient(circle at 50% 90%, rgba(37, 99, 235, 0.18), transparent 34%);
        pointer-events: none;
    }

.nt-thankyou-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 54px;
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(22px);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: ntThankYouIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ntThankYouIn {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nt-success-ring {
    width: 128px;
    height: 128px;
    margin: 0 auto 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.26);
    animation: ntSuccessPulse 1.8s ease-in-out infinite;
}

.nt-success-circle {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    font-size: 3rem;
    background: linear-gradient(135deg, #86efac, #22c55e);
    box-shadow: 0 18px 48px rgba(34, 197, 94, 0.30);
}

@keyframes ntSuccessPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.16);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
    }
}

.nt-thankyou-card h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -2.5px;
    font-weight: 950;
}

    .nt-thankyou-card h1 span {
        color: var(--nt-gold);
    }

.nt-thankyou-card p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.70);
    font-size: 1.1rem;
    line-height: 1.8;
}

.nt-thankyou-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 36px 0;
}

    .nt-thankyou-info div {
        padding: 22px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.08);
        transition: 0.25s ease;
    }

        .nt-thankyou-info div:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.13);
        }

    .nt-thankyou-info i {
        width: 52px;
        height: 52px;
        margin: 0 auto 14px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        font-size: 1.45rem;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    }

    .nt-thankyou-info strong {
        display: block;
        color: #ffffff;
        font-weight: 950;
        margin-bottom: 6px;
    }

    .nt-thankyou-info span {
        display: block;
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.92rem;
        line-height: 1.5;
    }

.nt-thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

@media (max-width: 768px) {
    .nt-thankyou-section {
        padding: 130px 0 70px;
    }

    .nt-thankyou-card {
        padding: 30px 22px;
        border-radius: 32px;
    }

    .nt-thankyou-info {
        grid-template-columns: 1fr;
    }

    .nt-thankyou-actions {
        display: grid;
    }

        .nt-thankyou-actions .nt-btn {
            width: 100%;
        }
}

/* ==============================
   Namokar Public Mobile Final Polish
   ============================== */

@media (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    .nt-header {
        top: 8px;
    }

    .nt-navbar {
        width: calc(100% - 20px);
        padding: 10px 12px;
        border-radius: 20px;
    }

    .nt-brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 0.9rem;
    }

    .nt-brand strong {
        font-size: 0.98rem;
    }

    .nt-brand small {
        font-size: 0.7rem;
    }

    .nt-toggler {
        width: 44px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
    }

    .nt-menu {
        padding-top: 14px;
        gap: 9px;
    }

    .nt-menu-btn,
    .nt-nav-cta {
        width: 100%;
        min-height: 48px;
        justify-content: flex-start;
        border-radius: 16px;
        padding: 12px 14px !important;
    }

    .nt-nav-cta {
        justify-content: center;
    }

    .nt-hero-content {
        padding-top: 135px;
        text-align: left;
    }

    .nt-hero h1,
    .nt-hero-title {
        max-width: 100%;
        font-size: clamp(2.6rem, 13vw, 4.1rem);
        line-height: 0.98;
        letter-spacing: -2px;
    }

    .nt-hero-desc,
    .nt-hero p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .nt-hero-actions {
        display: grid;
        gap: 12px;
    }

        .nt-hero-actions .nt-btn {
            width: 100%;
        }

    .nt-premium-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nt-showcase-wrap {
        margin-top: 10px;
        min-height: auto;
        padding: 18px 0 50px;
    }

    .nt-showcase-card {
        width: 100%;
        border-radius: 28px;
        padding: 14px;
    }

    .nt-showcase-body {
        border-radius: 22px;
    }

    .nt-product-screen {
        padding: 16px;
    }

    .nt-product-hero-mini {
        padding: 22px;
        border-radius: 20px;
    }

    .nt-mini-grid {
        grid-template-columns: 1fr;
    }

    .nt-orbit,
    .nt-tech-pill,
    .nt-floating-chip,
    .nt-work-floating {
        display: none !important;
    }

    .nt-marquee-track {
        gap: 28px;
        animation-duration: 18s;
    }

        .nt-marquee-track span {
            font-size: 0.82rem;
        }

    .nt-section {
        padding: 72px 0;
    }

    .nt-section-title {
        margin-bottom: 34px;
    }

        .nt-section-title h2,
        .nt-product-content h2,
        .nt-work-content h2,
        .nt-contact-card h2 {
            font-size: clamp(2rem, 10vw, 3rem);
            letter-spacing: -1.4px;
        }

    .nt-about-grid {
        grid-template-columns: 1fr;
    }

    .nt-product-showcase,
    .nt-work-panel,
    .nt-contact-card,
    .nt-footer-cta {
        padding: 24px;
        border-radius: 28px;
    }

    .nt-product-actions,
    .nt-work-actions,
    .nt-footer-cta-actions,
    .nt-thankyou-actions {
        display: grid;
        gap: 12px;
    }

        .nt-product-actions .nt-btn,
        .nt-work-actions .nt-btn,
        .nt-footer-cta-actions .nt-btn,
        .nt-thankyou-actions .nt-btn {
            width: 100%;
        }

    .nt-product-preview,
    .nt-work-preview {
        transform: none;
        border-radius: 26px;
    }

    .nt-preview-cards,
    .nt-work-screen-grid,
    .nt-thankyou-info {
        grid-template-columns: 1fr;
    }

    .nt-package-featured {
        transform: none;
    }

    .nt-contact-actions {
        gap: 12px;
    }

    .nt-footer-main {
        padding: 48px 0 34px;
    }

    .nt-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

        .nt-footer-bottom div {
            flex-wrap: wrap;
        }

    .nt-floating-actions {
        right: 12px;
        bottom: 14px;
        gap: 9px;
    }

    .nt-float-btn {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 1.08rem;
    }
}

@media (max-width: 575px) {
    .nt-hero > .container,
    .nt-section > .container,
    .nt-inner-hero > .container,
    .nt-thankyou-section > .container {
        width: calc(100% - 22px);
    }

    .nt-badge {
        font-size: 0.78rem;
        line-height: 1.4;
        align-items: flex-start;
        border-radius: 16px;
    }

    .nt-hero h1,
    .nt-hero-title {
        font-size: clamp(2.35rem, 14vw, 3.5rem);
    }

    .nt-hero-rotator {
        height: 46px;
        margin-bottom: 14px;
    }

        .nt-hero-rotator span {
            font-size: 1rem;
            line-height: 1.3;
        }

    .nt-dashboard-grid,
    .nt-mini-grid,
    .nt-preview-cards {
        grid-template-columns: 1fr;
    }

    .nt-about-box,
    .nt-service-card,
    .nt-why-card,
    .nt-package-card,
    .nt-info-card,
    .nt-form-card,
    .nt-contact-info-card {
        padding: 22px;
        border-radius: 24px;
    }

    .nt-package-card {
        min-height: auto;
    }

    .nt-inner-hero {
        min-height: auto;
        padding: 132px 0 54px;
    }

    .nt-inner-content h1 {
        font-size: clamp(2.2rem, 12vw, 3.3rem);
        letter-spacing: -1.5px;
    }

    .nt-form-control {
        min-height: 52px;
        border-radius: 16px;
    }

    .nt-thankyou-card {
        padding: 30px 20px;
        border-radius: 28px;
    }

    .nt-success-ring {
        width: 108px;
        height: 108px;
    }

    .nt-success-circle {
        width: 76px;
        height: 76px;
        font-size: 2.5rem;
    }
}

/* ==============================
   Namokar Capability Dashboard
   ============================== */

.nt-capability-wrap {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.nt-capability-card {
    position: relative;
    z-index: 3;
    width: min(100%, 470px);
    border-radius: 34px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
    backdrop-filter: blur(22px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    animation: ntShowcaseFloat 4.2s ease-in-out infinite;
}

.nt-capability-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 850;
    padding: 4px 4px 16px;
}

    .nt-capability-top div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nt-capability-top > i {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        color: #07111f;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
        box-shadow: 0 14px 34px rgba(245, 158, 11, 0.24);
    }

.nt-capability-body {
    padding: 24px;
    border-radius: 26px;
    background: rgba(7, 17, 31, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.nt-capability-title {
    padding: 26px;
    border-radius: 24px;
    background: radial-gradient(circle at 90% 12%, rgba(245, 158, 11, 0.20), transparent 34%), linear-gradient(135deg, rgba(37, 99, 235, 0.40), rgba(6, 182, 212, 0.14));
    margin-bottom: 22px;
}

    .nt-capability-title small {
        color: var(--nt-gold);
        text-transform: uppercase;
        font-weight: 950;
        letter-spacing: 1px;
    }

    .nt-capability-title h3 {
        margin: 10px 0;
        font-weight: 950;
        line-height: 1.16;
    }

    .nt-capability-title p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.6;
        font-size: 0.95rem;
    }

.nt-skill-list {
    display: grid;
    gap: 16px;
}

.nt-skill-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 850;
    font-size: 0.92rem;
}

    .nt-skill-head strong {
        color: var(--nt-gold);
    }

.nt-skill-line {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

    .nt-skill-line span {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--nt-blue), var(--nt-cyan), var(--nt-gold));
        animation: ntSkillLoad 2.2s ease-in-out both;
    }

@keyframes ntSkillLoad {
    from {
        width: 0;
    }
}

.nt-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 22px;
}

    .nt-capability-grid div {
        min-height: 82px;
        padding: 12px 8px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        text-align: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.09);
        transition: 0.25s ease;
    }

        .nt-capability-grid div:hover {
            transform: translateY(-6px);
            background: rgba(255, 255, 255, 0.13);
        }

    .nt-capability-grid i {
        color: var(--nt-gold);
        font-size: 1.35rem;
    }

    .nt-capability-grid strong {
        color: rgba(255, 255, 255, 0.86);
        font-size: 0.82rem;
    }

@media (max-width: 991px) {
    .nt-capability-wrap {
        margin-top: 10px;
        min-height: auto;
        padding: 20px 0 50px;
    }

    .nt-capability-card {
        width: 100%;
        border-radius: 28px;
        padding: 14px;
    }

    .nt-capability-body {
        padding: 18px;
        border-radius: 22px;
    }

    .nt-capability-title {
        padding: 22px;
        border-radius: 20px;
    }
}

@media (max-width: 575px) {
    .nt-capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .nt-capability-grid div {
            min-height: 78px;
        }
}

/* ==============================
   Clean Premium Front View
   ============================== */

.nt-clean-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.nt-clean-hero-content {
    padding-top: 95px;
}

    .nt-clean-hero-content h1 {
        max-width: 780px;
        margin-bottom: 24px;
        font-size: clamp(2.8rem, 6.5vw, 5.8rem);
        line-height: 0.98;
        letter-spacing: -3.5px;
        font-weight: 950;
    }

        .nt-clean-hero-content h1 span {
            display: block;
            background: linear-gradient(135deg, #ffffff, var(--nt-gold), var(--nt-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .nt-clean-hero-content p {
        max-width: 680px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 1.12rem;
        line-height: 1.8;
    }

.nt-clean-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

    .nt-clean-points div {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 15px;
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.84);
        font-weight: 800;
        border: 1px solid rgba(255, 255, 255, 0.13);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px);
    }

    .nt-clean-points i {
        color: #86efac;
    }

.nt-clean-visual {
    padding-top: 95px;
    display: flex;
    justify-content: flex-end;
}

.nt-clean-card {
    width: min(100%, 470px);
    padding: 24px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.16), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: ntCleanCardFloat 4.5s ease-in-out infinite;
}

@keyframes ntCleanCardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.nt-clean-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

    .nt-clean-card-head small {
        display: block;
        color: var(--nt-gold);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nt-clean-card-head h3 {
        margin: 5px 0 0;
        color: #ffffff;
        font-weight: 950;
        letter-spacing: -0.8px;
    }

    .nt-clean-card-head span {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        font-weight: 950;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
        box-shadow: 0 16px 36px rgba(245, 158, 11, 0.28);
    }

.nt-clean-service-list {
    display: grid;
    gap: 14px;
}

    .nt-clean-service-list > div {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        background: rgba(7, 17, 31, 0.48);
        transition: 0.25s ease;
    }

        .nt-clean-service-list > div:hover {
            transform: translateX(6px);
            background: rgba(255, 255, 255, 0.10);
        }

    .nt-clean-service-list i {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border-radius: 17px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #07111f;
        font-size: 1.35rem;
        background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    }

    .nt-clean-service-list strong {
        display: block;
        color: #ffffff;
        font-weight: 900;
    }

    .nt-clean-service-list small {
        display: block;
        margin-top: 3px;
        color: rgba(255, 255, 255, 0.58);
        font-weight: 650;
    }

.nt-clean-demo-btn {
    margin-top: 18px;
    min-height: 56px;
    width: 100%;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #07111f;
    font-weight: 950;
    background: linear-gradient(135deg, var(--nt-gold), var(--nt-orange));
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.26);
    transition: 0.25s ease;
}

    .nt-clean-demo-btn:hover {
        color: #07111f;
        transform: translateY(-4px);
        box-shadow: 0 24px 54px rgba(245, 158, 11, 0.36);
    }

/* Old complex hero elements hide if accidentally remaining */
.nt-clean-hero .nt-orbit,
.nt-clean-hero .nt-tech-pill,
.nt-clean-hero .nt-floating-chip,
.nt-clean-hero .nt-hero-grid-lines,
.nt-clean-hero .nt-hero-rotator {
    display: none !important;
}

@media (max-width: 991px) {
    .nt-clean-hero-content {
        padding-top: 135px;
    }

    .nt-clean-visual {
        padding-top: 0;
        justify-content: center;
    }

    .nt-clean-card {
        width: 100%;
        border-radius: 28px;
        padding: 20px;
    }

    .nt-clean-hero-content h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
        letter-spacing: -2px;
    }

    .nt-clean-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .nt-clean-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nt-clean-service-list > div {
        padding: 14px;
        border-radius: 18px;
    }

    .nt-clean-service-list i {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .nt-clean-card-head span {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 17px;
    }
}



/* ==============================
   Namokar Logo
   ============================== */

.nt-logo-brand {
    display: inline-flex;
    align-items: center;
    min-width: 210px;
}

.nt-logo-img {
    width: 210px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

@media (max-width: 575px) {
    .nt-logo-img {
        width: 172px;
    }

    .nt-logo-brand {
        min-width: auto;
    }
}

/* ==============================
   Namokar Logo Final
   ============================== */

.nt-logo-brand {
    display: inline-flex;
    align-items: center;
    min-width: 210px;
    text-decoration: none;
}

.nt-logo-img {
    width: 210px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.nt-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
}

.nt-footer-logo-img {
    width: 210px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

@media (max-width: 991px) {
    .nt-logo-img {
        width: 185px;
    }
}

@media (max-width: 575px) {
    .nt-logo-img,
    .nt-footer-logo-img {
        width: 165px;
    }

    .nt-logo-brand {
        min-width: auto;
    }
}

/* ==============================
   Namokar Logo Premium Final
   ============================== */

.nt-logo-brand {
    min-width: 280px;
    min-height: 72px;
    padding: 8px 14px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 20%, rgba(255, 179, 71, 0.22), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

    .nt-logo-brand::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        background: linear-gradient( 120deg, transparent 0%, rgba(255, 179, 71, 0.18) 35%, rgba(6, 182, 212, 0.16) 55%, transparent 100% );
        opacity: 0;
        transition: 0.28s ease;
    }

    .nt-logo-brand:hover::before {
        opacity: 1;
    }

    .nt-logo-brand::after {
        content: "";
        position: absolute;
        left: -80%;
        top: 0;
        width: 55%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.24), transparent );
        transform: skewX(-18deg);
        transition: 0.65s ease;
    }

    .nt-logo-brand:hover::after {
        left: 130%;
    }

.nt-logo-img {
    position: relative;
    z-index: 2;
    width: 245px;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 18px rgba(255, 159, 26, 0.18));
    transition: 0.25s ease;
}

.nt-logo-brand:hover .nt-logo-img {
    transform: scale(1.035);
}

/* Footer Logo */
.nt-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 18px;
}

.nt-footer-logo-img {
    width: 240px;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 16px rgba(255, 159, 26, 0.16));
}

@media (max-width: 991px) {
    .nt-logo-brand {
        min-width: 235px;
        min-height: 66px;
        padding: 7px 12px;
    }

    .nt-logo-img {
        width: 210px;
    }
}

@media (max-width: 575px) {
    .nt-logo-brand {
        min-width: 190px;
        min-height: 58px;
        padding: 6px 10px;
        border-radius: 20px;
    }

    .nt-logo-img {
        width: 172px;
    }

    .nt-footer-logo-img {
        width: 185px;
    }
}


/* ==============================
   Hero Heading Size Balance
   ============================== */

.nt-clean-hero-content h1,
.nt-title-slider {
    max-width: 720px;
    font-size: clamp(2.7rem, 5.4vw, 5.05rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -2.8px !important;
}

    .nt-title-slider .nt-title-brand {
        font-size: 0.98em;
    }

.nt-clean-hero-content p {
    max-width: 660px;
    font-size: 1.02rem;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .nt-clean-hero-content h1,
    .nt-title-slider {
        font-size: clamp(2.35rem, 10vw, 3.8rem) !important;
        line-height: 1.04 !important;
        letter-spacing: -2px !important;
    }
}

@media (max-width: 575px) {
    .nt-clean-hero-content h1,
    .nt-title-slider {
        font-size: clamp(2.15rem, 11.5vw, 3.25rem) !important;
        letter-spacing: -1.5px !important;
    }
}

/* =========================================================
   HERO POSITION FIX - Navbar overlap and old card clash fix
   ========================================================= */

.nt-minimal-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.nt-minimal-hero-shell {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
}

.nt-minimal-hero-content,
.nt-minimal-visual {
    padding-top: 0 !important;
}

.nt-minimal-visual {
    display: flex;
    justify-content: flex-end;
}

.nt-brand-showcase-card {
    width: min(100%, 430px);
    min-height: 470px;
    padding: 36px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(255, 179, 71, 0.20), transparent 38%), linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

/* Old right side card force hide if accidentally still present */
.nt-minimal-hero .nt-clean-card,
.nt-minimal-hero .nt-clean-service-list,
.nt-minimal-hero .nt-capability-card,
.nt-minimal-hero .nt-showcase-card,
.nt-minimal-hero .nt-clean-visual {
    display: none !important;
}

/* Heading balance */
.nt-minimal-hero-content h1,
.nt-minimal-hero .nt-title-slider {
    max-width: 760px;
    font-size: clamp(2.75rem, 5.25vw, 4.85rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -2.6px !important;
}

@media (max-width: 991px) {
    .nt-minimal-hero-shell {
        padding-top: 135px;
        padding-bottom: 60px;
    }

    .nt-minimal-visual {
        justify-content: center;
        margin-top: 20px;
    }

    .nt-brand-showcase-card {
        width: 100%;
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .nt-minimal-hero-shell {
        padding-top: 125px;
    }

    .nt-minimal-hero-content h1,
    .nt-minimal-hero .nt-title-slider {
        font-size: clamp(2.15rem, 11vw, 3.15rem) !important;
        letter-spacing: -1.4px !important;
    }
}


/* =========================================================
   NAMOKAR HOME FINAL VISUAL BALANCE FIX
   ========================================================= */

/* Hero spacing */
.nt-minimal-hero-shell {
    min-height: 100vh !important;
    padding-top: 150px !important;
    padding-bottom: 80px !important;
    display: flex !important;
    align-items: center !important;
}

/* Heading size fix */
.nt-minimal-hero-content h1,
.nt-minimal-hero .nt-title-slider {
    max-width: 720px !important;
    font-size: clamp(2.65rem, 4.65vw, 4.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -2.2px !important;
    margin-bottom: 24px !important;
}

/* Brand colour same but smoother */
.nt-title-slider .nt-title-brand {
    width: fit-content !important;
    background: linear-gradient(135deg, #fff1c7 0%, #ffb347 38%, #ff9f1a 62%, #4fd1c5 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Text paragraph balance */
.nt-minimal-hero-content p {
    max-width: 620px !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.70) !important;
}

/* Trust chips proper premium look */
.nt-minimal-trust {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 28px !important;
}

    .nt-minimal-trust span {
        min-height: 44px !important;
        padding: 0 16px !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: rgba(255, 255, 255, 0.86) !important;
        font-weight: 850 !important;
        background: rgba(255, 255, 255, 0.09) !important;
        border: 1px solid rgba(255, 255, 255, 0.13) !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14) !important;
    }

    .nt-minimal-trust i {
        width: 20px !important;
        height: 20px !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #07111f !important;
        font-size: 0.72rem !important;
        background: #86efac !important;
    }

/* Right visual alignment */
.nt-minimal-visual {
    padding-top: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
}

/* Premium right card */
.nt-brand-showcase-card {
    width: min(100%, 420px) !important;
    min-height: 455px !important;
    padding: 34px !important;
    border-radius: 38px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    background: radial-gradient(circle at 50% 0%, rgba(255, 179, 71, 0.24), transparent 38%), radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.13), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(20px) !important;
}

/* Premium logo inside card */
.nt-brand-showcase-logo {
    width: 116px !important;
    height: 116px !important;
    margin: 10px auto 24px !important;
    border-radius: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #ffb347, #ff8a2a) !important;
    box-shadow: 0 24px 56px rgba(255, 138, 42, 0.30), 0 0 0 10px rgba(255, 179, 71, 0.08) !important;
}

    .nt-brand-showcase-logo span {
        width: 72px !important;
        height: 72px !important;
        border-radius: 24px !important;
        display: grid !important;
        place-items: center !important;
        color: #ffb347 !important;
        font-size: 2.35rem !important;
        font-weight: 950 !important;
        background: #07111f !important;
    }

/* Card heading */
.nt-brand-showcase-card h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 2.15rem !important;
    font-weight: 950 !important;
    letter-spacing: -1px !important;
}

.nt-brand-showcase-card p {
    margin: 10px 0 0 !important;
    color: rgba(255, 255, 255, 0.64) !important;
    font-weight: 750 !important;
}

/* Right card mini boxes fix */
.nt-brand-showcase-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    margin-top: 0 !important;
}

    .nt-brand-showcase-grid div {
        min-height: 86px !important;
        padding: 14px 8px !important;
        border-radius: 22px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        background: rgba(7, 17, 31, 0.52) !important;
        border: 1px solid rgba(255, 255, 255, 0.11) !important;
    }

    .nt-brand-showcase-grid strong {
        display: block !important;
        color: #ffffff !important;
        font-weight: 950 !important;
        font-size: 1rem !important;
    }

    .nt-brand-showcase-grid small {
        display: block !important;
        margin-top: 4px !important;
        color: rgba(255, 255, 255, 0.58) !important;
        font-weight: 700 !important;
        font-size: 0.78rem !important;
    }

/* Line and button fix */
.nt-brand-showcase-line {
    width: 100% !important;
    height: 1px !important;
    margin: 26px 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 71, 0.58), transparent) !important;
}

.nt-brand-showcase-link {
    min-height: 56px !important;
    margin-top: 26px !important;
    border-radius: 18px !important;
    display: inline-flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    color: #07111f !important;
    font-weight: 950 !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #ffb347, #ff8a2a) !important;
    box-shadow: 0 20px 48px rgba(255, 138, 42, 0.26) !important;
}

/* Mobile */
@media (max-width: 991px) {
    .nt-minimal-hero-shell {
        padding-top: 135px !important;
    }

    .nt-minimal-hero-content h1,
    .nt-minimal-hero .nt-title-slider {
        font-size: clamp(2.25rem, 9.5vw, 3.55rem) !important;
        line-height: 1.07 !important;
        letter-spacing: -1.8px !important;
    }

    .nt-minimal-visual {
        justify-content: center !important;
        margin-top: 20px !important;
    }

    .nt-brand-showcase-card {
        width: 100% !important;
        min-height: auto !important;
    }
}

@media (max-width: 575px) {
    .nt-minimal-trust {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .nt-brand-showcase-grid {
        grid-template-columns: 1fr !important;
    }

    .nt-minimal-hero-content h1,
    .nt-minimal-hero .nt-title-slider {
        font-size: clamp(2.05rem, 10.8vw, 3rem) !important;
    }
}

/* =========================================================
   HERO SERVICE CARD RESTORE - Premium Old Card Improved
   ========================================================= */

.nt-hero-service-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0 !important;
}

.nt-hero-service-card {
    width: min(100%, 470px);
    padding: 26px;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 88% 10%, rgba(255, 179, 71, 0.24), transparent 34%), radial-gradient(circle at 12% 100%, rgba(6, 182, 212, 0.10), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    animation: ntHeroServiceFloat 5s ease-in-out infinite;
}

@keyframes ntHeroServiceFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.nt-hero-service-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

    .nt-hero-service-head span {
        display: block;
        color: var(--nt-gold, #ffb347);
        font-size: 0.82rem;
        font-weight: 950;
        letter-spacing: 1.4px;
    }

    .nt-hero-service-head h3 {
        margin: 7px 0 0;
        color: #ffffff;
        font-size: 2rem;
        font-weight: 950;
        letter-spacing: -1px;
    }

.nt-hero-service-logo {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    color: #07111f;
    font-weight: 950;
    background: linear-gradient(135deg, var(--nt-gold, #ffb347), var(--nt-orange, #ff8a2a));
    box-shadow: 0 18px 42px rgba(255, 138, 42, 0.25);
}

.nt-hero-service-list {
    display: grid;
    gap: 14px;
}

.nt-hero-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: 0.25s ease;
}

    .nt-hero-service-item:hover {
        transform: translateX(6px);
        background: rgba(255, 255, 255, 0.10);
    }

    .nt-hero-service-item i {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        color: #07111f;
        font-size: 1.35rem;
        background: linear-gradient(135deg, var(--nt-gold, #ffb347), var(--nt-orange, #ff8a2a));
    }

    .nt-hero-service-item strong {
        display: block;
        color: #ffffff;
        font-weight: 950;
    }

    .nt-hero-service-item small {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.58);
        font-weight: 700;
    }

.nt-hero-service-btn {
    min-height: 58px;
    margin-top: 20px;
    border-radius: 18px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #07111f;
    font-weight: 950;
    text-decoration: none;
    background: linear-gradient(135deg, var(--nt-gold, #ffb347), var(--nt-orange, #ff8a2a));
    box-shadow: 0 20px 48px rgba(255, 138, 42, 0.26);
    transition: 0.25s ease;
}

    .nt-hero-service-btn:hover {
        color: #07111f;
        transform: translateY(-4px);
    }

/* Hero overall position fix */
.nt-minimal-hero-shell {
    padding-top: 150px !important;
    padding-bottom: 75px !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
}

.nt-minimal-hero-content {
    padding-top: 0 !important;
}

    /* Left heading balance */
    .nt-minimal-hero-content h1,
    .nt-minimal-hero .nt-title-slider {
        max-width: 760px !important;
        font-size: clamp(2.65rem, 4.85vw, 4.55rem) !important;
        line-height: 1.06 !important;
        letter-spacing: -2.4px !important;
    }

/* Trust chips fix */
.nt-minimal-trust {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 28px !important;
}

    .nt-minimal-trust span {
        min-height: 42px !important;
        padding: 0 15px !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: rgba(255, 255, 255, 0.86) !important;
        font-weight: 850 !important;
        background: rgba(255, 255, 255, 0.09) !important;
        border: 1px solid rgba(255, 255, 255, 0.13) !important;
    }

    .nt-minimal-trust i {
        color: #86efac !important;
    }

@media (max-width: 991px) {
    .nt-minimal-hero-shell {
        padding-top: 135px !important;
    }

    .nt-hero-service-visual {
        justify-content: center;
        margin-top: 20px;
    }

    .nt-hero-service-card {
        width: 100%;
        border-radius: 32px;
    }

    .nt-minimal-hero-content h1,
    .nt-minimal-hero .nt-title-slider {
        font-size: clamp(2.25rem, 9.5vw, 3.55rem) !important;
    }
}

@media (max-width: 575px) {
    .nt-hero-service-card {
        padding: 22px;
    }

    .nt-hero-service-head h3 {
        font-size: 1.65rem;
    }

    .nt-hero-service-item {
        padding: 14px;
    }

    .nt-minimal-trust {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   Hero Right Card Position Fix
   ========================================================= */

.nt-minimal-hero > .container {
    width: min(1500px, calc(100% - 70px)) !important;
    max-width: 1500px !important;
}

.nt-hero-service-visual {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.nt-hero-service-card {
    margin-left: auto !important;
    margin-right: 10px !important;
    transform: translateX(34px) !important;
}

    /* float animation mule transform override hou naye mhanun */
    .nt-hero-service-card:hover {
        transform: translateX(34px) translateY(-4px) !important;
    }

@media (max-width: 1200px) {
    .nt-hero-service-card {
        transform: translateX(12px) !important;
        margin-right: 0 !important;
    }

        .nt-hero-service-card:hover {
            transform: translateX(12px) translateY(-4px) !important;
        }
}

@media (max-width: 991px) {
    .nt-minimal-hero > .container {
        width: calc(100% - 28px) !important;
    }

    .nt-hero-service-card,
    .nt-hero-service-card:hover {
        transform: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* =========================================================
   HOME HERO SLIDE + FLOATING FINAL
   Left content slide + Right card slide + smooth floating
   ========================================================= */

/* Left side slide */
.nt-minimal-badge,
.nt-minimal-hero-content .nt-title-slider,
.nt-minimal-hero-content p,
.nt-minimal-actions,
.nt-minimal-trust {
    opacity: 0;
    animation: ntHeroSlideLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nt-minimal-badge {
    animation-delay: 0.08s;
}

.nt-minimal-hero-content .nt-title-slider {
    animation-delay: 0.18s;
}

.nt-minimal-hero-content p {
    animation-delay: 0.34s;
}

.nt-minimal-actions {
    animation-delay: 0.48s;
}

.nt-minimal-trust {
    animation-delay: 0.62s;
}

@keyframes ntHeroSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-48px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right side card slide */
.nt-hero-service-visual {
    opacity: 0;
    animation: ntHeroSlideRight 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.34s;
}

@keyframes ntHeroSlideRight {
    from {
        opacity: 0;
        transform: translateX(58px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card floating - top property वापरले आहे कारण आधी translateX आहे */
.nt-hero-service-card {
    position: relative !important;
    top: 0;
    animation: ntServiceCardFloatPremium 4.8s ease-in-out infinite !important;
    animation-delay: 1.2s !important;
}

@keyframes ntServiceCardFloatPremium {
    0%, 100% {
        top: 0;
        box-shadow: 0 34px 95px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    50% {
        top: -14px;
        box-shadow: 0 44px 110px rgba(0, 0, 0, 0.42), 0 0 42px rgba(255, 159, 26, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }
}

/* Service rows मध्ये soft slide */
.nt-hero-service-item {
    opacity: 0;
    animation: ntServiceItemSlide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

    .nt-hero-service-item:nth-child(1) {
        animation-delay: 0.65s;
    }

    .nt-hero-service-item:nth-child(2) {
        animation-delay: 0.78s;
    }

    .nt-hero-service-item:nth-child(3) {
        animation-delay: 0.91s;
    }

    .nt-hero-service-item:nth-child(4) {
        animation-delay: 1.04s;
    }

@keyframes ntServiceItemSlide {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Button soft entry */
.nt-hero-service-btn {
    opacity: 0;
    animation: ntServiceBtnUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.18s;
}

@keyframes ntServiceBtnUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect floating सोबत conflict होऊ नये म्हणून */
.nt-hero-service-card:hover {
    top: -10px;
}

/* Mobile वर animation light ठेव */
@media (max-width: 575px) {
    .nt-minimal-badge,
    .nt-minimal-hero-content .nt-title-slider,
    .nt-minimal-hero-content p,
    .nt-minimal-actions,
    .nt-minimal-trust,
    .nt-hero-service-visual {
        animation-duration: 0.65s;
    }

    .nt-hero-service-card {
        animation-duration: 5.5s !important;
    }
}

/* =========================================================
   NAMOKAR CLEAN PREMIUM FOOTER FINAL
   ========================================================= */

.nt-clean-footer {
    position: relative;
    padding: 90px 0 30px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 10%, rgba(255, 159, 26, 0.12), transparent 32%), radial-gradient(circle at 90% 20%, rgba(6, 182, 212, 0.10), transparent 34%), linear-gradient(135deg, #07111f 0%, #0b1628 55%, #111827 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

    .nt-clean-footer .container {
        width: min(1500px, calc(100% - 70px));
        max-width: 1500px;
    }

.nt-clean-footer-top {
    padding: 34px;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: radial-gradient(circle at 90% 10%, rgba(255, 159, 26, 0.20), transparent 35%), linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.nt-clean-footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--nt-gold, #ffb347);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.84rem;
}

.nt-clean-footer-top h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -1.7px;
    font-weight: 950;
}

.nt-clean-footer-top p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.75;
}

.nt-clean-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.nt-clean-footer-main {
    margin-top: 34px;
    padding: 34px;
    border-radius: 34px;
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 1fr 1.15fr;
    gap: 44px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.nt-clean-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 22px;
}

    .nt-clean-footer-logo img {
        width: 240px;
        height: auto;
        display: block;
        filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.30)) drop-shadow(0 0 18px rgba(255, 159, 26, 0.14));
    }

.nt-clean-footer-brand p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.8;
    font-weight: 650;
}

.nt-clean-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

    .nt-clean-footer-social a {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.09);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: 0.25s ease;
    }

        .nt-clean-footer-social a:hover {
            color: #07111f;
            transform: translateY(-5px);
            background: linear-gradient(135deg, var(--nt-gold, #ffb347), var(--nt-orange, #ff8a2a));
        }

.nt-clean-footer-col h3,
.nt-clean-footer-contact h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 950;
}

.nt-clean-footer-col {
    display: flex;
    flex-direction: column;
}

    .nt-clean-footer-col a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: rgba(255, 255, 255, 0.68);
        font-weight: 850;
        text-decoration: none;
        transition: 0.22s ease;
    }

        .nt-clean-footer-col a i {
            color: var(--nt-gold, #ffb347);
            font-size: 0.85rem;
        }

        .nt-clean-footer-col a:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

.nt-clean-footer-contact {
    display: grid;
    gap: 14px;
}

.nt-clean-contact-box {
    padding: 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

    .nt-clean-contact-box > i {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        color: #07111f;
        font-size: 1.25rem;
        background: linear-gradient(135deg, var(--nt-gold, #ffb347), var(--nt-orange, #ff8a2a));
    }

    .nt-clean-contact-box span {
        display: block;
        margin-bottom: 3px;
        color: rgba(255, 255, 255, 0.56);
        font-size: 0.82rem;
        font-weight: 850;
    }

    .nt-clean-contact-box strong {
        display: block;
        color: #ffffff;
        font-weight: 950;
        word-break: break-word;
    }

.nt-clean-footer-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

    .nt-clean-footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.58);
        font-weight: 700;
    }

    .nt-clean-footer-bottom div {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nt-clean-footer-bottom a {
        color: rgba(255, 255, 255, 0.62);
        font-weight: 850;
        text-decoration: none;
    }

        .nt-clean-footer-bottom a:hover {
            color: var(--nt-gold, #ffb347);
        }

/* Floating buttons footer overlap fix */
.nt-floating-actions {
    z-index: 20;
}

@media (max-width: 1100px) {
    .nt-clean-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .nt-clean-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .nt-clean-footer-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nt-clean-footer {
        padding: 70px 0 26px;
    }

        .nt-clean-footer .container {
            width: calc(100% - 28px);
        }

    .nt-clean-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
        border-radius: 28px;
    }

    .nt-clean-footer-top {
        padding: 24px;
        border-radius: 28px;
    }

    .nt-clean-footer-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

        .nt-clean-footer-actions .nt-btn {
            width: 100%;
        }

    .nt-clean-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .nt-clean-footer-logo img {
        width: 195px;
    }

    .nt-clean-contact-box {
        align-items: flex-start;
    }
}

/* =========================================================
   Hero Card More Right Shift
   ========================================================= */

.nt-minimal-hero > .container {
    width: min(1540px, calc(100% - 64px)) !important;
    max-width: 1540px !important;
}

.nt-hero-service-visual {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.nt-hero-service-card {
    margin-left: auto !important;
    margin-right: -42px !important;
}

    /* Floating animation disturb hou naye */
    .nt-hero-service-card:hover {
        margin-right: -42px !important;
    }

@media (max-width: 1400px) {
    .nt-hero-service-card {
        margin-right: -18px !important;
    }

        .nt-hero-service-card:hover {
            margin-right: -18px !important;
        }
}

@media (max-width: 1200px) {
    .nt-hero-service-card {
        margin-right: 0 !important;
    }
}

@media (max-width: 991px) {
    .nt-minimal-hero > .container {
        width: calc(100% - 28px) !important;
    }

    .nt-hero-service-card,
    .nt-hero-service-card:hover {
        margin-right: 0 !important;
    }
}


