/* ==========================================================================
   NEXT LEVEL IT SERVICE - MASTER ENHANCEMENT STYLESHEET
   Fixes:
   1. Oversized Buttons -> Proportionate modern padding, refined border radius, clean hover
   2. Lack of Paddings & Uneven Margins -> Uniform section spacing (nl-section: 70px desktop, 48px mobile)
   3. Wrong Width Management -> Standard max-width container (1240px) & viewport reset
   4. Uneven Cards -> Flexbox stretch across carousel, solutions, services, testimonials, partners
   5. Oversized Fonts & Conflicting Headings -> Fluid clamp typography, consistent hierarchy
   ========================================================================== */

:root {
    --nl-primary: #1a3a5c;
    --nl-primary-dark: #0f243a;
    --nl-accent: #0077cc;
    --nl-accent-hover: #005fa3;
    --nl-orange: #f47c20;
    --nl-orange-hover: #dc6a13;
    --nl-green: #25d366;
    --nl-green-hover: #1eb857;
    --nl-dark: #0d1b2a;
    --nl-dark-card: rgba(255, 255, 255, 0.05);
    --nl-dark-border: rgba(255, 255, 255, 0.1);
    --nl-gray-bg: #f8fafc;
    --nl-gray-border: #e2e8f0;
    --nl-text-main: #1e293b;
    --nl-text-muted: #64748b;
    --nl-radius-sm: 6px;
    --nl-radius-md: 8px;
    --nl-radius-lg: 12px;
    --nl-radius-xl: 18px;
    --nl-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --nl-shadow-md: 0 6px 20px rgba(0, 0, 0, 0.07);
    --nl-shadow-lg: 0 12px 32px rgba(0, 119, 204, 0.14);
}

/* --------------------------------------------------------------------------
   GLOBAL RESET & CONTAINER WIDTH MANAGEMENT
   -------------------------------------------------------------------------- */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--nl-text-main);
    -webkit-font-smoothing: antialiased;
}

/* Ensure standard container width across all sections */
.container {
    width: 100% !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}
@media (min-width: 576px) { .container { max-width: 540px !important; } }
@media (min-width: 768px) { .container { max-width: 720px !important; } }
@media (min-width: 992px) { .container { max-width: 960px !important; } }
@media (min-width: 1200px) { .container { max-width: 1240px !important; } }
@media (min-width: 1440px) { .container { max-width: 1280px !important; } }

/* Remove legacy restrictive about-width */
.about-width {
    max-width: 100% !important;
}

/* Uniform Section Spacing */
.nl-section {
    padding: 70px 0;
    position: relative;
}
.nl-section-sm {
    padding: 48px 0;
}
.nl-section-lg {
    padding: 85px 0;
}
@media (max-width: 768px) {
    .nl-section {
        padding: 48px 0;
    }
    .nl-section-lg {
        padding: 56px 0;
    }
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY SCALE & HEADING HIERARCHY
   -------------------------------------------------------------------------- */
.nl-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--nl-orange);
    margin-bottom: 8px;
    display: inline-block;
}
.nl-eyebrow-accent {
    color: #0284c7;
}
.nl-section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #0f172a;
    letter-spacing: -0.3px;
}
.nl-section-title.text-white {
    color: #ffffff !important;
}
.nl-lead {
    font-size: 1.02rem;
    line-height: 1.68;
    color: var(--nl-text-muted);
    margin-bottom: 22px;
}
.nl-lead.text-white {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* Reset excessive display-4 size */
.display-4 {
    font-size: clamp(2.1rem, 4.4vw, 3.1rem) !important;
    line-height: 1.18 !important;
}

/* --------------------------------------------------------------------------
   STANDARDIZED BUTTON SYSTEM (Fix Oversized & Bulky Buttons)
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    padding: 10px 22px !important;
    border-radius: var(--nl-radius-md) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: 1.5px solid transparent !important;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #0077cc 0%, #005fa3 100%) !important;
    border-color: #0077cc !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 119, 204, 0.25) !important;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #005fa3 0%, #004b82 100%) !important;
    box-shadow: 0 6px 20px rgba(0, 119, 204, 0.38) !important;
    color: #ffffff !important;
}

/* Carrot / Orange Button */
.btn-carrot {
    background: linear-gradient(135deg, #f47c20 0%, #dc6a13 100%) !important;
    border-color: #f47c20 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(244, 124, 32, 0.28) !important;
}
.btn-carrot:hover {
    background: linear-gradient(135deg, #e06810 0%, #c45705 100%) !important;
    box-shadow: 0 6px 20px rgba(244, 124, 32, 0.42) !important;
    color: #ffffff !important;
}

/* Outline Light Button */
.btn-outline-light {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--nl-primary) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

/* Normalise btn-lg and btn-round */
.btn-lg {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    border-radius: var(--nl-radius-md) !important;
}
.btn-round {
    border-radius: 26px !important;
}
.btn-sm {
    padding: 6px 16px !important;
    font-size: 0.84rem !important;
    border-radius: 6px !important;
}

/* Hero Button Container */
.nl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .nl-hero-actions {
        justify-content: center;
    }
    .nl-hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* --------------------------------------------------------------------------
   HERO BANNER (Unified & Responsive)
   -------------------------------------------------------------------------- */
.nl-hero-wrap {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(5, 18, 35, 0.96) 0%, rgba(5, 18, 35, 0.88) 48%, rgba(5, 18, 35, 0.45) 78%, rgba(5, 18, 35, 0.2) 100%), url('../images/nextlevel/hero-banner.jpg') no-repeat center right / cover;
    padding: 110px 0 85px;
}
@media (max-width: 991px) {
    .nl-hero-wrap {
        min-height: 460px;
        padding: 95px 0 60px;
        background: linear-gradient(to bottom, rgba(5, 18, 35, 0.96) 0%, rgba(5, 18, 35, 0.90) 100%), url('../images/nextlevel/hero-banner.jpg') no-repeat center / cover;
        text-align: center;
    }
}
.nl-hero-title {
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}

/* --------------------------------------------------------------------------
   CARD EQUALIZATION (Fix Uneven Cards across all sections)
   -------------------------------------------------------------------------- */

/* 1. Owl Carousel Cards (What We Deliver) */
.carousel-component-inner .owl-stage {
    display: flex !important;
}
.carousel-component-inner .owl-item {
    display: flex !important;
    flex: 1 0 auto;
}
.carousel-component-inner .carousel-component-item {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.service-home-sec {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 380px !important;
    background: #ffffff;
    border-radius: var(--nl-radius-lg);
    padding: 26px 22px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #edf2f7;
}
.service-home-sec:hover {
    transform: translateY(-5px);
    box-shadow: var(--nl-shadow-lg);
    border-color: #bee3f8;
}
.service-home-sec h4 {
    font-size: 1.22rem !important;
    font-weight: 700;
    color: var(--nl-primary);
    line-height: 1.3;
    margin-bottom: 12px;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.service-home-sec p {
    flex-grow: 1 !important;
    height: auto !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin-bottom: 16px !important;
    margin-top: 12px !important;
}
.service-home-sec .service-links {
    margin-top: auto !important;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--nl-accent);
    font-size: 0.92rem;
}
.service-home-sec .service-links i {
    margin-left: 6px;
    transition: transform 0.2s;
}
.service-home-sec .service-links:hover i {
    transform: translateX(4px);
}

/* 2. Innovative Technology Services (8 Core Solutions) */
.nl-sol-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--nl-radius-lg);
    padding: 28px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.25s ease;
}
.nl-sol-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #0077cc;
    box-shadow: 0 12px 30px rgba(0, 119, 204, 0.25);
}
.nl-sol-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.25) 0%, rgba(37, 211, 102, 0.15) 100%);
    border: 1px solid rgba(0, 119, 204, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #38bdf8;
}
.nl-sol-card h4 {
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nl-sol-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 0;
    flex-grow: 1;
}

/* 3. Product Deep Dive Cards (Cloud POS & WiFi Marketing) */
.nl-card-col {
    display: flex;
}
.nl-service-card {
    border-radius: var(--nl-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.nl-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nl-shadow-lg);
    border-color: #93c5fd;
}
.nl-service-card-body {
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.nl-service-card-body h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--nl-primary);
    margin-bottom: 10px;
}
.nl-service-card-body p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 16px;
}
.nl-service-card-body .nl-feature-list {
    flex-grow: 1;
}
.nl-service-card-body a {
    margin-top: auto;
    font-weight: 600;
    color: var(--nl-accent);
    display: inline-flex;
    align-items: center;
}
.nl-service-card-body a i {
    margin-left: 6px;
}

/* 4. Testimonials Cards */
.nl-testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--nl-radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}
.nl-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #93c5fd;
    box-shadow: var(--nl-shadow-md);
}
.nl-testimonial-stars {
    color: var(--nl-orange);
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.nl-testimonial-card p {
    font-style: italic;
    color: #334155;
    line-height: 1.65;
    font-size: 0.93rem;
    flex-grow: 1;
    margin-bottom: 18px;
}
.nl-testimonial-author {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 14px;
}
.nl-testimonial-name {
    font-weight: 700;
    color: var(--nl-primary);
    font-size: 0.98rem;
}
.nl-testimonial-role {
    font-size: 0.82rem;
    color: var(--nl-text-muted);
}

/* 5. Strategic Partners Cards */
.nl-partner-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--nl-radius-md);
    padding: 22px 14px 18px;
    width: 100% !important;
    height: 100% !important;
    min-height: 195px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box !important;
}
.nl-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 119, 204, 0.12);
    border-color: #93c5fd;
}
.nl-partner-logo-wrap {
    height: 56px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
}
.nl-partner-logo-img {
    max-height: 42px !important;
    max-width: 125px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.25s ease;
}
.nl-partner-card:hover .nl-partner-logo-img {
    transform: scale(1.05);
}
.nl-partner-name {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 8px !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.3 !important;
    width: 100% !important;
}
.nl-partner-badge {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #0284c7 !important;
    background: #e0f2fe !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 26px !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-top: auto !important;
    box-sizing: border-box !important;
}
@media (max-width: 576px) {
    .nl-partner-card {
        padding: 16px 8px 14px;
        min-height: 175px !important;
    }
    .nl-partner-logo-wrap {
        height: 46px !important;
    }
    .nl-partner-logo-img {
        max-height: 36px !important;
        max-width: 105px !important;
    }
    .nl-partner-name {
        font-size: 12px !important;
        min-height: 32px !important;
    }
    .nl-partner-badge {
        font-size: 9.5px !important;
        padding: 3px 8px !important;
        min-height: 22px !important;
    }
}

/* 6. Industries We Serve Tiles */
.nl-industry-tile {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.nl-industry-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 119, 204, 0.12);
    border-color: #93c5fd;
}
.nl-industry-tile img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 10px;
}
.nl-industry-tile span {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
}

/* --------------------------------------------------------------------------
   WHATSAPP FLOAT & BOOKING BUTTONS
   -------------------------------------------------------------------------- */
.nl-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25d366;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nl-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}
.nl-whatsapp-float i {
    color: #fff;
    font-size: 26px;
}
.nl-country-flag {
    height: 16px;
    width: auto;
    vertical-align: middle;
    margin-left: 6px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.22);
}
.nl-book-btn {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 10px 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    font-size: 13.5px !important;
}
.nl-book-btn:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4) !important;
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   NAVBAR CTA BUTTON & STATS BAR
   -------------------------------------------------------------------------- */
.navik-menu > ul > li > a.btn,
.navik-header .btn {
    height: auto !important;
    line-height: 1.4 !important;
    padding: 8px 18px !important;
    margin-top: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    border-radius: 20px !important;
    font-size: 0.86rem !important;
    box-shadow: 0 4px 14px rgba(244, 124, 32, 0.35) !important;
}
@media (max-width: 991px) {
    .navik-menu > ul > li > a.btn,
    .navik-header .btn {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}

.nl-stats-bar {
    background: linear-gradient(135deg, #1a3a5c 0%, #0077cc 100%) !important;
    padding: 8px 0;
}
.nl-stat-item {
    text-align: center;
    padding: 22px 10px;
}
.nl-stat-item .nl-stat-num {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.1;
}
.nl-stat-item .nl-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-top: 6px;
    font-weight: 500;
}

.nl-product-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.nl-feature-list li {
    padding: 5px 0;
    font-size: 0.94rem;
    color: #475569;
}
.nl-feature-list.text-white-75 li {
    color: rgba(255, 255, 255, 0.8) !important;
}
.nl-feature-list li i {
    margin-right: 10px;
}

/* --------------------------------------------------------------------------
   CTA ACTION BUTTONS (Fix 3 Buttons Alignment & Wrapping)
   -------------------------------------------------------------------------- */
.nl-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}
.nl-cta-actions .nl-cta-btn {
    white-space: nowrap !important;
    font-size: 0.88rem !important;
    padding: 11px 20px !important;
    flex-shrink: 0;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
@media (max-width: 1200px) and (min-width: 992px) {
    .nl-cta-actions {
        gap: 8px;
    }
    .nl-cta-actions .nl-cta-btn {
        font-size: 0.82rem !important;
        padding: 10px 14px !important;
    }
}
@media (max-width: 991px) {
    .nl-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .nl-cta-actions .nl-cta-btn {
        width: 100% !important;
        text-align: center;
        padding: 12px 20px !important;
        font-size: 0.94rem !important;
    }
}

/* --------------------------------------------------------------------------
   FOOTER PRESENTATION & TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
.nl-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.05fr 1fr 1.15fr;
    gap: 28px;
    padding: 55px 0 40px;
    align-items: start;
}
@media (max-width: 1199px) and (min-width: 768px) {
    .nl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }
    .nl-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 767px) {
    .nl-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 25px;
    }
}
.nl-footer-widget-title {
    font-size: 0.92rem !important;
    font-weight: 750 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
}
.nl-footer-badge {
    font-size: 10.5px !important;
    font-weight: 600 !important;
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 4px !important;
    padding: 2px 8px !important;
    margin-bottom: 10px !important;
    display: inline-block !important;
}
.nl-foot-address {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin-bottom: 8px !important;
}
.nl-foot-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    font-size: 13px !important;
    line-height: 1.5 !important;
}
.nl-foot-contact i {
    width: 15px;
    text-align: center;
    flex-shrink: 0;
    font-size: 13px;
}
.nl-footer-phone {
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #0f172a !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.nl-footer-phone:hover {
    color: #0077cc !important;
    text-decoration: underline !important;
}
.nl-footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.nl-footer-links li {
    font-size: 13px !important;
    line-height: 1.8 !important;
    color: #475569 !important;
}
.nl-footer-links li a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}
.nl-footer-links li a:hover {
    color: #0077cc;
    text-decoration: underline;
}



/* Keep rotating hero copy readable against the dark banner. */
.nl-hero-wrap #text1, .nl-hero-wrap #text2 { color: #dbeafe !important; }
