/* ========================================
   NEXAR THEME — Global Theme Definitions
   CSS Variables, Reset, Fonts, Header,
   Banner/Slider, Section Padding, Footer

   Single source of truth for site-wide
   padding and typography. Change :root
   variables to update the entire site.
   ======================================== */

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Noto Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6,
p, a, span, li, button, input, textarea, select {
    font-family: 'Noto Sans', sans-serif;
}


/* === Global Padding Variables ===
   --pad-header:           header left/right
   --pad-banner:           banner/hero left padding
   --pad-section:          section left/right
   --pad-section-vertical: section top/bottom
   --pad-footer:           footer left/right
   ================================ */

:root {
    --pad-header: 100px;
    --pad-banner: 120px;
    --pad-section: 150px;
    --pad-section-vertical: 50px;
    --pad-footer: 150px;
}

@media screen and (min-width: 1920px) {
    :root {
        --pad-header: 100px;
        --pad-banner: 120px;
        --pad-section: 200px;
        --pad-section-vertical: 50px;
        --pad-footer: 200px;
    }
}

@media screen and (max-width: 1439px) {
    :root {
        --pad-header: 40px;
        --pad-banner: 110px;
        --pad-section: 130px;
        --pad-section-vertical: 50px;
        --pad-footer: 130px;
    }
}

@media screen and (max-width: 1200px) {
    :root {
        --pad-header: 60px;
        --pad-banner: 80px;
        --pad-section: 80px;
        --pad-section-vertical: 50px;
        --pad-footer: 80px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --pad-header: 24px;
        --pad-banner: 24px;
        --pad-section: 24px;
        --pad-section-vertical: 50px;
        --pad-footer: 24px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --pad-header: 16px;
        --pad-banner: 16px;
        --pad-section: 16px;
        --pad-section-vertical: 50px;
        --pad-footer: 16px;
    }
}


h1, h2, h3, h4, h5, h6, p, a, span, li, button, input, textarea, select {
    font-family: 'Noto Sans', sans-serif;
}


/* === Global Font Size System ===
   1920+: H1-92 H2-72 H3-56 H4-32 H5-24 H6-20 P-20
   1440:  H1-64 H2-46 H3-32 H4-24 H5-20 H6-18 P-16
   1280:  H1-56 H2-36 H3-28 H4-24 H5-20 H6-16 P-14
   Mob:   H1-36 H2-28 H3-24 H4-20 H5-18 H6-16 P-14
   ================================================== */

/* 1920px and above */
.nexar-main h1, .fs-h1 { font-size: 92px !important; }
.nexar-main h2, .fs-h2 { font-size: 72px !important; }
.nexar-main h3, .fs-h3 { font-size: 56px !important; font-weight: 500 !important; }
.nexar-main h4, .fs-h4 { font-size: 32px !important; }
.nexar-main h5, .fs-h5 { font-size: 24px !important; }
.nexar-main h6, .fs-h6 { font-size: 20px !important; }
.nexar-main p,  .fs-p   { font-size: 20px !important; }

/* 1440px — 1919px */
@media screen and (max-width: 1919px) {
    .nexar-main h1, .fs-h1 { font-size: 64px !important; }
    .nexar-main h2, .fs-h2 { font-size: 46px !important; }
    .nexar-main h3, .fs-h3 { font-size: 32px !important; }
    .nexar-main h4, .fs-h4 { font-size: 24px !important; }
    .nexar-main h5, .fs-h5 { font-size: 20px !important; }
    .nexar-main h6, .fs-h6 { font-size: 18px !important; }
    .nexar-main p,  .fs-p   { font-size: 16px !important; }
}

/* 1280px — 1439px */
@media screen and (max-width: 1439px) {
    .nexar-main h1, .fs-h1 { font-size: 56px !important; }
    .nexar-main h2, .fs-h2 { font-size: 36px !important; }
    .nexar-main h3, .fs-h3 { font-size: 28px !important; }
    .nexar-main h4, .fs-h4 { font-size: 24px !important; }
    .nexar-main h5, .fs-h5 { font-size: 20px !important; }
    .nexar-main h6, .fs-h6 { font-size: 16px !important; }
    .nexar-main p,  .fs-p   { font-size: 14px !important; }
}

/* Mobile — 768px and below */
@media screen and (max-width: 768px) {
    .nexar-main h1, .fs-h1 { font-size: 36px !important; }
    .nexar-main h2, .fs-h2 { font-size: 28px !important; }
    .nexar-main h3, .fs-h3 { font-size: 24px !important; }
    .nexar-main h4, .fs-h4 { font-size: 20px !important; }
    .nexar-main h5, .fs-h5 { font-size: 18px !important; }
    .nexar-main h6, .fs-h6 { font-size: 16px !important; }
    .nexar-main p,  .fs-p   { font-size: 14px !important; }
}


/* === WP Block Resets === */

/* Remove WP block gap/margins */
.nexar-main,
.nexar-front-page {
    margin: 0 !important;
    padding: 0 !important;
}

.nexar-main > *,
.nexar-front-page > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.nexar-gradient-line,
.nexar-footer {
    margin: 0 !important;
    margin-block-start: 0 !important;
}


/* === Global Padding Rules ===
   Banner sections get left padding only.
   Content sections get left + right padding.
   =========================================== */

/* Banner sections — left padding only (full-width backgrounds) */
.banner-section,
.pad-banner {
    padding-left: var(--pad-banner);
}

/* Banner sections — full viewport height on laptop/desktop (≥1024px) */
@media screen and (min-width: 1024px) {
    .banner-section {
        height: 100vh;
    }
}

/* Content sections — all padding */
.nexar-main section:not(.banner-section):not(.nexar-slider):not(.nexar-casestudies):not(.nexar-insd-hero),
.pad-section {
    padding-left: var(--pad-section);
    padding-right: var(--pad-section);
    padding-top: var(--pad-section-vertical);
    padding-bottom: var(--pad-section-vertical);
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* === Header / Navigation === */

.nexar-header-wrap {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgb(12 12 12 / 0%);
    transition: background 0.3s ease;
}

/* No top padding — hero extends behind fixed header */
.wp-site-blocks {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

.nexar-header-wrap > .nexar-header-bar {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Main header container */
.nexar-hdr {
    position: relative;
    display: flex;
    align-items: end;
    width: 100%;
    padding: 46px var(--pad-header);
    background: rgb(12 12 12 / 0%);
    -webkit-backdrop-filter: blur(16px);
    min-height: 64px;
    box-sizing: border-box;
    transition: background 0.3s ease, padding 0.3s ease;
}

/* Scrolled state — solid dark background */
.nexar-header-scrolled,
body.error404 .nexar-header-wrap {
    background: #150089 !important;
    transition: background 0.3s ease;
}

.nexar-header-scrolled .nexar-hdr,
body.error404 .nexar-hdr {
    background: transparent;
    box-shadow: none;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
}

.nexar-hdr {
    transition: background 0.3s ease, padding 0.3s ease;
}

/* --- Logo (left) --- */
.nexar-hdr__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nexar-hdr__logo img {
    width: 169px;
    height: 66px;
    display: block;
    object-fit: contain;
}

/* --- Nav container: 1042px x 56px desktop --- */
.nexar-hdr__nav {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding-right: 42px;
    padding-left: 10px;
    width: 1042px;
    height: 56px;
    flex-shrink: 0;
}

/* Home icon — rounded square like Figma */
.nexar-hdr__home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.25s;
}

.nexar-hdr__home:hover,
.nexar-hdr__home.is-active {
    background: #FFFFFF26;
}
.nexar-hdr__home.is-active img,
.nexar-hdr__home:hover img {
    opacity: 1;
}

.nexar-hdr__home img {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

/* Nav links — 20px font */
.nexar-hdr__nav a:not(.nexar-hdr__home) {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding: 0 24px;
    border-radius: 0;
    transition: color 0.2s, background 0.25s;
    white-space: nowrap;
    line-height: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
}

.nexar-hdr__nav a:not(.nexar-hdr__home):hover,
.nexar-hdr__nav a:not(.nexar-hdr__home).is-active,
.nexar-hdr__dropdown-toggle.is-active {
    color: #ffffff;
    background: #FFFFFF26;
}

/* --- Dropdown Menu --- */
.nexar-hdr__dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nexar-hdr__dropdown-toggle {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding: 0 24px;
    transition: color 0.2s, background 0.25s;
    white-space: nowrap;
    line-height: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.nexar-hdr__dropdown-arrow {
    margin-left: 6px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    /* Nudge down to sit at the optical center of the nav text */
    transform: translateY(2px);
}

.nexar-hdr__dropdown:hover .nexar-hdr__dropdown-arrow {
    transform: translateY(2px) rotate(180deg);
}

.nexar-hdr__dropdown-toggle:hover {
    color: #ffffff;
    background: #FFFFFF26;
}

.nexar-hdr__dropdown-menu {
    position: absolute;
    top: 50px !important;
    left: 0;
    background: #150089;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1002;
    pointer-events: none;
    min-width: 240px;
    padding: 0;
}

/* Bridge gap between toggle and dropdown so hover doesn't break */
.nexar-hdr__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.nexar-header-scrolled .nexar-hdr__dropdown-menu {
    top: 50px !important;
}

.nexar-hdr__dropdown:hover .nexar-hdr__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nexar-hdr__dropdown-item {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.nexar-hdr__dropdown-item:hover,
.nexar-hdr__dropdown-item.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Mobile Submenu --- */
.nexar-mobile-menu__group {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nexar-mobile-menu__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: none;
}

.nexar-mobile-menu__parent-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    flex: 1;
    border-bottom: none !important;
    padding: 0 !important;
}

.nexar-mobile-menu__parent-text:hover {
    color: #fff;
}

.nexar-mobile-menu__toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0 8px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.nexar-mobile-menu__toggle:hover {
    color: #fff;
}

.nexar-mobile-menu__toggle svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nexar-mobile-menu__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.nexar-mobile-menu__parent-link {
    display: none;
}

.nexar-mobile-menu__submenu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    padding-bottom: 10px;
}

.nexar-mobile-menu__submenu[aria-hidden="false"] {
    display: flex;
}

.nexar-mobile-menu__submenu a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px !important;
    font-weight: 400 !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    text-decoration: none;
}

.nexar-mobile-menu__submenu a:last-child {
    border-bottom: none !important;
}

.nexar-mobile-menu__submenu a:hover {
    color: #fff !important;
}

/* --- CTA Button --- */
.nexar-hdr__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    margin-left: 30px;
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    color: #FFFFFF !important;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    transition: all 0.3s;
    flex-shrink: 0;
    cursor: pointer;
}

.nexar-hdr__cta:hover {
    background: linear-gradient(90deg, #17b86e 0%, #2d82e6 100%);
    box-shadow: 0 4px 18px rgba(54, 153, 253, 0.35);
    transform: translateY(-1px);
    color: #fff !important;
}

/* Force header full width — override ALL WP block layout constraints */
header.nexar-header-wrap,
header.nexar-header-wrap.wp-block-template-part,
header.nexar-header-wrap > .nexar-header-bar,
header.nexar-header-wrap > .nexar-header-bar.is-layout-flex,
header.nexar-header-wrap .nexar-hdr {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

header.nexar-header-wrap {
    padding: 0 !important;
    margin: 0 !important;
}

header.nexar-header-wrap > .nexar-header-bar {
    padding: 0 !important;
}

.wp-site-blocks > header {
    padding: 0 !important;
    margin: 0 !important;
    margin-block-start: 0 !important;
}

/* Admin bar offset */
.admin-bar .nexar-header-wrap {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .nexar-header-wrap {
        top: 46px;
    }
}

/* === Hamburger Button — hidden on desktop === */
.nexar-hdr__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    justify-self: end;
    z-index: 1010;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
}

.nexar-hdr__hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation when open */
.nexar-hdr__hamburger.is-active .nexar-hdr__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nexar-hdr__hamburger.is-active .nexar-hdr__hamburger-line:nth-child(2) {
    opacity: 0;
}
.nexar-hdr__hamburger.is-active .nexar-hdr__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === Mobile Dropdown Menu — hidden by default === */
.nexar-mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #150089;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 16px 24px 24px;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.nexar-mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nexar-mobile-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.nexar-mobile-menu a:last-child {
    border-bottom: none;
}

.nexar-mobile-menu a:hover {
    color: #fff;
}

.nexar-mobile-menu__cta {
    margin-top: 12px;
    background: linear-gradient(90deg, #1CD47F 0%, #3699FD 100%);
    color: #fff !important;
    font-weight: 600 !important;
    text-align: center;
    padding: 14px 24px !important;
    border: none !important;
    cursor: pointer;
}

/* === Elementor wrapper overrides — strip all padding/margin === */
.nexar-header-wrap,
.nexar-header-wrap.elementor-section {
    overflow: visible !important;
}

.nexar-header-wrap .elementor-container,
.nexar-header-wrap .elementor-column,
.nexar-header-wrap .elementor-widget-wrap,
.nexar-header-wrap .elementor-widget,
.nexar-header-wrap .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.nexar-header-wrap .elementor-column-gap-no > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
    overflow: visible !important;
}

/* Body scroll lock when mobile menu is open */
body.nexar-menu-open {
    overflow: hidden;
}


/* === Hero Slider === */

.nexar-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 50px;
}

@media screen and (max-width: 1439px) {
    .nexar-slider { margin-bottom: 40px; }
}
@media screen and (max-width: 1024px) {
    .nexar-slider { margin-bottom: 30px; }
}
/* ============================================================
   MOBILE HAMBURGER + FULL-SCREEN MENU OVERLAY
   ============================================================ */
@media screen and (max-width: 768px) {
    /* Hamburger button — top-right, 3 lines that morph to X */
    .nexar-hdr__hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10000;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        padding: 0;
        gap: 0;
    }
    .nexar-hdr__hamburger-line {
        display: block;
        width: 100%;
        height: 2.5px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s cubic-bezier(0.4,0,0.2,1);
        transform-origin: center center;
    }
    .nexar-hdr__hamburger.is-active .nexar-hdr__hamburger-line {
        background: #fff;
    }
    .nexar-hdr__hamburger.is-active .nexar-hdr__hamburger-line:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }
    .nexar-hdr__hamburger.is-active .nexar-hdr__hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nexar-hdr__hamburger.is-active .nexar-hdr__hamburger-line:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }

    /* Full-screen overlay menu — left-aligned, accordion submenus */
    .nexar-mobile-menu {
        position: fixed !important;
        inset: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #150089 !important;
        z-index: 9999 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none !important;
        transition: opacity 0.35s ease, visibility 0.35s ease !important;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px 32px 32px;
        gap: 0;
        overflow-y: auto;
        border-top: none !important;
        box-shadow: none !important;
    }
    /* Logo at top of mobile menu */
    .nexar-mobile-menu__logo {
        display: block;
        padding: 4px 0 24px !important;
        margin-bottom: 8px;
        border: none !important;
    }
    .nexar-mobile-menu__logo img {
        height: 36px;
        width: auto;
        display: block;
    }
    .nexar-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    /* Top-level rows */
    .nexar-mobile-menu > a,
    .nexar-mobile-menu__group {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    }
    .nexar-mobile-menu > a {
        font-size: 18px !important;
        font-weight: 500 !important;
        color: #fff !important;
        text-align: left !important;
        /* padding: 0 18px 18px 4px !important; */
        text-decoration: none;
    }
    .nexar-mobile-menu > a:hover {
        color: #1CD47F !important;
    }
    /* Group with submenu: parent text + caret toggle in a row */
    .nexar-mobile-menu__toggle-row {
        display: flex;
        align-items: center;
        justify-content: space-between !important;
        /* padding: 0 0 18px 4px; */
        gap: 12px;
    }
    .nexar-mobile-menu__parent-text {
        font-size: 18px !important;
        font-weight: 500 !important;
        color: #fff !important;
        text-align: left !important;
        padding: 0 !important;
        text-decoration: none;
        flex: 1;
        border: none !important;
    }
    .nexar-mobile-menu__parent-text:hover { color: #1CD47F !important; }
    .nexar-mobile-menu__toggle,
    .nexar-mobile-menu__toggle:hover,
    .nexar-mobile-menu__toggle:focus,
    .nexar-mobile-menu__toggle:focus-visible,
    .nexar-mobile-menu__toggle:active {
        width: 32px;
        height: 32px;
        border-radius: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        color: rgba(255,255,255,0.7);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        cursor: pointer;
        flex-shrink: 0;
        padding: 0 !important;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.2s;
    }
    .nexar-mobile-menu__toggle:hover { color: #fff; }
    .nexar-mobile-menu__toggle svg {
        transition: transform 0.3s ease;
    }
    .nexar-mobile-menu__toggle[aria-expanded="true"] svg {
        transform: rotate(180deg);
    }
    /* Accordion submenu — collapsed by default, expands when [aria-hidden="false"] */
    .nexar-mobile-menu__submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0 0 0 16px;
    }
    .nexar-mobile-menu__submenu[aria-hidden="false"] {
        max-height: 600px;
        padding: 4px 0 16px 16px;
    }
    .nexar-mobile-menu__submenu a {
        display: block;
        color: rgba(255,255,255,0.78) !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        padding: 10px 0 !important;
        text-align: left !important;
        text-decoration: none;
        border: none !important;
    }
    .nexar-mobile-menu__submenu a:hover {
        color: #1CD47F !important;
    }
    /* CTA at the bottom */
    .nexar-mobile-menu__cta {
        margin-top: 28px;
        font-size: 16px !important;
        align-self: stretch;
        text-align: center;
    }
    /* Lock body scroll while menu is open (added by JS as nexar-menu-open) */
    body.nexar-menu-open { overflow: hidden; }
}

/* Mobile + Tablet — align logo level with the close (X) button */
@media screen and (max-width: 768px) {
    .nexar-mobile-menu {
        padding-top: 12px !important;
    }
    .nexar-mobile-menu__logo {
        padding: 0 0 16px !important;
        margin-bottom: 4px !important;
        display: flex;
        align-items: center;
        min-height: 40px;
    }
    .nexar-mobile-menu__logo img {
        height: 32px;
    }
}

@media screen and (max-width: 768px) {
    .nexar-slider { height: 70vh; min-height: 480px; margin-bottom: 24px; }
    .nexar-slider__pag { display: none !important; }

    /* Hero content — full-width on mobile; title/button centered, subtitle left */
    .nexar-slider__content {
        padding: 0 20px 40px !important;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .nexar-slider__subtitle {
        text-align: left;
        align-self: stretch;
    }
    .nexar-slider__title {
        text-align: left;
        align-self: stretch;
        width: 100% !important;
        max-width: 100% !important;
    }
    .nexar-slider__btn {
        align-self: flex-start;
    }

    /* Mobile: tighter section vertical spacing */
    .nexar-main section:not(.banner-section):not(.nexar-slider):not(.nexar-casestudies):not(.nexar-insd-hero),
    .pad-section {
        margin-top: 0px !important;
        /* margin-bottom: 0px !important; */
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* Service page hero inner — full width on mobile */
    .nexar-svcpage-hero__inner {
        max-width: 100% !important;
    }
    /* Case Studies hero inner — full width on mobile */
    .nexar-cs-hero__inner {
        max-width: 100% !important;
    }
    /* Insights hero inner — near-full width on mobile */
    .nexar-ins-hero__inner {
        max-width: 98% !important;
    }

    /* Mobile: page banners size to content (no fixed/min height) */
    .banner-section,
    .nexar-about-hero,
    .nexar-svcpage-hero,
    .nexar-svcdetail-hero,
    .nexar-dest-hero,
    .nexar-destdetail-hero,
    .nexar-cs-hero,
    .nexar-csd-hero,
    .nexar-ins-hero,
    .nexar-ins-hero--solid,
    .nexar-insd-hero {
        height: auto !important;
        min-height: 0 !important;
        padding-top: 90px !important;
        padding-bottom: 30px !important;
    }

    /* Hide all decorative animated bar/line groups on mobile */
    .nexar-services__bars,
    .nexar-about-approach__bars,
    .nexar-contactp-visit__bars,
    .nexar-contact__lines,
    .nexar-slider__lines,
    .nexar-about-hero__lines,
    .nexar-about-network__lines,
    .nexar-contactp-hero__lines,
    .nexar-cs-hero__lines,
    .nexar-csd-hero__lines,
    .nexar-dest-hero__lines,
    .nexar-destdetail-hero__lines,
    .nexar-ins-hero__lines,
    .nexar-insd-hero__lines,
    .nexar-svcdetail-hero__lines,
    .nexar-svcpage-hero__lines {
        display: none !important;
    }
}
@media screen and (max-width: 480px) {
    .nexar-slider { height: 60vh; min-height: 420px; margin-bottom: 20px; }
}

.nexar-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.nexar-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: flex-end;
}

.nexar-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.nexar-slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nexar-slider__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 6s ease;
}

.nexar-slider__slide.is-active .nexar-slider__bg img {
    transform: scale(1.05);
}

.nexar-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.nexar-slider__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 48px 140px var(--pad-banner);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.nexar-slider__slide.is-active .nexar-slider__content {
    opacity: 1;
    transform: translateY(0);
}

.nexar-slider__subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(16px, 3vw, 32px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
}

.nexar-slider__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 92px;
    font-weight: 400;
    color: #fff;
    line-height: 1.0;
    margin: 0 0 48px;
    max-width: 55%;
}

/* First hero slide has a longer heading — reduce font-size so it fits 3 lines.
   Uses !important to beat the global .nexar-main h1 sizing rules. */
.nexar-main .nexar-slider__slide[data-index="0"] .nexar-slider__title {
    font-size: 82px !important;
    line-height: 1.05 !important;
}
@media screen and (max-width: 1919px) {
    .nexar-main .nexar-slider__slide[data-index="0"] .nexar-slider__title {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1439px) {
    .nexar-main .nexar-slider__slide[data-index="0"] .nexar-slider__title {
        font-size: 52px !important;
    }
}
@media screen and (max-width: 768px) {
    .nexar-main .nexar-slider__slide[data-index="0"] .nexar-slider__title {
        font-size: 32px !important;
    }
}

.nexar-slider__title strong {
    font-weight: 600;
}

.nexar-slider__btn {
    display: inline-block;
    position: relative;
    padding: 16px 34px;
    border: none;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nexar-slider__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px;
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nexar-slider__btn:hover {
    background: linear-gradient(90deg, #17b86e 0%, #2d82e6 100%);
    box-shadow: 0 4px 18px rgba(54, 153, 253, 0.35);
    transform: translateY(-1px);
    color: #fff;
}

.nexar-slider__btn:hover::before {
    opacity: 0;
}

/* Right-side pagination */
.nexar-slider__pag {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.nexar-slider__pag-current,
.nexar-slider__pag-total {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.nexar-slider__pag-current {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.nexar-slider__pag-total {
    margin-top: 12px;
}

.nexar-slider__pag-track {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.nexar-slider__pag-fill {
    display: block;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.7);
}

@keyframes sliderProgress {
    from { height: 0%; }
    to { height: 100%; }
}

.nexar-slider__pag-fill {
    animation: sliderProgress var(--slider-duration, 5s) linear forwards;
}

.nexar-slider__gradient-line {
    display: none;
}

.nexar-gradient-line {
    display: none;
}


/* === Hero Decorative Lines (entrance animation) === */

@keyframes nexar-line-enter {
    0%   {
        transform: translateX(110vw);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    28%  {
        transform: translateX(0);
        animation-timing-function: linear;
    }
    72%  {
        transform: translateX(0);
        animation-timing-function: cubic-bezier(0.55, 0, 0.45, 1);
    }
    100% { transform: translateX(110vw); }
}

.nexar-slider__line {
    transform: translateX(110vw);
}

.lines-entered .nexar-slider__line--1 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0s;
}
.lines-entered .nexar-slider__line--2 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.12s;
}
.lines-entered .nexar-slider__line--3 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.24s;
}
.lines-entered .nexar-slider__line--4 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.36s;
}

.nexar-slider__lines {
    position: absolute;
    top: 75%;
    right: 0;
    width: 100%;
    height: 90px;
    pointer-events: none;
    z-index: 4;
}

.nexar-slider__line {
    position: absolute;
    right: 0;
    display: block;
    height: auto;
    max-width: 100%;
}

.nexar-slider__line--1 {
    top: 8px;
    right: 50%;
    width: 12%;
    max-width: 240px;
    min-width: 60px;
}

.nexar-slider__line--2 {
    top: 23px;
    width: 50%;
    max-width: 960px;
    min-width: 200px;
}

.nexar-slider__line--3 {
    top: 51px;
    width: 45%;
    max-width: 860px;
    min-width: 180px;
}

.nexar-slider__line--4 {
    top: 74px;
    width: 9%;
    max-width: 200px;
    min-width: 50px;
}

@media (prefers-reduced-motion: reduce) {
    .nexar-slider__line,
    .lines-entered .nexar-slider__line--1,
    .lines-entered .nexar-slider__line--2,
    .lines-entered .nexar-slider__line--3,
    .lines-entered .nexar-slider__line--4 {
        transform: translateX(0) !important;
        animation: none !important;
    }
}


/* === Footer === */

.nexar-footer {
    background: #fff;
    color: #111;
    padding: 0;
    margin: 0 !important;
    overflow: hidden;
    border: none;
}

/* Remove any separator lines injected by WordPress/plugins in footer */
.nexar-footer hr,
.nexar-footer .wp-block-separator,
.nexar-footer [class*="separator"],
.nexar-footer [class*="divider"] {
    display: none !important;
}
.nexar-footer__top,
.nexar-footer__grid {
    border: none !important;
}

.nexar-footer__inner {
    max-width: 100%;
    margin: 0;
    padding: 100px var(--pad-footer) 10px;
}

/* Footer top: logo | newsletter (1.5fr : 3fr). Align to bottom so logo bottom
   lines up with the Subscribe input bottom. */
.nexar-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 0;
    align-items: end;
    padding: 0 0 60px;
}
.nexar-footer__logo {
    display: flex;
    align-items: center;
    grid-column: 1;
    justify-self: start;
}
.nexar-footer__newsletter {
    /* grid-column: 2; */
    /* justify-self: center; */
}

.nexar-footer__logo img {
    height: 100px;
    width: auto;
}

.nexar-footer__tagline {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    background: linear-gradient(to right, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    flex: 1 1 auto;
    text-align: center;
}

/* Footer grid */
.nexar-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 48px 0;
    align-items: start;
}

.nexar-footer__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0 0 24px;
}

.nexar-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nexar-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
}
.nexar-footer__contact-item .nexar-footer__contact-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.nexar-footer__contact-item svg {
    flex-shrink: 0;
    color: #1A1A1A;
}

.nexar-footer__contact-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.nexar-footer__contact-link {
    color: inherit;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    display: block;
}
.nexar-footer__contact-link:hover,
.nexar-footer__contact-link:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

/* Branch location links in footer */
.nexar-footer__branches {
    display: flex;
    flex-wrap: wrap;
}

.nexar-footer__branch-link {
    transition: color 0.3s;
}

.nexar-footer__branch-link:hover {
    color: #150089 !important;
}

.nexar-footer__contact-item--locations {
    align-items: flex-start;
}

.nexar-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nexar-footer__links li {
    margin-bottom: 12px;
}

.nexar-footer__links a {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s;
}

.nexar-footer__links a:hover {
    color: #150089;
}

/* Footer bottom */
.nexar-footer__bottom {
    display: grid;
    grid-template-columns: 1.2fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border: none !important;
    border-top: none !important;
}

/* Newsletter — left-aligned inside its grid column */
.nexar-footer__newsletter {
    margin: 0;
    /* padding: 0; */
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* grid-column: 1; */
    text-align: left;
    max-width: 100%;
}
.nexar-footer__newsletter-heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 12px;
}
.nexar-footer__newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.nexar-footer__newsletter-input {
    flex: 1 1 280px;
    min-width: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    background: #ffffff;
    border: 1px solid #dcdde3;
    border-radius: 0;
    padding: 18px 20px;
    outline: none;
    transition: border-color 0.2s;
}
.nexar-footer__newsletter-input::placeholder { color: #8b8b9a; }
.nexar-footer__newsletter-input:focus { border-color: #3699FD; }

.nexar-footer__newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #3699FD 0%, #1CD47F 100%);
    border: none;
    border-radius: 0;
    padding: 18px 34px;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.25s;
    white-space: nowrap;
}
.nexar-footer__newsletter-btn:hover:not([disabled]) { opacity: 0.92; transform: translateY(-1px); }
.nexar-footer__newsletter-btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.nexar-footer__newsletter-btn svg { flex-shrink: 0; }

/* Inline status — absolutely positioned so it doesn't push the form height.
   Matches the CF7 green/red pill style used elsewhere in the site. */
.nexar-footer__newsletter-msg {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    min-height: 0;
    text-align: left;
    margin-top: 10px;
    pointer-events: none;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    box-sizing: border-box;
}
.nexar-footer__newsletter-msg.is-ok,
.nexar-footer__newsletter-msg.is-error {
    display: flex;
}
.nexar-footer__newsletter-msg.is-ok {
    color: #0f7a3f;
    background: #e6f7ec;
    border-color: transparent;
}
.nexar-footer__newsletter-msg.is-ok::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: #0f7a3f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/12px;
    border-radius: 50%;
}
.nexar-footer__newsletter-msg.is-error {
    color: #b3261e;
    background: #fdecea;
    border-color: #f5c2c0;
}

@media (max-width: 1024px) {
    .nexar-footer__top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .nexar-footer__logo,
    .nexar-footer__newsletter { grid-column: auto; }
    .nexar-footer__newsletter { max-width: 100%; }
}
@media (max-width: 480px) {
    .nexar-footer__newsletter-input,
    .nexar-footer__newsletter-btn { flex: 1 1 100%; justify-content: center; }
}

.nexar-footer__social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nexar-footer__social a {
    color: #1A1A1A;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nexar-footer__social a img,
.nexar-footer__social a svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.nexar-footer__social a svg {
    fill: #1A1A1A;
    transition: fill 0.3s;
}

.nexar-footer__social a:hover {
    color: #38269B;
}

.nexar-footer__social a:hover svg {
    fill: #38269B;
}

.nexar-footer__social-link img {
    transition: filter 0.3s ease;
}
.nexar-footer__social-link:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(83%) saturate(3000%) hue-rotate(248deg) brightness(85%) contrast(105%);
}

.nexar-footer__copyright {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    grid-column: 2 !important;
    justify-self: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
    font-size: clamp(0.72rem, 2.6vw, 1rem) !important;
    margin-left: -122px !important;
}

/* Footer responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-footer__inner   { padding: 80px var(--pad-footer); }
    .nexar-footer__top     { padding: 0 0 56px; }
    .nexar-footer__tagline { margin-right: 0; }
    .nexar-footer__heading { font-size: 26px; margin-bottom: 20px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a { font-size: 16px; }
    .nexar-footer__copyright { font-size: 16px; margin-right: 430px; }
}

/* Footer responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-footer__inner   { padding: 72px var(--pad-footer); }
    .nexar-footer__top     { padding: 0 0 52px; }
    .nexar-footer__tagline { margin-right: 0; }
    .nexar-footer__heading { font-size: 24px; margin-bottom: 20px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a { font-size: 15px; }
    .nexar-footer__copyright { font-size: 15px; margin-right: 448px; }
}

/* Footer responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-footer__inner   { padding: 64px var(--pad-footer); }
    .nexar-footer__top     { padding: 0 0 48px; }
    .nexar-footer__tagline { margin-right: 0; }
    .nexar-footer__heading { font-size: 22px; margin-bottom: 18px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a { font-size: 15px; }
    .nexar-footer__copyright { font-size: 15px; margin-right: 416px; }
}

/* Footer responsive — 1280px */
@media screen and (max-width: 1280px) {
    .nexar-footer__inner   { padding: 56px var(--pad-footer); }
    .nexar-footer__top     { padding: 0 0 44px; }
    .nexar-footer__tagline { margin-right: 0; }
    .nexar-footer__heading { font-size: 20px; margin-bottom: 16px; }
    .nexar-footer__grid    { gap: 32px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a { font-size: 14px; }
    .nexar-footer__copyright { font-size: 14px; margin-right: 390px; }
    .nexar-footer__logo img { height: 90px; }
}

/* 1536px only: copyright margin override */
@media screen and (min-width: 1441px) and (max-width: 1536px) {
    p.nexar-footer__copyright {
        margin-left: -28px !important;
    }
}

/* 1280px only: copyright aligned with "What we do" column */
@media screen and (min-width: 1201px) and (max-width: 1280px) {
    .nexar-footer__bottom {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 48px;
    }
    .nexar-footer__social { grid-column: 1; }
    .nexar-footer__copyright {
        grid-column: 2 / 5;
        margin-right: 0;
    }
    p.nexar-footer__copyright {
        margin-left: 42px !important;
    }
}

/* Footer responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-footer__inner   { padding: 48px var(--pad-footer); }
    .nexar-footer__top     { padding: 0 0 40px; }
    .nexar-footer__tagline { margin-right: 340px; }
    .nexar-footer__heading { font-size: 20px; margin-bottom: 16px; }
    .nexar-footer__grid    { gap: 28px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a { font-size: 14px; }
    .nexar-footer__copyright { font-size: 14px; margin-right: 442px; }
}

/* Footer responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-footer__inner { padding: 40px var(--pad-footer); }
    .nexar-footer__top {
        align-items: center;
        padding: 0 0 36px;
    }
    .nexar-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 24px;
    }
    .nexar-footer__tagline { margin-right: 270px; }
    .nexar-footer__logo img { height: 80px; width: auto; }
    .nexar-footer__heading { font-size: 18px; margin-bottom: 16px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a { font-size: 13px; }
    .nexar-footer__copyright { font-size: 13px; margin-right: 372px; }
}

/* Footer responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-footer__inner { padding: 32px var(--pad-footer); }
    .nexar-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 40px 0 32px;
    }
    .nexar-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0;
    }
    .nexar-footer__tagline  { margin-right: 0; }
    .nexar-footer__heading  { font-size: 16px; margin-bottom: 14px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a  { font-size: 13px; }
    .nexar-footer__copyright { font-size: 13px; margin-right: 0; }
    .nexar-footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
        text-align: center;
    }
    .nexar-footer__logo img { height: 70px; }
}

/* Footer responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-footer__inner { padding: 24px var(--pad-footer); }
    .nexar-footer__top   { padding: 32px 0 24px; }
    .nexar-footer__tagline { margin-right: 0; }
    .nexar-footer__grid {
        gap: 24px;
        padding: 28px 0;
    }
    .nexar-footer__heading { font-size: 16px; }
    .nexar-footer__contact-item,
    .nexar-footer__links a  { font-size: 13px; }
    .nexar-footer__copyright { font-size: 12px; margin-right: 0; }
    .nexar-footer__logo img { height: 56px; }
}


/* ═══════════════════════════════════════════
   PLAN YOUR EVENT MODAL
   ═══════════════════════════════════════════ */
.nexar-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nexar-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.nexar-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.nexar-modal__content {
    position: relative;
    background:
        url('/wp-content/uploads/2026/04/location-bg.png') center center no-repeat,
        linear-gradient(135deg, #3699FD 0%, #1CD47F 100%);
    width: 90%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 48px 40px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Webkit scrollbar — thin, no arrows */
.nexar-modal__content::-webkit-scrollbar {
    width: 4px;
}

.nexar-modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.nexar-modal__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
}

.nexar-modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.nexar-modal__content::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

.nexar-modal.is-open .nexar-modal__content {
    transform: translateY(0);
}

.nexar-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.nexar-modal__title {
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.nexar-modal__close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s;
}

.nexar-modal__close:hover {
    opacity: 0.7;
}

.nexar-modal__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nexar-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nexar-modal__row--full {
    grid-template-columns: 1fr;
}

.nexar-modal__field label {
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}

.nexar-modal__field input,
.nexar-modal__field select,
.nexar-modal__field textarea {
    width: 100%;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 15px !important;
    color: #1A1A1A !important;
    -webkit-text-fill-color: #1A1A1A !important;
    background-color: #FFFFFF !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 16px 18px !important;
    outline: none;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}
.nexar-modal__field select {
    background-color: #FFFFFF !important;
}

.nexar-modal__field input::placeholder,
.nexar-modal__field textarea::placeholder {
    color: #9A9A9A;
}

.nexar-modal__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231A1A1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.nexar-modal__field select option {
    background: #FFFFFF;
    color: #1A1A1A;
}

.nexar-modal__field input:focus,
.nexar-modal__field select:focus,
.nexar-modal__field textarea:focus {
    box-shadow: 0 0 0 2px rgba(21, 0, 137, 0.4);
}

.nexar-modal__field textarea {
    resize: vertical;
    min-height: 100px;
}

.nexar-modal__submit {
    display: inline-block;
    padding: 14px 32px;
    background: #150089;
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.nexar-modal__submit:hover {
    opacity: 0.9;
}

/* Modal Responsive */
@media screen and (max-width: 768px) {
    .nexar-modal__content {
        padding: 32px 24px 28px;
        width: 95%;
    }
    .nexar-modal__title { font-size: 26px; }
    .nexar-modal__row { grid-template-columns: 1fr; gap: 16px; }
    .nexar-modal__field input,
    .nexar-modal__field select,
    .nexar-modal__field textarea { padding: 12px 14px; font-size: 13px; }
    .nexar-modal__field label { font-size: 13px; }
    .nexar-modal__submit { width: 100%; text-align: center; padding: 12px 24px; font-size: 14px; }
}

@media screen and (max-width: 480px) {
    .nexar-modal__content {
        padding: 24px 16px 20px;
    }
    .nexar-modal__title { font-size: 22px; }
    .nexar-modal__close { font-size: 28px; }
}


/* === Services Page Hero === */

.nexar-svcpage-hero {
    position: relative;
    background: #1400A0;
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nexar-svcpage-gradient-line {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    margin: 0;
    padding: 0;
}

.nexar-svcpage-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.nexar-svcpage-hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 92px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.05;
    margin: 0 0 24px;
    letter-spacing: -1px;
}

.nexar-svcpage-hero__br {
    display: inline;
}
@media screen and (max-width: 1024px) {
    .nexar-svcpage-hero__br {
        display: none;
    }
}

.nexar-svcpage-hero__desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
}

/* Animated decorative bars */
.nexar-svcpage-hero__lines {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 100%;
    height: 90px;
    pointer-events: none;
    z-index: 1;
}

.nexar-svcpage-hero__line {
    position: absolute;
    right: 0;
    display: block;
    height: auto;
    max-width: 100%;
    transform: translateX(110vw);
}

.svcpage-lines-entered .nexar-svcpage-hero__line--1 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0s;
}
.svcpage-lines-entered .nexar-svcpage-hero__line--2 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.12s;
}
.svcpage-lines-entered .nexar-svcpage-hero__line--3 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.24s;
}
.svcpage-lines-entered .nexar-svcpage-hero__line--4 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.36s;
}

.nexar-svcpage-hero__line--1 {
    top: 8px;
    right: 28.4%;
    width: 9.9%;
    max-width: 190px;
    min-width: 60px;
}
.nexar-svcpage-hero__line--2 {
    top: 23px;
    width: 33.4%;
    max-width: 641px;
    min-width: 120px;
}
.nexar-svcpage-hero__line--3 {
    top: 51px;
    width: 28.2%;
    max-width: 541px;
    min-width: 100px;
}
.nexar-svcpage-hero__line--4 {
    top: 74px;
    width: 7.6%;
    max-width: 145px;
    min-width: 40px;
}

/* Services Hero — Responsive */
@media screen and (max-width: 1520px) {
    .nexar-svcpage-hero {
        padding-top: 160px;
        padding-bottom: 100px;
    }
    .nexar-svcpage-hero__title {
        font-size: 80px;
    }
}

@media screen and (max-width: 1440px) {
    .nexar-svcpage-hero {
        padding-top: 150px;
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 1366px) {
    .nexar-svcpage-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .nexar-svcpage-hero__title {
        font-size: 74px;
    }
    .nexar-svcpage-hero__desc {
        font-size: 17px;
    }
}

@media screen and (max-width: 1200px) {
    .nexar-svcpage-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .nexar-svcpage-hero__title {
        font-size: 66px;
    }
    .nexar-svcpage-hero__lines {
        bottom: 50px;
        height: 60px;
    }
    .nexar-svcpage-hero__inner {
        max-width: 65%;
    }
}

@media screen and (max-width: 1024px) {
    .nexar-svcpage-hero {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    .nexar-svcpage-hero__title {
        font-size: 56px;
    }
    .nexar-svcpage-hero__desc {
        font-size: 16px;
    }
    .nexar-svcpage-hero__lines {
        bottom: 62px;
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .nexar-svcpage-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .nexar-svcpage-hero__title {
        font-size: 46px;
        margin-bottom: 20px;
    }
    .nexar-svcpage-hero__desc {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .nexar-svcpage-hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .nexar-svcpage-hero__title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .nexar-svcpage-hero__desc {
        font-size: 14px;
    }
}


/* === Services Grid === */

.nexar-svcpage-grid {
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 120px;
    border-bottom: 1px solid #E5E5E5;
}

.nexar-svcpage-grid__inner {
    max-width: 100%;
    margin: 0 auto;
}

.nexar-svcpage-grid__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 60px;
    line-height: 1.15;
}

.nexar-svcpage-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nexar-svcpage-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.nexar-svcpage-card:hover {
    background: linear-gradient(135deg, #1CD47F 0%, #00BCD4 50%, #3699FD 100%);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.nexar-svcpage-card__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.nexar-svcpage-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.nexar-svcpage-card:hover .nexar-svcpage-card__image img {
    transform: scale(1.05);
}

.nexar-svcpage-card__body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nexar-svcpage-card__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 14px;
    line-height: 1.25;
}

.nexar-svcpage-card__desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.65;
    margin: 0 0 24px;
    flex: 1;
}

.nexar-svcpage-card__link {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s;
}

.nexar-svcpage-card__link:hover {
    opacity: 0.7;
}

.nexar-svcpage-card__title,
.nexar-svcpage-card__desc,
.nexar-svcpage-card__link {
    transition: color 0.3s ease;
}

.nexar-svcpage-card:hover .nexar-svcpage-card__title {
    color: #FFFFFF;
}

.nexar-svcpage-card:hover .nexar-svcpage-card__desc {
    color: rgba(255, 255, 255, 0.9);
}

.nexar-svcpage-card:hover .nexar-svcpage-card__link {
    color: #FFFFFF;
    opacity: 1;
}

/* Services Grid — responsive */
@media screen and (max-width: 1520px) {
    .nexar-svcpage-grid__heading {
        font-size: 48px;
    }
}

@media screen and (max-width: 1366px) {
    .nexar-svcpage-grid__heading {
        font-size: 44px;
        margin-bottom: 48px;
    }
    .nexar-svcpage-card__image {
        height: 240px;
    }
    .nexar-svcpage-card__title {
        font-size: 24px;
    }
    .nexar-svcpage-card__desc {
        font-size: 16px;
    }
    .nexar-svcpage-card__link {
        font-size: 18px;
    }
}

@media screen and (max-width: 1200px) {
    .nexar-svcpage-grid__heading {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .nexar-svcpage-card__image {
        height: 220px;
    }
    .nexar-svcpage-card__body {
        padding: 24px 24px 28px;
    }
}

@media screen and (max-width: 1024px) {
    .nexar-svcpage-grid__heading {
        font-size: 36px;
        margin-bottom: 36px;
    }
    .nexar-svcpage-grid__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .nexar-svcpage-card__image {
        height: 200px;
    }
    .nexar-svcpage-card__title {
        font-size: 22px;
    }
    .nexar-svcpage-card__desc {
        font-size: 15px;
    }
    .nexar-svcpage-card__link {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .nexar-svcpage-grid__heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .nexar-svcpage-grid__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .nexar-svcpage-card__image {
        height: 220px;
    }
    .nexar-svcpage-card__body {
        padding: 20px 20px 24px;
    }
    .nexar-svcpage-card__title {
        font-size: 20px;
    }
    .nexar-svcpage-card__desc {
        font-size: 14px;
    }
    .nexar-svcpage-card__link {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .nexar-svcpage-grid__heading {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .nexar-svcpage-card__image {
        height: 190px;
    }
    .nexar-svcpage-card__body {
        padding: 16px 16px 20px;
    }
}


/* === Service Detail Hero === */

.nexar-svcdetail-hero {
    position: relative;
    background: #1400A0;
    background-size: cover;
    background-position: center center;
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
}

.nexar-svcdetail-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.nexar-svcdetail-hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 92px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.05;
    margin: 0 0 40px;
    letter-spacing: -1px;
}

.nexar-svcdetail-hero__desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0;
    max-width: 720px;
}

/* Animated decorative bars */
.nexar-svcdetail-hero__lines {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 100%;
    height: 90px;
    pointer-events: none;
    z-index: 1;
}

.nexar-svcdetail-hero__line {
    position: absolute;
    right: 0;
    display: block;
    height: auto;
    max-width: 100%;
    transform: translateX(110vw);
}

.svcdetail-lines-entered .nexar-svcdetail-hero__line--1 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0s;
}
.svcdetail-lines-entered .nexar-svcdetail-hero__line--2 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.12s;
}
.svcdetail-lines-entered .nexar-svcdetail-hero__line--3 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.24s;
}
.svcdetail-lines-entered .nexar-svcdetail-hero__line--4 {
    animation: nexar-line-enter 4s infinite;
    animation-delay: 0.36s;
}

.nexar-svcdetail-hero__line--1 {
    top: 8px;
    right: 28.4%;
    width: 9.9%;
    max-width: 190px;
    min-width: 60px;
}
.nexar-svcdetail-hero__line--2 {
    top: 23px;
    width: 33.4%;
    max-width: 641px;
    min-width: 120px;
}
.nexar-svcdetail-hero__line--3 {
    top: 51px;
    width: 28.2%;
    max-width: 541px;
    min-width: 100px;
}
.nexar-svcdetail-hero__line--4 {
    top: 74px;
    width: 7.6%;
    max-width: 145px;
    min-width: 40px;
}

/* Gradient line after hero */
.nexar-svcdetail-gradient-line {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    margin: 0;
    padding: 0;
}

/* Service Detail Hero — Responsive */
@media screen and (max-width: 1522px) {
    .nexar-svcdetail-hero {
        padding-top: 160px;
        padding-bottom: 100px;
    }
    .nexar-svcdetail-hero__title { font-size: 80px; }
    .nexar-svcdetail-hero__desc { font-size: 20px; }
}

@media screen and (max-width: 1440px) {
    .nexar-svcdetail-hero {
        padding-top: 150px;
        padding-bottom: 90px;
    }
    .nexar-svcdetail-hero__title { font-size: 74px; }
    .nexar-svcdetail-hero__desc { font-size: 19px; }
    .nexar-svcdetail-hero__inner { max-width: 750px; }
}

@media screen and (max-width: 1366px) {
    .nexar-svcdetail-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .nexar-svcdetail-hero__title { font-size: 66px; }
    .nexar-svcdetail-hero__desc { font-size: 18px; }
}

@media screen and (max-width: 1200px) {
    .nexar-svcdetail-hero {
        padding-top: 130px;
        padding-bottom: 70px;
        min-height: 520px;
    }
    .nexar-svcdetail-hero__title { font-size: 56px; }
    .nexar-svcdetail-hero__desc { font-size: 17px; max-width: 600px; }
    .nexar-svcdetail-hero__inner { max-width: 700px; }
    .nexar-svcdetail-gradient-line { height: 6px; }
}

@media screen and (max-width: 1024px) {
    .nexar-svcdetail-hero {
        padding-top: 110px;
        padding-bottom: 60px;
        min-height: 480px;
    }
    .nexar-svcdetail-hero__title { font-size: 46px; margin-bottom: 28px; }
    .nexar-svcdetail-hero__desc { font-size: 16px; }
    .nexar-svcdetail-hero__inner { max-width: 600px; }
    .nexar-svcdetail-hero__lines { height: 70px; }
    .nexar-svcdetail-hero__line--2 { top: 18px; }
    .nexar-svcdetail-hero__line--3 { top: 40px; }
    .nexar-svcdetail-hero__line--4 { top: 58px; }
}

@media screen and (max-width: 768px) {
    .nexar-svcdetail-hero {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: 400px;
    }
    .nexar-svcdetail-hero__title { font-size: 36px; margin-bottom: 20px; }
    .nexar-svcdetail-hero__desc { font-size: 15px; line-height: 1.55; max-width: 100%; }
    .nexar-svcdetail-hero__inner { max-width: 100%; }
    .nexar-svcdetail-hero__lines { display: none; }
    .nexar-svcdetail-gradient-line { height: 6px; }
}

@media screen and (max-width: 480px) {
    .nexar-svcdetail-hero {
        padding-top: 90px;
        padding-bottom: 40px;
        min-height: 360px;
    }
    .nexar-svcdetail-hero__title { font-size: 30px; margin-bottom: 16px; }
    .nexar-svcdetail-hero__desc { font-size: 14px; }
    .nexar-svcdetail-gradient-line { height: 4px; }
}


/* ═══════════════════════════════════════════
   SHARED INNER PAGE HERO
   Used by: Destinations, Case Studies, Insights, Contact, Detail pages
   ═══════════════════════════════════════════ */

.nexar-dest-hero,
.nexar-cs-hero,
.nexar-ins-hero,
.nexar-contactp-hero,
.nexar-destdetail-hero,
.nexar-csd-hero,
.nexar-insd-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
}

.nexar-dest-hero__overlay,
.nexar-cs-hero__overlay,
.nexar-ins-hero__overlay,
.nexar-contactp-hero__overlay,
.nexar-destdetail-hero__overlay,
.nexar-csd-hero__overlay,
.nexar-insd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.nexar-dest-hero__inner,
.nexar-cs-hero__inner,
.nexar-ins-hero__inner,
.nexar-contactp-hero__inner,
.nexar-destdetail-hero__inner,
.nexar-csd-hero__inner,
.nexar-insd-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 65%;
}

.nexar-dest-hero__title,
.nexar-cs-hero__title,
.nexar-ins-hero__title,
.nexar-contactp-hero__title,
.nexar-destdetail-hero__title,
.nexar-csd-hero__title,
.nexar-insd-hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 92px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.05;
    margin: 0 0 32px;
    letter-spacing: -1px;
}

.nexar-dest-hero__subtitle,
.nexar-cs-hero__subtitle,
.nexar-ins-hero__subtitle,
.nexar-contactp-hero__subtitle,
.nexar-destdetail-hero__desc,
.nexar-csd-hero__desc,
.nexar-insd-hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0;
    max-width: 720px;
}

.nexar-dest-hero__subtitle,
.nexar-cs-hero__subtitle,
.nexar-ins-hero__subtitle,
.nexar-contactp-hero__subtitle,
.nexar-destdetail-hero__desc,
.nexar-csd-hero__desc {
    font-size: 24px;
}

/* Hero animated lines — shared */
.nexar-dest-hero__lines,
.nexar-cs-hero__lines,
.nexar-ins-hero__lines,
.nexar-contactp-hero__lines,
.nexar-destdetail-hero__lines,
.nexar-csd-hero__lines,
.nexar-insd-hero__lines {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 100%;
    height: 90px;
    pointer-events: none;
    z-index: 3;
}

[class*="-hero__line--"] {
    position: absolute;
    right: 0;
    display: block;
    height: auto;
    max-width: 100%;
    transform: translateX(110vw);
}

[class*="-hero__line--1"] { top: 8px; right: 28.4%; width: 9.9%; max-width: 190px; min-width: 60px; }
[class*="-hero__line--2"] { top: 23px; width: 33.4%; max-width: 641px; min-width: 120px; }
[class*="-hero__line--3"] { top: 51px; width: 28.2%; max-width: 541px; min-width: 100px; }
[class*="-hero__line--4"] { top: 74px; width: 7.6%; max-width: 145px; min-width: 40px; }

.lines-entered [class*="-hero__line--1"] { animation: nexar-line-enter 4s infinite; animation-delay: 0s; }
.lines-entered [class*="-hero__line--2"] { animation: nexar-line-enter 4s infinite; animation-delay: 0.12s; }
.lines-entered [class*="-hero__line--3"] { animation: nexar-line-enter 4s infinite; animation-delay: 0.24s; }
.lines-entered [class*="-hero__line--4"] { animation: nexar-line-enter 4s infinite; animation-delay: 0.36s; }

/* Gradient line after hero — shared */
.nexar-dest-gradient-line,
.nexar-cs-gradient-line,
.nexar-ins-gradient-line,
.nexar-contactp-gradient-line,
.nexar-destdetail-gradient-line,
.nexar-csd-gradient-line,
.nexar-insd-gradient-line {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    margin: 0;
    padding: 0;
}


/* === Destinations Page Hero === */

.nexar-dest-hero {
    min-height: 620px;
    align-items: flex-end;
    padding-top: 180px;
    padding-bottom: 120px;
}

.nexar-dest-hero__inner {
    max-width: 55%;
}

.nexar-dest-hero__title {
    font-size: 92px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.nexar-dest-hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    max-width: 826px;
}

/* Destinations bars — sweep animation */
@keyframes nexar-inner-line-enter {
    0%   { transform: translateX(100%); opacity: 0; animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    15%  { opacity: 1; }
    28%  { transform: translateX(0); animation-timing-function: linear; }
    72%  { transform: translateX(0); animation-timing-function: cubic-bezier(0.55, 0, 0.45, 1); }
    85%  { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.lines-entered .nexar-dest-hero__line--1 { animation: nexar-inner-line-enter 4s infinite; animation-delay: 0s; }
.lines-entered .nexar-dest-hero__line--2 { animation: nexar-inner-line-enter 4s infinite; animation-delay: 0.12s; }
.lines-entered .nexar-dest-hero__line--3 { animation: nexar-inner-line-enter 4s infinite; animation-delay: 0.24s; }
.lines-entered .nexar-dest-hero__line--4 { animation: nexar-inner-line-enter 4s infinite; animation-delay: 0.36s; }

.nexar-dest-hero__lines {
    z-index: 1;
}

/* Destinations Hero — Responsive */
@media (max-width: 1522px) {
    .nexar-dest-hero { padding-top: 160px; padding-bottom: 100px; }
    .nexar-dest-hero__title { font-size: 80px; }
    .nexar-dest-hero__subtitle { font-size: 19px; }
}
@media (max-width: 1440px) {
    .nexar-dest-hero { padding-top: 150px; padding-bottom: 90px; }
    .nexar-dest-hero__title { font-size: 74px; }
    .nexar-dest-hero__subtitle { font-size: 18px; }
}
@media (max-width: 1366px) {
    .nexar-dest-hero { padding-top: 140px; padding-bottom: 80px; }
    .nexar-dest-hero__title { font-size: 66px; }
    .nexar-dest-hero__subtitle { font-size: 18px; }
}
@media (max-width: 1200px) {
    .nexar-dest-hero { min-height: 520px; padding-top: 130px; padding-bottom: 70px; }
    .nexar-dest-hero__title { font-size: 56px; }
    .nexar-dest-hero__subtitle { font-size: 17px; max-width: 600px; }
}
@media (max-width: 1024px) {
    .nexar-dest-hero { min-height: 480px; padding-top: 110px; padding-bottom: 60px; }
    .nexar-dest-hero__title { font-size: 46px; margin-bottom: 24px; }
    .nexar-dest-hero__subtitle { font-size: 16px; }
    .nexar-dest-hero__inner { max-width: 100%; }
    .nexar-dest-hero__lines { display: none; }
}
@media (max-width: 768px) {
    .nexar-dest-hero { min-height: 400px; padding-top: 100px; padding-bottom: 50px; }
    .nexar-dest-hero__title { font-size: 36px; margin-bottom: 20px; }
    .nexar-dest-hero__subtitle { font-size: 15px; line-height: 1.55; max-width: 100%; }
    .nexar-dest-hero__inner { max-width: 100%; }
}
@media (max-width: 480px) {
    .nexar-dest-hero { min-height: 360px; padding-top: 90px; padding-bottom: 40px; }
    .nexar-dest-hero__title { font-size: 30px; margin-bottom: 16px; }
    .nexar-dest-hero__subtitle { font-size: 14px; }
}


/* === Case Study Detail Hero === */

/* Override shared hero — solid dark background, no image */
.nexar-csd-hero {
    background: #150089 !important;
    background-image: none !important;
    min-height: 520px;
    padding-top: 180px;
    padding-bottom: 100px;
    align-items: flex-end;
}

.nexar-csd-hero__overlay { display: none; }

.nexar-csd-hero__inner {
    max-width: 65%;
}

.nexar-csd-hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 92px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.05;
    margin: 0 0 32px;
    letter-spacing: -1px;
}

.nexar-csd-hero__cat {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    display: block;
    margin: 0;
}

/* Case Study Detail Hero — Responsive */
@media screen and (max-width: 1520px) {
    .nexar-csd-hero { padding-top: 160px; padding-bottom: 90px; }
}
@media screen and (max-width: 1366px) {
    .nexar-csd-hero { padding-top: 140px; padding-bottom: 80px; }
}
@media screen and (max-width: 1200px) {
    .nexar-csd-hero { padding-top: 140px; padding-bottom: 80px; min-height: 520px; }
    .nexar-csd-hero .nexar-csd-hero__title { font-size: 68px; }
    .nexar-csd-hero__cat { font-size: 18px; }
}
@media screen and (max-width: 1024px) {
    .nexar-csd-hero { padding-top: 110px; padding-bottom: 60px; min-height: 400px; }
    .nexar-csd-hero__cat { font-size: 15px; }
}
@media screen and (max-width: 768px) {
    .nexar-csd-hero { padding-top: 100px; padding-bottom: 50px; min-height: 360px; }
    .nexar-csd-hero__cat { font-size: 14px; }
    .nexar-csd-hero__inner { max-width: 100%; }
    .nexar-csd-hero__lines { display: none; }
}
@media screen and (max-width: 480px) {
    .nexar-csd-hero { padding-top: 90px; padding-bottom: 40px; min-height: 300px; }
    .nexar-csd-hero__cat { font-size: 13px; }
}


/* === Insights Hero — Solid purple banner === */

.nexar-ins-hero--solid {
    background: linear-gradient(135deg, #0D006B 0%, #150089 50%, #1400A0 100%) !important;
    min-height: 420px;
    padding-top: 140px;
    padding-bottom: 80px;
    align-items: center;
}

.nexar-ins-hero--solid .nexar-ins-hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 92px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.05;
}

.nexar-ins-hero--solid .nexar-ins-hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.65;
}

.nexar-ins-hero--solid .nexar-ins-hero__lines {
    bottom: auto;
    top: 82%;
    transform: translateY(-50%);
    right: 0;
    height: 120px;
}

/* Insights Hero — Responsive */
@media screen and (max-width: 1520px) {
    .nexar-ins-hero--solid { padding-top: 160px; padding-bottom: 100px; }
    .nexar-ins-hero--solid .nexar-ins-hero__title { font-size: 80px; }
    .nexar-ins-hero--solid .nexar-ins-hero__subtitle { font-size: 19px; }
}
@media screen and (max-width: 1366px) {
    .nexar-ins-hero--solid { padding-top: 140px; padding-bottom: 80px; }
    .nexar-ins-hero--solid .nexar-ins-hero__title { font-size: 66px; }
    .nexar-ins-hero--solid .nexar-ins-hero__subtitle { font-size: 18px; max-width: 600px; }
}
@media screen and (max-width: 1200px) {
    .nexar-ins-hero--solid { padding-top: 130px; padding-bottom: 70px; min-height: 520px; }
    .nexar-ins-hero--solid .nexar-ins-hero__title { font-size: 56px; }
    .nexar-ins-hero--solid .nexar-ins-hero__subtitle { font-size: 17px; max-width: 550px; }
}
@media screen and (max-width: 1024px) {
    .nexar-ins-hero--solid { padding-top: 110px; padding-bottom: 60px; min-height: 480px; }
    .nexar-ins-hero--solid .nexar-ins-hero__title { font-size: 46px; }
    .nexar-ins-hero--solid .nexar-ins-hero__subtitle { font-size: 16px; max-width: 500px; }
}
@media screen and (max-width: 768px) {
    .nexar-ins-hero--solid { padding-top: 100px; padding-bottom: 50px; min-height: 400px; }
    .nexar-ins-hero--solid .nexar-ins-hero__title { font-size: 36px; }
    .nexar-ins-hero--solid .nexar-ins-hero__subtitle { font-size: 15px; max-width: 100%; }
    .nexar-ins-hero--solid .nexar-ins-hero__lines { display: none; }
}
@media screen and (max-width: 480px) {
    .nexar-ins-hero--solid { padding-top: 90px; padding-bottom: 40px; min-height: 360px; }
    .nexar-ins-hero--solid .nexar-ins-hero__title { font-size: 30px; }
    .nexar-ins-hero--solid .nexar-ins-hero__subtitle { font-size: 13px; }
}


/* === Insights Filter Bar === */

.nexar-ins-filter {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 0;
}
.nexar-ins-filter__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.nexar-ins-filter__search {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    min-width: 280px;
}
.nexar-ins-filter__search-input {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    border: none;
    outline: none;
    padding: 12px 16px;
    flex: 1;
    color: #1A1A1A;
    background: transparent;
}
.nexar-ins-filter__search-input::placeholder { color: #999; }
.nexar-ins-filter__search-btn {
    background: none;
    border: none;
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-left: 1px solid #ddd;
}
.nexar-ins-filter__category { position: relative; }
.nexar-ins-filter__select {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    border: 1px solid #ddd;
    padding: 12px 40px 12px 16px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 200px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.nexar-ins-filter__select:focus { outline: none; border-color: #999; }

/* Insights Filter — responsive */
@media (max-width: 1520px) {
    /* .nexar-ins-filter__inner { max-width: 1100px; } */
}
@media (max-width: 1200px) {
    .nexar-ins-filter__inner { max-width: 100%; }
}
@media (max-width: 1024px) {
    .nexar-ins-filter__search { min-width: 220px; }
    .nexar-ins-filter__select { min-width: 170px; }
}
@media (max-width: 768px) {
    .nexar-ins-filter__inner { flex-direction: row; gap: 26px; align-items: stretch; }
    .nexar-ins-filter__search { flex: 1; min-width: 0; overflow: hidden; }
    /* min-width: 0 + width: 100% forces native <input> to respect flex-shrink */
    .nexar-ins-filter__search-input {
        padding: 10px 12px;
        font-size: 13px;
        min-width: 0;
        width: 100%;
    }
    /* Match input vertical padding so icon sits centered in the combined box */
    .nexar-ins-filter__search-btn {
        padding: 10px 12px;
        align-self: stretch;
        justify-content: center;
        flex-shrink: 0;
    }
    .nexar-ins-filter__search-btn svg { width: 16px; height: 16px; display: block; }
    .nexar-ins-filter__select { min-width: 150px; font-size: 13px; padding: 10px 32px 10px 12px; background-position: right 10px center; }
}
@media (max-width: 480px) {
    .nexar-ins-filter__search-input { font-size: 13px; padding: 10px 12px; }
    .nexar-ins-filter__select { font-size: 13px; padding: 10px 12px 10px 12px; }
}


/* === Insights Featured Slider === */

.nexar-ins-featured {
    padding-top: 30px;
    padding-bottom: 40px;
    background: #fff;
    display: block !important;
    width: 100%;
}

.nexar-ins-featured__slider {
    position: relative;
    border-radius: 0;
    overflow: hidden !important;
    box-shadow: none;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.nexar-ins-featured__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.nexar-ins-featured__slide {
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0 !important;
}

.nexar-ins-featured__link {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    text-decoration: none;
    color: inherit;
    height: 520px;
    overflow: hidden;
}

.nexar-ins-featured__content {
    background: linear-gradient(135deg, #3699FD 0%, #1CD47F 100%);
    padding: 50px 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nexar-ins-featured__date {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    display: block;
    margin-bottom: 20px;
}

.nexar-ins-featured__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}

.nexar-ins-featured__excerpt {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 520px;
}

.nexar-ins-featured__read {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 30px;
}

.nexar-ins-featured__indicators {
    position: absolute;
    bottom: 24px;
    left: 50px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.nexar-ins-featured__indicator {
    height: 5px;
    width: 40px;
    border-radius: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.nexar-ins-featured__indicator.is-active {
    background: #150089;
    width: 50px;
}

.nexar-ins-featured__bars { display: none; }

.nexar-ins-featured__img {
    overflow: hidden;
    position: relative;
}

.nexar-ins-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.nexar-ins-featured__link:hover .nexar-ins-featured__img img {
    transform: scale(1.03);
}

/* Insights Featured — responsive */
@media (max-width: 1200px) {
    .nexar-ins-featured__link { grid-template-columns: 1fr 1fr; }
    /* featured title font-size handled by .fs-h3 */
    .nexar-ins-featured__date,
    .nexar-ins-featured__excerpt,
    .nexar-ins-featured__read { font-size: 17px; }
}
@media (max-width: 1024px) {
    .nexar-ins-featured__content { padding: 36px 32px 60px; }
    /* featured title font-size handled by .fs-h3 */
    .nexar-ins-featured__date,
    .nexar-ins-featured__excerpt,
    .nexar-ins-featured__read { font-size: 16px; }
    .nexar-ins-featured__link { height: 420px; }
    .nexar-ins-featured__indicators { bottom: 20px; left: 32px; }
}
@media (max-width: 768px) {
    .nexar-ins-featured__slider { overflow: hidden !important; }
    .nexar-ins-featured__slide { min-width: 100% !important; width: 100% !important; height: 640px; }
    .nexar-ins-featured__link { grid-template-columns: 1fr !important; min-height: auto; height: auto; }
    .nexar-ins-featured__img { height: 240px; order: -1; flex-shrink: 0; }
    .nexar-ins-featured__content { padding: 28px 24px 28px; min-height: 380px; }
    /* featured title font-size handled by .fs-h3 */
    .nexar-ins-featured__date,
    .nexar-ins-featured__excerpt,
    .nexar-ins-featured__read { font-size: 15px; }
    .nexar-ins-featured__excerpt { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; text-overflow: ellipsis; max-width: 100%; min-height: calc(5 * 1.6 * 15px); }
    .nexar-ins-featured__indicators { position: relative; bottom: auto; left: auto; background: #fff; padding: 14px 24px; gap: 8px; justify-content: center; }
    .nexar-ins-featured__indicator { background: rgba(0,0,0,0.15); }
    .nexar-ins-featured__indicator.is-active { background: #150089; }
}
@media (max-width: 480px) {
    .nexar-ins-featured__link { min-height: auto; }
    .nexar-ins-featured__img { height: 180px; }
    .nexar-ins-featured__content { padding: 24px 16px 24px; }
    /* featured title font-size handled by .fs-h3 */
    .nexar-ins-featured__date,
    .nexar-ins-featured__excerpt,
    .nexar-ins-featured__read { font-size: 14px; }
    .nexar-ins-featured__indicators { padding: 12px 16px; }
}


/* === Insights Articles Grid === */

.nexar-ins-articles {
    background: #fff;
    padding-top: 0;
    padding-bottom: 80px;
    border-bottom: 1px solid #E5E5E5;
}
.nexar-ins-articles__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nexar-ins-article {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.nexar-ins-article:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.nexar-ins-article__image--card {
    height: 220px;
    overflow: hidden;
}
.nexar-ins-article__image--card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.nexar-ins-article:hover .nexar-ins-article__image--card img {
    transform: scale(1.04);
}

.nexar-ins-article__content--card {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.nexar-ins-article__meta {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #888;
    display: block;
    margin-bottom: 10px;
}
.nexar-ins-article__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.3;
}
.nexar-ins-article__excerpt {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.nexar-ins-article__link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.nexar-ins-article__link svg { transition: transform 0.3s ease; }
.nexar-ins-article:hover .nexar-ins-article__link svg { transform: translateX(4px); }

.nexar-ins-articles__no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}
.nexar-ins-articles__no-results p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #777;
}

/* Insights Articles — responsive */
@media screen and (max-width: 1024px) {
    .nexar-ins-articles__inner { grid-template-columns: repeat(2, 1fr); }
    .nexar-ins-article__excerpt { font-size: 16px; }
    /* article link font-size handled by .fs-p */
}
@media screen and (max-width: 768px) {
    .nexar-ins-articles__inner { grid-template-columns: 1fr; }
}
@media screen and (max-width: 480px) {
    .nexar-ins-articles__inner { gap: 24px; }
    .nexar-ins-article__excerpt { font-size: 14px; }
    /* article link font-size handled by .fs-p */
    .nexar-ins-article__image--card { height: 180px; }
}


/* === Insights Pagination === */

.nexar-ins-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 48px 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nexar-ins-pagination .page-numbers {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1A1A1A;
    background: none;
    border: 2px solid transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.nexar-ins-pagination .page-numbers:hover {
    color: #150089;
}

.nexar-ins-pagination .page-numbers.current {
    color: #150089;
    border-color: #150089;
    font-weight: 600;
}

.nexar-ins-pagination .prev,
.nexar-ins-pagination .next {
    font-weight: 500;
    width: auto;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 768px) {
    .nexar-ins-pagination { gap: 4px; padding: 32px 0 0; }
    .nexar-ins-pagination .page-numbers { width: 34px; height: 34px; font-size: 13px; }
    .nexar-ins-pagination .prev,
    .nexar-ins-pagination .next { font-size: 13px; padding: 8px 10px; }
}


/* === Insight Detail Hero === */

.nexar-insd-hero {
    background: #150089 !important;
    background-image: none !important;
    min-height: 700px;
    padding-top: 180px;
    padding-bottom: 100px;
    align-items: flex-end;
}

.nexar-insd-hero__overlay { display: none; }

.nexar-insd-hero__inner {
    max-width: 65%;
}

.nexar-insd-hero__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
    max-width: 90% !important;
}

.nexar-insd-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.nexar-insd-hero__date {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.nexar-insd-hero__sep {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.35);
}

.nexar-insd-hero__cat {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
    letter-spacing: 0;
}

.nexar-insd-hero__tags {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* Insight Detail Hero — Responsive */
@media screen and (max-width: 1520px) {
    .nexar-insd-hero { padding-top: 160px; padding-bottom: 90px; min-height: 650px; }
    .nexar-insd-hero__title { max-width: 780px; }
    .nexar-insd-hero__date, .nexar-insd-hero__sep, .nexar-insd-hero__cat { font-size: 18px; }
    .nexar-insd-hero__tags { font-size: 18px; }
}
@media screen and (max-width: 1366px) {
    .nexar-insd-hero { padding-top: 140px; padding-bottom: 80px; min-height: 600px; }
    .nexar-insd-hero__title { max-width: 700px; }
    .nexar-insd-hero__date, .nexar-insd-hero__sep, .nexar-insd-hero__cat { font-size: 17px; }
    .nexar-insd-hero__tags { font-size: 17px; }
}
@media screen and (max-width: 1200px) {
    .nexar-insd-hero { padding-top: 130px; padding-bottom: 70px; min-height: 560px; }
    .nexar-insd-hero__title { max-width: 620px; }
    .nexar-insd-hero__date, .nexar-insd-hero__sep, .nexar-insd-hero__cat { font-size: 16px; }
    .nexar-insd-hero__tags { font-size: 16px; }
}
@media screen and (max-width: 1024px) {
    .nexar-insd-hero { padding-top: 110px; padding-bottom: 60px; min-height: 500px; }
    .nexar-insd-hero__title { max-width: 540px; }
    .nexar-insd-hero__date, .nexar-insd-hero__sep, .nexar-insd-hero__cat { font-size: 15px; }
    .nexar-insd-hero__tags { font-size: 15px; }
}
@media screen and (max-width: 768px) {
    .nexar-insd-hero { padding-top: 100px; padding-bottom: 50px; min-height: 440px; }
    .nexar-insd-hero__title { max-width: 100%; }
    .nexar-insd-hero__inner { max-width: 100%; }
    .nexar-insd-hero__date, .nexar-insd-hero__sep, .nexar-insd-hero__cat { font-size: 14px; }
    .nexar-insd-hero__tags { font-size: 14px; }
}
@media screen and (max-width: 480px) {
    .nexar-insd-hero { padding-top: 90px; padding-bottom: 40px; min-height: 380px; }
    /* insd hero title font-size handled by .fs-h2 */
    .nexar-insd-hero__date, .nexar-insd-hero__sep, .nexar-insd-hero__cat { font-size: 13px; }
    .nexar-insd-hero__tags { font-size: 13px; }
    .nexar-insd-hero__meta { flex-wrap: wrap; gap: 6px; }
}


/* === Insight Detail Layout (Article + Sidebar) === */

.nexar-insd-layout {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.nexar-insd-layout__inner {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 30px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* Article (left column) */
.nexar-insd-article {
    background: none;
    padding: 0;
}

.nexar-insd-article__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0 0 24px;
    line-height: 1.2;
}

.nexar-insd-article__intro p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.7;
    margin: 0 0 36px;
}

.nexar-insd-article__feature-img {
    margin-bottom: 40px;
    overflow: hidden;
}

.nexar-insd-article__feature-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.nexar-insd-article__subheading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin: 0 0 20px;
    line-height: 1.35;
}

.nexar-insd-article__body {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.7;
    margin-bottom: 28px;
}

.nexar-insd-article__list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 40px;
}

.nexar-insd-article__list li {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Sidebar (right column) */
.nexar-insd-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.nexar-insd-sidebar__block {
    margin-bottom: 32px;
}

.nexar-insd-sidebar__categories {
    background-color: #150089;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 28px 24px;
    border-radius: 0;
    width: 420px;
    min-height: 570px;
}

.nexar-insd-sidebar__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 18px;
}

.nexar-insd-sidebar__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nexar-insd-sidebar__cat-list li {
    margin-bottom: 12px;
}

.nexar-insd-sidebar__cat-list li a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.nexar-insd-sidebar__cat-list li a,
.nexar-insd-sidebar__cat-list li a:link,
.nexar-insd-sidebar__cat-list li a:visited {
    color: rgba(255, 255, 255, 0.8) !important;
}
.nexar-insd-sidebar__cat-list li a:hover,
.nexar-insd-sidebar__cat-list li a.is-active,
.nexar-insd-sidebar__cat-list li.current-cat a,
.nexar-insd-sidebar__cat-list li.current-cat a:visited {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-decoration: underline !important;
    text-decoration-color: #FFFFFF !important;
    text-underline-offset: 4px;
}

.nexar-insd-sidebar__divider {
    border: none;
    margin: 24px 0;
}

.nexar-insd-sidebar__title--tags {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
    padding-top: 0;
    border-top: none;
}

.nexar-insd-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nexar-insd-sidebar__tag {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 18px;
    border-radius: 0;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none !important;
}

.nexar-insd-sidebar__tag a {
    color: inherit;
    text-decoration: none !important;
}

.nexar-insd-sidebar__tag:hover,
.nexar-insd-sidebar__tag.is-active {
    background: #FFFFFF;
    color: #150089;
}
.nexar-insd-sidebar__tag.is-active a {
    color: #150089 !important;
    -webkit-text-fill-color: #150089 !important;
}
/* Categories/tags: links are non-navigational on the insight detail sidebar */
.nexar-insd-sidebar__cat-list li a[aria-disabled="true"],
.nexar-insd-sidebar__tag a[aria-disabled="true"] {
    cursor: default;
}

.nexar-insd-sidebar__recent {
    margin-top: 8px;
    width: 420px;
    border: 1px solid #EEEEEE;
    padding: 28px 24px;
}

.nexar-insd-sidebar__recent-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin: 0 0 24px;
}

.nexar-insd-sidebar__blog-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEEEEE;
}

.nexar-insd-sidebar__blog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nexar-insd-sidebar__blog-meta {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

.nexar-insd-sidebar__blog-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    margin: 0 0 10px;
}

.nexar-insd-sidebar__blog-link {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nexar-insd-sidebar__blog-link:hover {
    color: #1CD47F;
}

/* Insight Detail Layout — responsive */
/* 1280px-range only — design-intent 80px horizontal padding + explicit grid */
@media screen and (min-width: 1201px) and (max-width: 1366px) {
    .nexar-insd-layout {
        /* padding-left: 80px !important; */
        /* padding-right: 80px !important; */
    }
    .nexar-insd-layout__inner { grid-template-columns: 1fr 280px; gap: 30px; }
    .nexar-insd-sidebar__categories,
    .nexar-insd-sidebar__recent { width: 100%; }
    article.nexar-insd-article {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
@media screen and (max-width: 1200px) {
    .nexar-insd-layout__inner { grid-template-columns: 1fr 280px; gap: 40px; }
}
@media screen and (max-width: 1024px) {
    .nexar-insd-layout__inner { grid-template-columns: 1fr 260px; gap: 32px; }
    .nexar-insd-article__heading { font-size: 30px; }
    /* article text font-size handled by .fs-p */
    .nexar-insd-article__subheading { font-size: 20px; }
    .nexar-insd-sidebar__title { font-size: 20px; }
    .nexar-insd-sidebar__title--tags { font-size: 20px; }
    /* cat-list font-size handled by .fs-p */
    .nexar-insd-sidebar__tag { font-size: 16px; padding: 6px 14px; }
    .nexar-insd-sidebar__categories { width: 100%; min-height: auto; }
    .nexar-insd-sidebar__recent { width: 100%; }
    .nexar-insd-sidebar__recent-title { font-size: 20px; }
    .nexar-insd-sidebar__blog-title { font-size: 20px; }
    .nexar-insd-sidebar__blog-meta { font-size: 16px; }
    .nexar-insd-sidebar__blog-link { font-size: 16px; }
}
@media screen and (max-width: 768px) {
    .nexar-insd-layout__inner { grid-template-columns: 1fr; gap: 0px; }
    .nexar-insd-article__heading { font-size: 26px; }
    /* article text font-size handled by .fs-p */
    .nexar-insd-article__subheading { font-size: 18px; }
    .nexar-insd-sidebar { position: static; }
    .nexar-insd-sidebar__title { font-size: 18px; }
    .nexar-insd-sidebar__title--tags { font-size: 18px; }
    /* cat-list font-size handled by .fs-p */
    .nexar-insd-sidebar__tag { font-size: 15px; padding: 6px 12px; }
    .nexar-insd-sidebar__recent-title { font-size: 18px; }
    .nexar-insd-sidebar__blog-title { font-size: 18px; }
    .nexar-insd-sidebar__blog-meta { font-size: 15px; }
    .nexar-insd-sidebar__blog-link { font-size: 15px; }
}
@media screen and (max-width: 480px) {
    .nexar-insd-article__heading { font-size: 24px; }
    /* article text font-size handled by .fs-p */
    .nexar-insd-article__subheading { font-size: 16px; }
    .nexar-insd-sidebar__recent-title { font-size: 16px; }
    .nexar-insd-sidebar__blog-title { font-size: 16px; }
    .nexar-insd-sidebar__blog-meta { font-size: 14px; }
    .nexar-insd-sidebar__blog-link { font-size: 14px; }
}


/* === Insight Detail Author + Prev/Next Nav === */

.nexar-insd-author-nav {
    /* background: #FFFFFF; */
    /* width: 1170px; */
    /* max-width: 100%; */
    /* margin: 0 auto; */
    /* padding: 0 0 80px; */
}

section.nexar-insd-author-nav {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.nexar-insd-author-nav__inner {
    max-width: 100%;
    margin: 0;
}

.nexar-insd-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #3699FD, #1CD47F);
    padding: 18px 28px;
    /* margin-bottom: 60px; */
}

.nexar-insd-author__icon {
    width: 64px;
    height: 64px;
    background: #150089;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nexar-insd-author__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nexar-insd-author__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
}

.nexar-insd-prevnext {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding: 28px 0;
}

.nexar-insd-prevnext__item {
    text-decoration: none;
    color: inherit;
    max-width: 45%;
}

.nexar-insd-prevnext__item--next {
    text-align: right;
    margin-left: auto;
}

.nexar-insd-prevnext__label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.nexar-insd-prevnext__label svg {
    width: 25px;
    height: 25px;
    fill: none;
}

.nexar-insd-prevnext__item--next .nexar-insd-prevnext__label {
    justify-content: flex-end;
}

.nexar-insd-prevnext__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.5;
    display: block;
}

.nexar-insd-prevnext__item:hover .nexar-insd-prevnext__label {
    color: #150089;
}

/* Author + Nav — responsive */
@media screen and (max-width: 1520px) {
    .nexar-insd-author-nav { width: 100%; padding: 0 80px 60px; }
    .nexar-insd-author__text { font-size: 28px; }
}
@media screen and (max-width: 1200px) {
    .nexar-insd-author-nav { padding: 0 60px 50px; }
    .nexar-insd-author__text { font-size: 24px; }
}
@media screen and (max-width: 1024px) {
    .nexar-insd-author-nav { padding: 0 40px 40px; }
    .nexar-insd-author__text { font-size: 22px; }
    .nexar-insd-prevnext__label { font-size: 18px; }
    .nexar-insd-prevnext__label svg { width: 22px; height: 22px; }
    /* prevnext title font-size handled by .fs-p */
}
@media screen and (max-width: 768px) {
    .nexar-insd-author-nav { padding: 0 24px 36px; }
    .nexar-insd-author__text { font-size: 18px; }
    .nexar-insd-prevnext { flex-direction: column; gap: 24px; }
    .nexar-insd-prevnext__item { max-width: 100%; }
    .nexar-insd-prevnext__item--next { text-align: left; }
    .nexar-insd-prevnext__item--next .nexar-insd-prevnext__label { justify-content: flex-start; }
    .nexar-insd-prevnext__label { font-size: 16px; }
    .nexar-insd-prevnext__label svg { width: 20px; height: 20px; }
    /* prevnext title font-size handled by .fs-p */
}
@media screen and (max-width: 480px) {
    .nexar-insd-author-nav { padding: 0 16px 28px; }
    .nexar-insd-author { padding: 14px 20px; gap: 12px; }
    .nexar-insd-author__text { font-size: 16px; }
    .nexar-insd-author__icon { width: 36px; height: 36px; }
    .nexar-insd-author__icon img { width: 24px; height: 24px; }
    .nexar-insd-prevnext__label { font-size: 15px; }
    .nexar-insd-prevnext__label svg { width: 18px; height: 18px; }
    /* prevnext title font-size handled by .fs-p */
}


/* === Insight Detail Related Posts === */

.nexar-insd-related {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.nexar-insd-related__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.nexar-insd-related__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin: 0 0 48px;
    line-height: 1.15;
}

.nexar-insd-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nexar-insd-related__card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.nexar-insd-related__card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.nexar-insd-related__card-img {
    height: 220px;
    overflow: hidden;
}

.nexar-insd-related__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.nexar-insd-related__card:hover .nexar-insd-related__card-img img {
    transform: scale(1.04);
}

.nexar-insd-related__card-body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nexar-insd-related__card-meta {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.nexar-insd-related__card-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.3;
}

.nexar-insd-related__card-desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.nexar-insd-related__card-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Insight Detail Related — responsive */
@media screen and (max-width: 1024px) {
    .nexar-insd-related__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .nexar-insd-related__heading { font-size: 42px; margin-bottom: 36px; }
    /* related card title font-size handled by .fs-h5 */
    .nexar-insd-related__card-desc { font-size: 17px; }
    /* related card link font-size handled by .fs-p */
}
@media screen and (max-width: 768px) {
    .nexar-insd-related__grid { grid-template-columns: 1fr; gap: 20px; }
    .nexar-insd-related__heading { font-size: 32px; margin-bottom: 28px; }
    .nexar-insd-related__card-img { height: 220px; }
    /* related card title font-size handled by .fs-h5 */
    .nexar-insd-related__card-desc { font-size: 16px; }
    /* related card link font-size handled by .fs-p */
}
@media screen and (max-width: 480px) {
    .nexar-insd-related__heading { font-size: 26px; }
    /* related card title font-size handled by .fs-h5 */
    .nexar-insd-related__card-desc { font-size: 14px; }
    /* related card link font-size handled by .fs-p */
    .nexar-insd-related__card-body { padding: 16px; }
}


/* === Case Study Detail — Overview === */

.nexar-csd-overview {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.nexar-csd-overview__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.nexar-csd-overview__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 20px;
}

.nexar-csd-overview__stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.nexar-csd-overview__stat {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
}

.nexar-csd-overview__stat-sep {
    font-size: 16px;
    color: #CCCCCC;
}

.nexar-csd-overview__image {
    width: 100%;
    overflow: hidden;
}

.nexar-csd-overview__image img {
    width: 100%;
    /* height: auto; */
    display: block;
    object-fit: cover;
    max-height: 100% !important;
}

/* Case Study Overview — responsive */
@media (max-width: 1366px) {
    .nexar-csd-overview__heading { font-size: 48px; }
}
@media (max-width: 1200px) {
    .nexar-csd-overview__heading { font-size: 42px; }
    /* csd overview stat font-size handled by .fs-h5 */
}
@media (max-width: 1024px) {
    .nexar-csd-overview__heading { font-size: 36px; }
    .nexar-csd-overview__stats { margin-bottom: 36px; }
    /* csd overview stat font-size handled by .fs-h5 */
}
@media (max-width: 768px) {
    .nexar-csd-overview__heading { font-size: 30px; }
    .nexar-csd-overview__stats { gap: 10px; margin-bottom: 28px; }
    /* csd overview stat font-size handled by .fs-h5 */
    .nexar-csd-overview__image img { max-height: 360px; }
}
@media (max-width: 480px) {
    .nexar-csd-overview__heading { font-size: 26px; }
    /* csd overview stat font-size handled by .fs-h5 */
    .nexar-csd-overview__image img { max-height: 260px; }
}


/* === Case Study Detail — Programme Overview === */

.nexar-csd-programme {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.nexar-csd-programme__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.nexar-csd-programme__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 24px;
}

.nexar-csd-programme__body {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.75;
}

.nexar-csd-programme__image {
    overflow: hidden;
}

.nexar-csd-programme__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
    max-height: 480px;
}

/* Case Study Programme — responsive */
@media (max-width: 1366px) {
    .nexar-csd-programme__heading { font-size: 48px; }
    .nexar-csd-programme__inner { gap: 40px; }
}
@media (max-width: 1200px) {
    .nexar-csd-programme__heading { font-size: 42px; }
    /* csd programme body font-size handled by .fs-p */
}
@media (max-width: 1024px) {
    .nexar-csd-programme__inner { gap: 32px; }
    .nexar-csd-programme__heading { font-size: 36px; }
    /* csd programme body font-size handled by .fs-p */
}
@media (max-width: 768px) {
    .nexar-csd-programme__inner { grid-template-columns: 1fr; gap: 28px; }
    .nexar-csd-programme__heading { font-size: 30px; }
    /* csd programme body font-size handled by .fs-p */
    .nexar-csd-programme__image img { min-height: 260px; max-height: 360px; }
}
@media (max-width: 480px) {
    .nexar-csd-programme__heading { font-size: 26px; }
    /* csd programme body font-size handled by .fs-p */
    .nexar-csd-programme__image img { min-height: 220px; max-height: 280px; }
}


/* === Case Study Detail — Outcomes === */

.nexar-csd-outcomes {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.nexar-csd-outcomes__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.nexar-csd-outcomes__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 48px;
}

.nexar-csd-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nexar-csd-outcomes__card {
    background: #FFFFFF;
    border: none;
    border-left: 1px solid #DDDDDD;
    border-radius: 0;
    padding: 20px !important;
}

.nexar-csd-outcomes__card:first-child {
    border-left: none;
}

.nexar-csd-outcomes__value {
    font-family: 'Noto Sans', sans-serif;
    font-size: 96px;
    font-weight: 300;
    line-height: 1;
    display: block;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-csd-outcomes__value--icon {
    margin-bottom: 16px;
    display: block;
    background: none;
    -webkit-text-fill-color: initial;
}

.nexar-csd-outcomes__value--icon svg {
    display: block;
}

.nexar-csd-outcomes__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.5;
    display: block;
}

/* Case Study Outcomes — responsive */
@media (max-width: 1366px) {
    .nexar-csd-outcomes__heading { font-size: 48px; }
    .nexar-csd-outcomes__value { font-size: 84px; }
}
@media (max-width: 1200px) {
    .nexar-csd-outcomes__heading { font-size: 42px; }
    .nexar-csd-outcomes__value { font-size: 72px; }
    /* csd outcomes label font-size handled by .fs-h5 */
}
@media (max-width: 1024px) {
    .nexar-csd-outcomes__grid { grid-template-columns: repeat(4, 1fr); }
    .nexar-csd-outcomes__heading { font-size: 36px; }
    .nexar-csd-outcomes__value { font-size: 56px; }
    /* csd outcomes label font-size handled by .fs-h5 */
}
@media (max-width: 768px) {
    .nexar-csd-outcomes__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .nexar-csd-outcomes__card:nth-child(odd) { border-left: none; }
    .nexar-csd-outcomes__value { font-size: 60px; }
    .nexar-csd-outcomes__heading { font-size: 30px; margin-bottom: 32px; }
    /* csd outcomes label font-size handled by .fs-h5 */
}
@media (max-width: 480px) {
    .nexar-csd-outcomes__heading { font-size: 26px; margin-bottom: 28px; }
    .nexar-csd-outcomes__grid { grid-template-columns: 1fr 1fr; }
    .nexar-csd-outcomes__value { font-size: 48px; }
    .nexar-csd-outcomes__value--icon svg { width: 48px; height: 48px; }
    /* csd outcomes label font-size handled by .fs-h5 */
    .nexar-csd-outcomes__card { padding: 24px 20px; }
}


/* === Case Study Detail — Other Case Studies === */

.nexar-csd-other {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.nexar-csd-other__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.nexar-csd-other__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nexar-csd-other__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.nexar-csd-other__nav {
    display: flex;
    gap: 12px;
}

.nexar-csd-other__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #000000;
    transition: color 0.2s;
}

.nexar-csd-other__arrow:hover { color: #1CD47F; }

.nexar-csd-other__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    overflow: hidden;
}

.nexar-csd-other__card {
    text-decoration: none;
    color: inherit;
    border: 1px solid #EEEEEE;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.nexar-csd-other__card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nexar-csd-other__card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.nexar-csd-other__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.nexar-csd-other__card:hover .nexar-csd-other__card-img img {
    transform: scale(1.04);
}

.nexar-csd-other__card-body {
    padding: 24px;
}

.nexar-csd-other__card-meta {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.nexar-csd-other__card-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    margin: 0 0 16px;
}

.nexar-csd-other__card-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* hover color removed */

/* Case Study Other — responsive */
@media (max-width: 1366px) {
    .nexar-csd-other__heading { font-size: 48px; }
}
@media (max-width: 1200px) {
    .nexar-csd-other__heading { font-size: 42px; }
    .nexar-csd-other__card-img { height: 240px; }
    /* csd other card title font-size handled by .fs-h4 */
    /* csd other card meta font-size handled by .fs-p */
    /* csd other card link font-size handled by .fs-p */
}
@media (max-width: 1024px) {
    .nexar-csd-other__heading { font-size: 36px; }
    .nexar-csd-other__track { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .nexar-csd-other__card-img { height: 220px; }
    /* csd other card title font-size handled by .fs-h4 */
    /* csd other card meta font-size handled by .fs-p */
    /* csd other card link font-size handled by .fs-p */
}
@media (max-width: 768px) {
    .nexar-csd-other__heading { font-size: 30px; }
    .nexar-csd-other__header { margin-bottom: 28px; }
    .nexar-csd-other__track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
    }
    .nexar-csd-other__card { scroll-snap-align: start; min-width: 280px; }
    .nexar-csd-other__card-img { height: 200px; }
    /* csd other card title font-size handled by .fs-h4 */
    /* csd other card meta font-size handled by .fs-p */
    /* csd other card link font-size handled by .fs-p */
}
@media (max-width: 480px) {
    .nexar-csd-other__heading { font-size: 26px; }
    /* csd other card title font-size handled by .fs-h4 */
    /* csd other card meta font-size handled by .fs-p */
    /* csd other card link font-size handled by .fs-p */
    .nexar-csd-other__card-body { padding: 16px; }
}


/* === Case Studies Listing === */

.nexar-cs-listing {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 60px;
}

.nexar-cs-listing__inner {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.nexar-cs-listing__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 40px;
}

.nexar-cs-listing__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000;
    margin: 0;
    line-height: 1.15;
    max-width: 700px;
    transition: all 0.4s ease;
}

.nexar-cs-listing__title:hover {
    background: linear-gradient(90deg, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-cs-listing__search {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 0;
    min-width: 260px;
    background: #fff;
}

.nexar-cs-listing__search-input {
    font-family: 'Noto Sans', sans-serif;
    border: none;
    outline: none;
    padding: 20px 16px;
    flex: 1;
    color: #1A1A1A;
    background: transparent;
}

.nexar-cs-listing__search-input::placeholder { color: #999; }

.nexar-cs-listing__search-btn {
    background: none;
    border: none;
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-left: 1px solid #ddd;
}

.nexar-cs-listing__cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}

/* Base Card */
.nexar-cs-card {
    display: flex;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    min-height: 280px;
}

.nexar-cs-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nexar-cs-card__content {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.4s ease;
}

.nexar-cs-card:hover .nexar-cs-card__content {
    background: linear-gradient(135deg, #3699FD 0%, #1CD47F 100%);
}

.nexar-cs-card__image {
    flex: 1;
    overflow: hidden;
    min-height: 280px;
}

.nexar-cs-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.nexar-cs-card:hover .nexar-cs-card__image img {
    transform: scale(1.04);
}

.nexar-cs-card__category {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    display: block;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    transition: color 0.4s ease;
}

.nexar-cs-card__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000;
    margin: 0 0 16px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.nexar-cs-card__desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.7;
    margin: 0 0 24px;
    transition: color 0.4s ease;
}

.nexar-cs-card__link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.4s ease;
}

.nexar-cs-card__link svg { transition: transform 0.3s ease; }
.nexar-cs-card:hover .nexar-cs-card__link svg { transform: translateX(4px); }

.nexar-cs-card:hover .nexar-cs-card__category { color: rgba(255, 255, 255, 0.85); }
.nexar-cs-card:hover .nexar-cs-card__title { color: #fff; }
.nexar-cs-card:hover .nexar-cs-card__desc { color: rgba(255, 255, 255, 0.9); }
.nexar-cs-card:hover .nexar-cs-card__link { color: #fff; text-decoration-color: rgba(255, 255, 255, 0.6); }

.nexar-cs-listing__no-results {
    text-align: center;
    padding: 60px 20px;
}

.nexar-cs-listing__no-results p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #777;
}

/* Pagination */
.nexar-cs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 40px;
}

.nexar-cs-pagination__btn {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    transition: color 0.2s;
}

.nexar-cs-pagination__btn:hover { color: #2CC5A0; }

.nexar-cs-pagination__pages {
    display: flex;
    gap: 4px;
    margin: 0 12px;
}

.nexar-cs-pagination__page {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.nexar-cs-pagination__page:hover { border-color: #ddd; }

.nexar-cs-pagination__page--active {
    border-color: #000;
    color: #000;
    font-weight: 500;
}

/* Case Studies Listing — responsive */
@media screen and (max-width: 1520px) {
    /* cs listing title font-size handled by .fs-h2 */
    /* cs card title font-size handled by .fs-h3 */
    /* cs card category font-size handled by .fs-p */
    .nexar-cs-card__desc { font-size: 18px; }
    /* cs card link font-size handled by .fs-p */
}
@media screen and (max-width: 1366px) {
    /* cs listing title font-size handled by .fs-h2 */
    /* cs card title font-size handled by .fs-h3 */
    /* cs card category font-size handled by .fs-p */
    .nexar-cs-card__desc { font-size: 16px; }
    /* cs card link font-size handled by .fs-p */
    .nexar-cs-card__content { padding: 36px 32px; }
}
@media screen and (max-width: 1200px) {
    .nexar-cs-listing__title { max-width: 380px; }
    /* cs card title font-size handled by .fs-h3 */
    /* cs card category font-size handled by .fs-p */
    .nexar-cs-card__desc { font-size: 15px; }
    /* cs card link font-size handled by .fs-p */
    .nexar-cs-card__content { padding: 30px 28px; }
    .nexar-cs-listing__search { min-width: 230px; }
}
@media screen and (max-width: 1024px) {
    .nexar-cs-listing__title { max-width: 340px; }
    .nexar-cs-listing__search { min-width: 200px; }
    /* cs card title font-size handled by .fs-h3 */
    /* cs card category font-size handled by .fs-p */
    .nexar-cs-card__desc { font-size: 14px; }
    /* cs card link font-size handled by .fs-p */
    .nexar-cs-card__content { padding: 24px 22px; }
    .nexar-cs-card { min-height: 240px; }
    .nexar-cs-card__image { min-height: 240px; }
}
@media screen and (max-width: 768px) {
    .nexar-cs-listing__header { flex-direction: column; gap: 16px; }
    .nexar-cs-listing__title { max-width: 100%; }
    .nexar-cs-listing__search { width: 100%; min-width: unset; }
    .nexar-cs-card { flex-direction: column-reverse; min-height: auto; }
    .nexar-cs-card__image { min-height: 220px; max-height: 260px; }
    .nexar-cs-card__content { padding: 24px 20px; }
    /* cs card title font-size handled by .fs-h3 */
    /* cs card category font-size handled by .fs-p */
    .nexar-cs-card__desc { font-size: 13px; }
    /* cs card link font-size handled by .fs-p */
    .nexar-cs-listing__cards { gap: 24px; }
}
@media screen and (max-width: 480px) {
    /* cs listing title font-size handled by .fs-h2 */
    .nexar-cs-listing__search-input { padding: 10px 12px; }
    .nexar-cs-card__image { min-height: 180px; max-height: 220px; }
    .nexar-cs-card__content { padding: 20px 16px; }
    /* cs card title font-size handled by .fs-h3 */
    /* cs card category font-size handled by .fs-p */
    .nexar-cs-card__desc { font-size: 12px; }
    /* cs card link font-size handled by .fs-p */
    .nexar-cs-listing__cards { gap: 20px; }
    .nexar-cs-pagination__btn { font-size: 13px; }
    .nexar-cs-pagination__page { width: 32px; height: 32px; font-size: 13px; }
}


/* === Destination Detail — Overview === */

.nexar-destdetail-overview {
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
}

.nexar-destdetail-overview__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.nexar-destdetail-overview__label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    display: block;
    margin-bottom: 12px;
}

.nexar-destdetail-overview__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    color: #000000;
    margin: 0 0 24px;
    line-height: 1.15;
}

.nexar-destdetail-overview__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.7;
}

.nexar-destdetail-overview__right {
    position: relative;
    min-height: 550px;
    padding: 0;
}

.nexar-destdetail-overview__img {
    position: absolute;
    overflow: hidden;
}

.nexar-destdetail-overview__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nexar-destdetail-overview__img--1 {
    top: 0;
    left: 0;
    width: 45%;
    height: 38%;
    z-index: 1;
}

.nexar-destdetail-overview__img--2 {
    top: 0;
    right: 0;
    width: 50%;
    height: 70%;
    z-index: 2;
}

.nexar-destdetail-overview__img--3 {
    bottom: 0;
    left: 10%;
    width: 55%;
    height: 50%;
    z-index: 3;
}

/* Destination Detail Overview — responsive */
@media (max-width: 1200px) {
    .nexar-destdetail-overview__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    /* destdetail overview title font-size handled by .fs-h3 */
    .nexar-destdetail-overview__text { font-size: 16px; }
    .nexar-destdetail-overview__right { min-height: 400px; }
}
@media (max-width: 1024px) {
    .nexar-destdetail-overview__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    /* destdetail overview title font-size handled by .fs-h3 */
    .nexar-destdetail-overview__text { font-size: 15px; }
    .nexar-destdetail-overview__right { min-height: 350px; }
}
@media (max-width: 768px) {
    .nexar-destdetail-overview__inner { grid-template-columns: 1fr; }
    .nexar-destdetail-overview__right { min-height: 380px; }
}
@media (max-width: 480px) {
    .nexar-destdetail-overview__right { min-height: 320px; }
}


/* === Destination Detail — Venue CTA === */

.nexar-destdetail-venue {
    background: #FFFFFF;
    padding-top: 60px;
    padding-bottom: 60px;
}

.nexar-destdetail-venue__inner {
    max-width: 100%;
}

.nexar-destdetail-venue__card {
    background: #150089;
    border-radius: 0;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
}

.nexar-destdetail-venue__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.nexar-destdetail-venue__heading {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 24px;
    line-height: 1.15;
}

.nexar-destdetail-venue__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 40px;
}

.nexar-destdetail-venue__btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(to right, #3699FD, #1CD47F);
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    /* border-radius: 6px; */
    transition: opacity 0.3s ease;
}

.nexar-destdetail-venue__btn:hover {
    opacity: 0.9;
}

.nexar-destdetail-venue__pattern {
    position: absolute;
    top: 4%;
    right: 4%;
    width: 452px;
    /* height: 400px; */
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.nexar-destdetail-venue__pattern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Destination Detail Venue — responsive */
@media screen and (max-width: 1366px) {
    .nexar-destdetail-venue__card { padding: 60px 60px; }
    /* destdetail venue heading font-size handled by .fs-h3 */
}
@media screen and (max-width: 1200px) {
    .nexar-destdetail-venue__card { padding: 50px 50px; }
    /* destdetail venue heading font-size handled by .fs-h3 */
    .nexar-destdetail-venue__text { font-size: 16px; }
}
@media screen and (max-width: 1024px) {
    .nexar-destdetail-venue__card { padding: 40px 40px; }
    /* destdetail venue heading font-size handled by .fs-h3 */
    .nexar-destdetail-venue__pattern { width: 340px; height: 300px; top: 10%; right: 2%; }
}
@media screen and (max-width: 768px) {
    .nexar-destdetail-venue__card { padding: 36px 28px; }
    /* destdetail venue heading font-size handled by .fs-h3 */
    .nexar-destdetail-venue__text { font-size: 15px; margin-bottom: 28px; }
    .nexar-destdetail-venue__pattern { width: 200px; height: 200px; top: 15%; right: 3%; }
}
@media screen and (max-width: 480px) {
    .nexar-destdetail-venue__card { padding: 28px 20px; }
    /* destdetail venue heading font-size handled by .fs-h3 */
    .nexar-destdetail-venue__text { font-size: 14px; }
    .nexar-destdetail-venue__btn { padding: 12px 28px; font-size: 14px; }
    .nexar-destdetail-venue__pattern { display: none; }
}


/* === Destination Detail — Cultural Highlights === */

.nexar-destdetail-cultural {
    background: #FFFFFF;
    padding-top: 60px;
    padding-bottom: 0;
    overflow: hidden;
}

.nexar-destdetail-cultural__inner {
    max-width: 100%;
    text-align: center;
}

.nexar-destdetail-cultural__heading {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000000;
    margin: 0 0 24px;
    line-height: 1.15;
}

.nexar-destdetail-cultural__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.7;
    margin: 0 auto 60px;
    max-width: 900px;
}

.nexar-destdetail-cultural__collage {
    position: relative;
    height: 420px;
    max-width: 100%;
}

.nexar-destdetail-cultural__photo {
    position: absolute;
    overflow: visible;
    background: transparent;
    padding: 0;
}

.nexar-destdetail-cultural__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)); */
}

.nexar-destdetail-cultural__photo--1 {
    left: 18%;
    top: 10%;
    width: 220px;
    height: 280px;
    transform: rotate(-6deg);
    z-index: 1;
}

.nexar-destdetail-cultural__photo--2 {
    left: 30%;
    top: 5%;
    width: 240px;
    height: 300px;
    transform: rotate(3deg);
    z-index: 2;
}

.nexar-destdetail-cultural__photo--3 {
    left: 42%;
    top: 8%;
    width: 260px;
    height: 280px;
    transform: rotate(-2deg);
    z-index: 3;
}

.nexar-destdetail-cultural__photo--4 {
    left: 55%;
    top: 2%;
    width: 240px;
    height: 300px;
    transform: rotate(4deg);
    z-index: 2;
}

.nexar-destdetail-cultural__photo--5 {
    left: 67%;
    top: 15%;
    width: 220px;
    height: 280px;
    transform: rotate(6deg);
    z-index: 1;
}

/* Destination Detail Cultural — responsive */
@media screen and (max-width: 1520px) {
    /* destdetail cultural heading font-size handled by .fs-h3 */
    .nexar-destdetail-cultural__photo--1,
    .nexar-destdetail-cultural__photo--5 { width: 190px; height: 250px; }
    .nexar-destdetail-cultural__photo--2,
    .nexar-destdetail-cultural__photo--4 { width: 210px; height: 270px; }
    .nexar-destdetail-cultural__photo--3 { width: 230px; height: 260px; }
    .nexar-destdetail-cultural__collage { height: 380px; }
}
@media screen and (max-width: 1366px) {
    /* destdetail cultural heading font-size handled by .fs-h3 */
    .nexar-destdetail-cultural__photo--1,
    .nexar-destdetail-cultural__photo--5 { width: 170px; height: 220px; }
    .nexar-destdetail-cultural__photo--2,
    .nexar-destdetail-cultural__photo--4 { width: 190px; height: 240px; }
    .nexar-destdetail-cultural__photo--3 { width: 210px; height: 230px; }
    .nexar-destdetail-cultural__collage { height: 340px; }
}
@media screen and (max-width: 1200px) {
    /* destdetail cultural heading font-size handled by .fs-h3 */
    .nexar-destdetail-cultural__text { font-size: 16px; }
    .nexar-destdetail-cultural__photo--1,
    .nexar-destdetail-cultural__photo--5 { width: 150px; height: 200px; }
    .nexar-destdetail-cultural__photo--2,
    .nexar-destdetail-cultural__photo--4 { width: 170px; height: 220px; }
    .nexar-destdetail-cultural__photo--3 { width: 190px; height: 210px; }
    .nexar-destdetail-cultural__collage { height: 300px; }
}
@media screen and (max-width: 1024px) {
    /* destdetail cultural heading font-size handled by .fs-h3 */
    .nexar-destdetail-cultural__photo--1,
    .nexar-destdetail-cultural__photo--5 { width: 130px; height: 170px; }
    .nexar-destdetail-cultural__photo--2,
    .nexar-destdetail-cultural__photo--4 { width: 150px; height: 190px; }
    .nexar-destdetail-cultural__photo--3 { width: 170px; height: 180px; }
    .nexar-destdetail-cultural__collage { height: 260px; }
}
@media screen and (max-width: 768px) {
    /* destdetail cultural heading font-size handled by .fs-h3 */
    .nexar-destdetail-cultural__text { font-size: 15px; margin-bottom: 40px; }
    .nexar-destdetail-cultural__collage { height: 220px; }
    .nexar-destdetail-cultural__photo--1,
    .nexar-destdetail-cultural__photo--5 { width: 100px; height: 130px; }
    .nexar-destdetail-cultural__photo--2,
    .nexar-destdetail-cultural__photo--4 { width: 115px; height: 150px; }
    .nexar-destdetail-cultural__photo--3 { width: 130px; height: 140px; }
}
@media screen and (max-width: 480px) {
    /* destdetail cultural heading font-size handled by .fs-h3 */
    .nexar-destdetail-cultural__text { font-size: 14px; margin-bottom: 30px; }
    .nexar-destdetail-cultural__collage { height: 180px; max-height: 120px; }
    .nexar-destdetail-cultural__photo--1,
    .nexar-destdetail-cultural__photo--5 { width: 80px; height: 110px; }
    .nexar-destdetail-cultural__photo--2,
    .nexar-destdetail-cultural__photo--4 { width: 95px; height: 125px; }
    .nexar-destdetail-cultural__photo--3 { width: 110px; height: 120px; }
}


/* === Destination Detail — Plan Your Event CTA === */

.nexar-destdetail-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.nexar-destdetail-cta__inner {
    /* max-width: 1400px; */
    width: 100%;
    margin: 0 auto;
}

.nexar-destdetail-cta__card {
    background: #fff;
    padding: 44px 40px;
    max-width: 480px;
    position: relative;
    z-index: 2;
}

.nexar-destdetail-cta__heading {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.15;
    margin: 0 0 20px;
}

.nexar-destdetail-cta__heading--highlight {
    background: linear-gradient(to right, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-destdetail-cta__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #1A1A1A;
    margin: 0 0 36px;
}

.nexar-destdetail-cta__btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(to right, #3699FD, #1CD47F);
    text-decoration: none;
    transition: opacity 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
}

.nexar-destdetail-cta__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent               0%,
        rgba(255, 255, 255, 0.26) 50%,
        transparent               100%
    );
    transform: translateX(-150%) skewX(-20deg);
    pointer-events: none;
}

.nexar-destdetail-cta__btn:hover {
    opacity: 0.9;
}

.nexar-destdetail-cta__btn:hover::after {
    animation: nexar-shine 0.55s ease-in-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    .nexar-destdetail-cta__btn::after {
        display: none;
    }
}

/* Destination Detail CTA — responsive */
@media screen and (max-width: 1520px) {
    .nexar-destdetail-cta { min-height: 450px; }
    /* destdetail cta heading font-size handled by .fs-h3 */
    .nexar-destdetail-cta__card { padding: 48px 44px; max-width: 500px; }
    .nexar-destdetail-cta__text { font-size: 18px; }
    .nexar-destdetail-cta__btn { font-size: 18px; }
}
@media screen and (max-width: 1366px) {
    .nexar-destdetail-cta { min-height: 420px; }
    /* destdetail cta heading font-size handled by .fs-h3 */
    .nexar-destdetail-cta__card { padding: 44px 40px; max-width: 480px; }
    .nexar-destdetail-cta__text { font-size: 17px; }
    .nexar-destdetail-cta__btn { font-size: 17px; }
}
@media screen and (max-width: 1200px) {
    .nexar-destdetail-cta { min-height: 400px; }
    /* destdetail cta heading font-size handled by .fs-h3 */
    .nexar-destdetail-cta__card { padding: 40px 36px; max-width: 460px; }
    .nexar-destdetail-cta__text { font-size: 16px; }
    .nexar-destdetail-cta__btn { font-size: 16px; }
}
@media screen and (max-width: 1024px) {
    .nexar-destdetail-cta { min-height: 380px; }
    /* destdetail cta heading font-size handled by .fs-h3 */
    .nexar-destdetail-cta__card { padding: 40px 36px; max-width: 420px; }
    .nexar-destdetail-cta__text { font-size: 16px; }
    .nexar-destdetail-cta__btn { font-size: 16px; }
}
@media screen and (max-width: 992px) {
    .nexar-destdetail-cta { min-height: 350px; }
    /* destdetail cta heading font-size handled by .fs-h3 */
    .nexar-destdetail-cta__card { padding: 40px 36px; max-width: 380px; }
    .nexar-destdetail-cta__text { font-size: 15px; }
    .nexar-destdetail-cta__btn { font-size: 16px; }
}
@media screen and (max-width: 768px) {
    .nexar-destdetail-cta {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 80px 120px;
        min-height: 500px;
        display: flex;
        align-items: center;
        align-content: flex-start;
        flex-wrap: wrap;
    }
    /* destdetail cta heading font-size handled by .fs-h3 */
    .nexar-destdetail-cta__inner { width: 80%; }
    .nexar-destdetail-cta__card { max-width: 100%; padding: 32px 28px; }
    .nexar-destdetail-cta__text { font-size: 14px; margin-bottom: 24px; }
    .nexar-destdetail-cta__btn { padding: 14px 28px; font-size: 14px; }
}
@media screen and (max-width: 480px) {
    .nexar-destdetail-cta { min-height: auto; flex-direction: column; }
    .nexar-destdetail-cta__card { max-width: 100%; padding: 24px 20px; }
    /* destdetail cta heading font-size handled by .fs-h3 */
    .nexar-destdetail-cta__text { font-size: 13px; }
    .nexar-destdetail-cta__btn { font-size: 14px; }
}


/* === Insights Slider (used on destination detail) === */

.nexar-ins-slider {
    position: relative;
    overflow: hidden;
}

.nexar-ins-slider__inner {
    position: relative;
}

.nexar-ins-slider__track {
    position: relative;
}

.nexar-ins-slider__slide {
    display: none;
    width: 100%;
}

.nexar-ins-slider__slide.is-active {
    text-decoration: none;
    color: inherit;
    display: flex !important;
    flex-direction: row !important;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    animation: insSlideIn 0.6s ease forwards;
}

@keyframes insSlideIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.nexar-ins-slider__content {
    background: linear-gradient(135deg, #3699FD 0%, #1CD47F 100%);
    padding: 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 45%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.nexar-ins-slider__meta {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.nexar-ins-slider__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0 0 16px;
    text-transform: capitalize;
}

.nexar-ins-slider__excerpt {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 28px;
    text-transform: capitalize;
}

.nexar-ins-slider__link {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s;
}

.nexar-ins-slider__link:hover {
    opacity: 0.8;
}

.nexar-ins-slider__image {
    position: relative;
    overflow: hidden;
    width: 55%;
    flex-shrink: 0;
    height: auto;
}

.nexar-ins-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.nexar-ins-slider__indicators {
    position: absolute;
    bottom: 24px;
    left: 48px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.nexar-ins-slider__dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.nexar-ins-slider__dot.is-active {
    background: #FFFFFF;
}

/* Insights Slider — responsive */
@media screen and (max-width: 1520px) {
    .nexar-ins-slider__content { padding: 44px 44px; }
    .nexar-ins-slider__title { font-size: 30px; }
    .nexar-ins-slider__indicators { left: 44px; }
}
@media screen and (max-width: 1366px) {
    .nexar-ins-slider__content { padding: 40px 40px; }
    .nexar-ins-slider__title { font-size: 28px; }
    .nexar-ins-slider__excerpt { font-size: 14px; }
    .nexar-ins-slider__indicators { left: 40px; bottom: 20px; }
}
@media screen and (max-width: 1200px) {
    .nexar-ins-slider__content { padding: 36px 36px; }
    .nexar-ins-slider__title { font-size: 26px; }
    .nexar-ins-slider__meta { font-size: 13px; }
    .nexar-ins-slider__excerpt { font-size: 14px; }
    .nexar-ins-slider__indicators { bottom: 18px; left: 36px; }
}
@media screen and (max-width: 1024px) {
    .nexar-ins-slider__content { padding: 32px 28px; }
    .nexar-ins-slider__title { font-size: 22px; }
    .nexar-ins-slider__excerpt { font-size: 13px; margin-bottom: 20px; }
    .nexar-ins-slider__indicators { bottom: 16px; left: 28px; }
    .nexar-ins-slider__dot { width: 22px; }
}
@media screen and (max-width: 768px) {
    .nexar-ins-slider__slide.is-active {
        flex-direction: column !important;
        /* Smooth fade-in when a slide becomes active on mobile.
           Desktop keeps the instant swap so layout doesn't flicker. */
        animation: nexarInsFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes nexarInsFadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    .nexar-ins-slider__content { width: 100%; padding: 32px 28px; }
    .nexar-ins-slider__image { width: 100%; height: 260px; }
    .nexar-ins-slider__title { font-size: 22px; }
    .nexar-ins-slider__meta { font-size: 12px; margin-bottom: 14px; }
    .nexar-ins-slider__excerpt { font-size: 13px; margin-bottom: 18px; }
    .nexar-ins-slider__indicators { position: relative; bottom: auto; left: auto; padding: 14px 28px; background: linear-gradient(135deg, #3699FD 0%, #1CD47F 100%); }
    .nexar-ins-slider__dot { width: 20px; }
}
@media screen and (max-width: 480px) {
    .nexar-ins-slider__content { padding: 24px 20px; }
    .nexar-ins-slider__title { font-size: 20px; }
    .nexar-ins-slider__excerpt { font-size: 12px; }
    .nexar-ins-slider__indicators { padding: 12px 20px; }
}


/* === Our Philosophy Section === */

.nexar-philosophy {
    background: #fff;
}

.nexar-philosophy__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Top: text + purple card */
.nexar-philosophy__top {
    display: grid;
    grid-template-columns: 1fr 358px;
    gap: 80px;
    align-items: stretch;
    margin-bottom: 64px;
}

.nexar-philosophy__label {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.nexar-philosophy__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 28px;
    max-width: 580px;
}

.nexar-philosophy__desc {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.75;
    margin: 0 0 16px;
}

.nexar-philosophy__desc:last-child {
    margin-bottom: 0;
}

/* Purple "15+" card */
.nexar-philosophy__card {
    /* background: #150089; */
    /* padding: 48px 40px !important; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 358px; */
    /* min-height: 370px; */
    /* box-sizing: border-box; */
}

.nexar-philosophy__card--image {
    background: transparent !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 0;
    height: 100%;
}
.nexar-philosophy__card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nexar-philosophy__card-number {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-size: 90px;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

@keyframes nexar-counter-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.12); }
    70%  { transform: scale(0.96); }
    100% { transform: scale(1); }
}

.nexar-philosophy__card-number.is-done {
    animation: nexar-counter-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.nexar-philosophy__card-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.25;
    font-style: normal;
    font-size: 40px;
    padding: 0 0 0 2%;
}

/* 4 Feature cards */
.nexar-philosophy__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: none;
    padding-top: 0;
}

.nexar-philosophy__feature {
    padding: 40px 32px 40px 0;
    border-right: 1px solid #e0e0e0;
}

.nexar-philosophy__feature:last-child {
    border-right: none;
    padding-right: 0;
}

.nexar-philosophy__feature:first-child {
    padding-left: 0;
}

.nexar-philosophy__feature:not(:first-child) {
    margin-left: 20px;
}

/* Icon float animation */
@keyframes nexar-icon-float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-7px); }
    100% { transform: translateY(0); }
}

.nexar-philosophy__feature-icon {
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    animation: nexar-icon-float 3.2s ease-in-out infinite;
    will-change: transform;
}

.nexar-philosophy__feature:nth-child(2) .nexar-philosophy__feature-icon { animation-delay: 0.5s; }
.nexar-philosophy__feature:nth-child(3) .nexar-philosophy__feature-icon { animation-delay: 1.0s; }
.nexar-philosophy__feature:nth-child(4) .nexar-philosophy__feature-icon { animation-delay: 1.5s; }

.nexar-philosophy__feature-icon img {
    width: 60px;
    height: 60px;
    display: block;
}

.nexar-philosophy__feature-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px;
    line-height: 1.3;
}

.nexar-philosophy__feature-desc {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.65;
    margin: 0;
}

/* Philosophy responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-philosophy__top {
        grid-template-columns: 1fr 300px;
        gap: 48px;
    }
    .nexar-philosophy__card {
        width: 100%;
        padding: 40px 32px;
    }
}

/* Philosophy responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-philosophy__inner {
        padding: 0;
    }
    .nexar-philosophy__top {
        grid-template-columns: 1fr 240px;
        gap: 32px;
        align-items: stretch;
    }
    .nexar-philosophy__card {
        width: 240px;
        height: auto;
        padding: 32px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nexar-philosophy__feature-icon,
    .nexar-philosophy__feature-icon img {
        width: 50px;
        height: 50px;
    }
    .nexar-philosophy__features {
        grid-template-columns: repeat(2, 1fr);
    }
    .nexar-philosophy__feature {
        border-right: none;
        padding: 28px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    .nexar-philosophy__feature:not(:first-child) {
        padding-left: 0;
    }
    .nexar-philosophy__feature:nth-child(odd) {
        padding-right: 24px;
        border-right: 1px solid #e0e0e0;
    }
    .nexar-philosophy__feature:nth-child(even) {
        padding-left: 24px;
    }
    .nexar-philosophy__feature:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* Philosophy responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-philosophy__inner {
        padding: 0;
    }
    .nexar-philosophy__top {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }
    .nexar-philosophy__card {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 20px 24px !important;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        min-height: auto;
        box-sizing: border-box;
        overflow: hidden;
    }
    .nexar-philosophy__card-number {
        font-size: 56px !important;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .nexar-philosophy__card-text {
        font-size: 22px !important;
        padding: 0 !important;
        line-height: 1.2;
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .nexar-philosophy__feature-icon,
    .nexar-philosophy__feature-icon img {
        width: 44px;
        height: 44px;
    }
    .nexar-philosophy__features {
        grid-template-columns: 1fr;
    }
    .nexar-philosophy__feature {
        border-right: none !important;
        border-left: none !important;
        padding: 24px 0 !important;
        border-bottom: 1px solid #d0d0d0 !important;
    }
    .nexar-philosophy__feature:last-child {
        border-bottom: none !important;
    }
    .nexar-philosophy__feature:not(:first-child) {
        margin-left: 0;
    }
}

/* Philosophy responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-philosophy__card {
        padding: 16px 20px;
        gap: 10px;
    }
    .nexar-philosophy__feature-icon,
    .nexar-philosophy__feature-icon img {
        width: 38px;
        height: 38px;
    }
}


/* === Services Section === */

.nexar-services {
    background: #150089;
    position: relative;
    overflow: hidden;
}

.nexar-services__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Decorative bars — left edge, gum animation */
@keyframes nexar-svc-gum {
    0%   { transform: scaleX(0)   translateY(0);     animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
    28%  { transform: scaleX(1)   translateY(0);     animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
    36%  { transform: scaleX(1)   translateY(-10px); animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
    44%  { transform: scaleX(1)   translateY(0);     animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
    50%  { transform: scaleX(1)   translateY(-5px);  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
    57%  { transform: scaleX(1)   translateY(0);     animation-timing-function: linear; }
    65%  { transform: scaleX(1)   translateY(0);     animation-timing-function: cubic-bezier(0.55, 0, 0.45, 1); }
    100% { transform: scaleX(0)   translateY(0); }
}

.nexar-services__bars {
    position: absolute;
    left: 0;
    top: 195px;
    z-index: 2;
    width: 221px;
    height: 110px;
}

.nexar-services__bar {
    position: absolute;
    display: block;
    height: auto;
    transform-origin: left center;
    transform: scaleX(0);
}

.nexar-services__bar--2 { width: 170px; left: 0;     top: 0;    }
.nexar-services__bar--1 { width: 51px;  left: 125px; top: -15px; }
.nexar-services__bar--3 { width: 144px; left: 0;     top: 26px; }
.nexar-services__bar--4 { width: 39px;  left: 0;     top: 52px; }

.nexar-services__bars.bars-entered .nexar-services__bar--2 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0s;
}
.nexar-services__bars.bars-entered .nexar-services__bar--1 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0.2s;
}
.nexar-services__bars.bars-entered .nexar-services__bar--3 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0.4s;
}
.nexar-services__bars.bars-entered .nexar-services__bar--4 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .nexar-services__bar { transform: scaleX(1) translateY(0) !important; animation: none !important; }
}

/* Top row */
.nexar-services__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
    padding-right: 0;
}

.nexar-services__text {
    max-width: 900px;
}

.nexar-services__label {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.nexar-services__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0 0 32px;
}

.nexar-services__title strong {
    font-weight: 600;
    font-style: normal;
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-services__desc {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.75;
    margin: 0;
    max-width: 860px;
}

/* Actions: button + arrows */
.nexar-services__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.nexar-services__btn {
    display: inline-block;
    padding: 16px 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.nexar-services__btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nexar-services__arrows {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nexar-services__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #ffffff;
    transition: color 0.35s ease;
}

.nexar-services__arrow-img {
    width: 28px;
    height: 20px;
    display: block;
}

.nexar-services__arrow-img--flip {
    transform: scaleX(-1);
}

.nexar-services__arrow--prev,
.nexar-services__arrow--next {
    opacity: 1;
}

.nexar-services__arrow:hover,
.nexar-services__arrow.is-active {
    color: #1CD47F;
}

.nexar-services__arrow.swiper-button-disabled,
.nexar-services__arrow.swiper-button-lock {
    display: flex !important;
    opacity: 0.5;
}

.nexar-services__arrows .swiper-button-lock {
    display: flex !important;
}

/* Cards slider — extends to right edge using var(--pad-section) */
.nexar-services__slider {
    overflow: hidden;
    position: relative;
    width: calc(100% + var(--pad-section));
    margin-right: calc(-1 * var(--pad-section));
    opacity: 0;
    max-height: 500px;
    transition: opacity 0.3s ease;
}

.nexar-services__slider.swiper-initialized {
    opacity: 1;
}

.nexar-services__track {
    display: flex;
}

.nexar-services__card {
    position: relative;
    height: 500px !important;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    border: none;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexar-services__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38);
}

.nexar-services__card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexar-services__card:hover img {
    transform: scale(1.07);
}

/* Card overlay */
.nexar-services__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexar-services__card:hover .nexar-services__card-overlay {
    background: linear-gradient(to right, #3699FD 0%, #1CD47F 100%);
    padding: 24px;
}

.nexar-services__card-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.25;
}

/* Read more link — slides up on hover */
.nexar-services__card-link {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0;
    transform: translateY(8px);
    margin-top: 8px;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.nexar-services__card:hover .nexar-services__card-link {
    opacity: 1;
    transform: translateY(0);
}

.nexar-services__card-link:hover {
    color: #fff;
}

/* Services responsive — 1536px range (1521–1599) — bars only, prevent overlap onto text column (--pad-section is 150px here) */
@media screen and (min-width: 1521px) and (max-width: 1599px) {
    .nexar-services__bars { transform-origin: top left; transform: scale(0.65); }
}

/* Services responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-services__bars { transform-origin: top left; transform: scale(0.88); }
    .nexar-services__card-title { font-size: 28px; }
    .nexar-services__card-link { font-size: 18px; }
    .nexar-services__btn { font-size: 18px; padding: 14px 32px; }
}

/* Services responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-services__bars { transform: scale(0.78); }
    .nexar-services__card-title { font-size: 26px; }
    .nexar-services__card-link { font-size: 16px; }
    .nexar-services__btn { font-size: 17px; padding: 14px 30px; }
}

/* Services responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-services__bars { transform: scale(0.68); }
    .nexar-services__card-title { font-size: 24px; }
    .nexar-services__card-link { font-size: 15px; }
    .nexar-services__btn { font-size: 16px; padding: 13px 28px; }
}

/* Services responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-services__bars { transform: scale(0.58); }
    .nexar-services__card-title { font-size: 22px; }
    .nexar-services__card-link { font-size: 14px; }
    .nexar-services__btn { font-size: 15px; padding: 12px 26px; }
    .nexar-services__top { padding-right: 0; }
}

/* Services responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-services__bars { transform: scale(0.46); }
    .nexar-services__text { max-width: 100%; }
    .nexar-services__btn { font-size: 14px; padding: 12px 24px; }
    .nexar-services__arrow-img { width: 24px; height: 17px; }
    .nexar-services__top {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
    }
    .nexar-services__actions {
        width: 100%;
        justify-content: space-between;
    }
    .nexar-services__card-title { font-size: 20px; }
    .nexar-services__card-link { font-size: 13px; }
}

/* Services responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-services__btn { font-size: 13px; padding: 11px 22px; }
    .nexar-services__arrows { display: none; }
    .nexar-services__bars { display: none; }
    .nexar-services__card-title { font-size: 18px; }
    .nexar-services__card-link { font-size: 12px; }
    .nexar-services__actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Services responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-services__btn { font-size: 12px; padding: 10px 20px; }
    .nexar-services__card-title { font-size: 16px; }
    .nexar-services__card-link { font-size: 11px; }
}


/* === Destinations Section === */

.nexar-destinations {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.nexar-destinations__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.nexar-destinations__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000000;
    margin: 0 0 28px;
    line-height: 1.1;
}

.nexar-destinations__desc {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    line-height: 1.75;
    color: #1A1A1A;
    max-width: 860px;
    margin: 0 0 40px;
}

.nexar-destinations__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nexar-destinations__btn {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #150089;
    padding: 16px 36px;
    border: 2px solid #150089;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.nexar-destinations__btn:hover {
    background: #150089;
    color: #fff;
}

.nexar-destinations__arrows {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nexar-destinations__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    transition: color 0.35s ease;
}

.nexar-destinations__arrow-img {
    width: 28px;
    height: 20px;
    display: block;
}

.nexar-destinations__arrow-img--flip {
    transform: scaleX(-1);
}

.nexar-destinations__arrow:hover,
.nexar-destinations__arrow.is-active {
    color: #1CD47F;
}

/* Destinations slider — Swiper */
.nexar-destinations__slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: transparent;
    line-height: 0;
    font-size: 0;
}

.nexar-destinations__slider .swiper-wrapper {
    align-items: stretch;
}

.nexar-destinations__slider.swiper {
    overflow: hidden;
}

.nexar-destinations__track {
    display: flex;
    gap: 0;
}

/* Swiper overrides */
.nexar-destinations__card.swiper-slide {
    height: 480px !important;
    overflow: visible !important;
}

.nexar-destinations__arrow.swiper-button-disabled,
.nexar-destinations__arrow.swiper-button-lock {
    opacity: 1;
    display: flex !important;
}

.nexar-destinations__arrow::after {
    display: none;
}

.nexar-destinations__arrows .swiper-button-lock {
    display: flex !important;
}

/* Diagonal card shapes */
.nexar-destinations__card {
    position: relative;
    height: 480px;
    overflow: visible !important;
    cursor: pointer;
}

.nexar-destinations__card-shape {
    position: absolute;
    top: 0;
    left: -50px;
    width: calc(100% + 50px);
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
}

.nexar-destinations__card-shape img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexar-destinations__card:hover .nexar-destinations__card-shape img {
    filter: grayscale(100%);
    transform: scale(1.06);
}

/* Hover tint — per-card brand colours */
.nexar-destinations__card-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
}

.nexar-destinations__card:nth-child(3n+1) .nexar-destinations__card-shape::before {
    background: rgba(21, 0, 137, 0.75);
}

.nexar-destinations__card:nth-child(3n+2) .nexar-destinations__card-shape::before {
    background: rgba(28, 212, 127, 0.72);
}

.nexar-destinations__card:nth-child(3n+3) .nexar-destinations__card-shape::before {
    background: rgba(54, 153, 253, 0.72);
}

.nexar-destinations__card:hover .nexar-destinations__card-shape::before,
.nexar-destinations__card.swiper-slide-next .nexar-destinations__card-shape::before {
    opacity: 1;
}

.nexar-destinations__card.swiper-slide-next .nexar-destinations__card-shape img {
    transform: scale(1.06);
}

/* Overlay */
.nexar-destinations__card-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.nexar-destinations__card-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Destinations responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-destinations__btn { font-size: 18px; padding: 14px 32px; }
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide { height: 460px !important; }
}

/* Destinations responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-destinations__btn { font-size: 17px; padding: 14px 30px; }
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide { height: 440px !important; }
}

/* Destinations responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-destinations__btn { font-size: 16px; padding: 13px 28px; }
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide { height: 420px !important; }
}

/* Destinations responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-destinations__btn { font-size: 15px; padding: 12px 26px; }
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide { height: 400px !important; }
}

/* Destinations responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-destinations__btn { font-size: 14px; padding: 12px 24px; }
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide { height: 380px !important; }
    .nexar-destinations__arrows { display: none; }
    /* All cards grayscale; only the active (center) slide shows the tint */
    .nexar-destinations__card .nexar-destinations__card-shape img {
        filter: grayscale(100%) !important;
    }
    .nexar-destinations__card:not(.swiper-slide-active):not(.swiper-slide-duplicate-active) .nexar-destinations__card-shape::before {
        opacity: 0 !important;
    }
    .nexar-destinations__card.swiper-slide-active .nexar-destinations__card-shape::before,
    .nexar-destinations__card.swiper-slide-duplicate-active .nexar-destinations__card-shape::before {
        opacity: 1 !important;
    }
    .nexar-destinations__card-shape {
        left: 0;
        width: 100%;
        clip-path: none;
    }
    .nexar-destinations__card-overlay { left: 0; }
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide { overflow: hidden !important; }
    .nexar-destinations__slider { background: transparent; }
}

/* Destinations responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-destinations__btn { font-size: 13px; padding: 11px 22px; }
    /* Fixed slide width → Swiper centers it with symmetric peek on both sides */
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide {
        width: 78% !important;
        height: 320px !important;
        overflow: hidden;
    }
    .nexar-destinations__card-shape {
        left: 0;
        width: 100%;
        clip-path: none;
    }
    .nexar-destinations__card-overlay { left: 0; }
    /* Spacing handled by Swiper's `spaceBetween` — CSS gap double-counts it */
    .nexar-destinations__track { gap: 0; }
    /* Ease-out-expo glide for premium-feeling mobile swipe */
    .nexar-destinations__slider .swiper-wrapper {
        transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
    }
    .nexar-destinations__card-shape,
    .nexar-destinations__card-shape img {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* Destinations responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-destinations__btn { font-size: 12px; padding: 10px 20px; }
    .nexar-destinations__card,
    .nexar-destinations__card.swiper-slide {
        width: 78% !important;
        height: 280px !important;
    }
}


/* === Destination Capability Section === */

.nexar-dest-capability {
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
}

section.nexar-dest-capability {
    padding-bottom: 0px !important;
}

.nexar-dest-capability__inner {
    /* max-width: 1400px; */
    margin: 0 auto;
}

.nexar-dest-capability__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 40px;
    line-height: 1.15;
}

.nexar-dest-capability__bar {
    background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    margin-bottom: 48px;
}

.nexar-dest-capability__bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
}

.nexar-dest-capability__bar-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: block;
}

.nexar-dest-capability__bar + .nexar-dest-capability__grid {
    border-top: none;
    padding-top: 40px;
}

.nexar-dest-capability__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.nexar-dest-capability__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.nexar-dest-capability__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.nexar-dest-capability__num {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3699FD;
    min-width: 32px;
    flex-shrink: 0;
}

.nexar-dest-capability__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 0;
}

.nexar-dest-capability__images {
    position: relative;
    min-height: 500px;
}

.nexar-dest-capability__img {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
}

.nexar-dest-capability__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nexar-dest-capability__img--1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    z-index: 1;
}

.nexar-dest-capability__img--2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    z-index: 2;
}

.nexar-dest-intro { display: none; }

/* Destination Capability — responsive */
@media (max-width: 1520px) {
    .nexar-dest-capability__heading { font-size: 48px; }
    /* bar-item font-size handled by .fs-h4 */
}
@media (max-width: 1366px) {
    .nexar-dest-capability__heading { font-size: 44px; }
    .nexar-dest-capability__bar { padding: 16px 36px; }
    /* bar-item font-size handled by .fs-h4 */
}
@media (max-width: 1200px) {
    .nexar-dest-capability__heading { font-size: 40px; }
    .nexar-dest-capability__bar { padding: 14px 28px; }
    .nexar-dest-capability__bar-item { gap: 8px; }
    .nexar-dest-capability__num { font-size: 18px; }
    .nexar-dest-capability__text { font-size: 18px; }
    .nexar-dest-capability__images { min-height: 420px; }
}
@media (max-width: 1024px) {
    .nexar-dest-capability__heading { font-size: 36px; }
    .nexar-dest-capability__bar { flex-wrap: wrap; gap: 12px; padding: 16px 24px; justify-content: center; }
    /* bar-item font-size handled by .fs-h4 */
    .nexar-dest-capability__grid { grid-template-columns: 1fr; gap: 40px; }
    .nexar-dest-capability__images { min-height: 380px; }
    .nexar-dest-capability__num { font-size: 17px; }
    .nexar-dest-capability__text { font-size: 17px; }
}
@media (max-width: 768px) {
    .nexar-dest-capability__heading { font-size: 28px; margin-bottom: 28px; }
    .nexar-dest-capability__bar { flex-wrap: wrap; gap: 10px; padding: 14px 20px; }
    .nexar-dest-capability__bar-item { gap: 6px; }
    .nexar-dest-capability__bar-icon { width: 24px; height: 24px; }
    .nexar-dest-capability__list { gap: 20px; }
    .nexar-dest-capability__num { font-size: 16px; }
    .nexar-dest-capability__text { font-size: 16px; }
    .nexar-dest-capability__images { min-height: 320px; }
}
@media (max-width: 480px) {
    .nexar-dest-capability__heading { font-size: 24px; margin-bottom: 20px; }
    .nexar-dest-capability__bar { flex-direction: column; gap: 10px; padding: 16px 20px; align-items: flex-start; }
    /* bar-item font-size handled by .fs-h4 */
    .nexar-dest-capability__num { font-size: 15px; }
    .nexar-dest-capability__text { font-size: 15px; }
    .nexar-dest-capability__images { min-height: 260px; }
    .nexar-dest-capability__item { gap: 14px; }
}


/* === Destination Cards Grid === */

.nexar-dest-cards {
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
}

.nexar-dest-cards__inner {
    max-width: 100%;
}

.nexar-dest-cards__heading {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000000;
    margin: 0 0 48px;
    line-height: 1.15;
}

.nexar-dest-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.nexar-dest-cards__card {
    position: relative;
    display: block;
    overflow: hidden;
    height: 480px;
    text-decoration: none;
    border-radius: 0;
}

.nexar-dest-cards__card-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.nexar-dest-cards__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.nexar-dest-cards__card:hover .nexar-dest-cards__card-img img {
    transform: scale(1.06);
}

.nexar-dest-cards__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    background: linear-gradient(180deg, transparent 0%, rgb(0 0 0) 100%);
    z-index: 2;
}

.nexar-dest-cards__card-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #3699FD, #1CD47F);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: inherit;
}

.nexar-dest-cards__card:hover .nexar-dest-cards__card-overlay::before {
    opacity: 1;
}

.nexar-dest-cards__card:hover .nexar-dest-cards__card-overlay {
    background: transparent;
}

.nexar-dest-cards__card-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nexar-dest-cards__card-link {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: underline;
    display: block;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nexar-dest-cards__card:hover .nexar-dest-cards__card-link {
    opacity: 1;
}

/* Destination Cards — responsive */
@media (max-width: 1520px) {
    /* dest cards heading font-size handled by .fs-h3 */
    .nexar-dest-cards__card { height: 420px; }
}
@media (max-width: 1366px) {
    /* dest cards heading font-size handled by .fs-h3 */
    .nexar-dest-cards__card { height: 380px; }
}
@media (max-width: 1200px) {
    /* dest cards heading font-size handled by .fs-h3 */
    .nexar-dest-cards__grid { grid-template-columns: repeat(2, 1fr); }
    .nexar-dest-cards__card { height: 360px; }
}
@media (max-width: 1024px) {
    /* dest cards heading font-size handled by .fs-h3 */
    .nexar-dest-cards__card { height: 320px; }
    .nexar-dest-cards__card-title { font-size: 24px; }
}
@media (max-width: 768px) {
    .nexar-dest-cards__heading { margin-bottom: 32px; }
    .nexar-dest-cards__grid { grid-template-columns: 1fr; gap: 12px; }
    .nexar-dest-cards__card { height: 280px; }
    .nexar-dest-cards__card-title { font-size: 22px; }
}
@media (max-width: 480px) {
    .nexar-dest-cards__heading { margin-bottom: 24px; }
    .nexar-dest-cards__card { height: 240px; }
    .nexar-dest-cards__card-title { font-size: 20px; }
    .nexar-dest-cards__card-overlay { padding: 24px 20px; }
}


/* === Destination Offer Section === */

.nexar-dest-offer {
    background-color: #150089;
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.nexar-dest-offer__inner {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.nexar-dest-offer__content {
    margin-bottom: 60px;
    max-width: 900px;
}

.nexar-dest-offer__label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 20px;
}

.nexar-dest-offer__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 28px;
    line-height: 1.15;
    white-space: nowrap;
}

.nexar-dest-offer__highlight {
    background: linear-gradient(90deg, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-dest-offer__desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.nexar-dest-offer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}

.nexar-dest-offer__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nexar-dest-offer__item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    cursor: default;
    transition: transform 0.3s ease, padding-left 0.3s ease;
}

.nexar-dest-offer__item:hover {
    transform: translateX(8px);
}

.nexar-dest-offer__num {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1CD47F;
    min-width: 32px;
    transition: transform 0.3s ease, font-size 0.3s ease;
}

.nexar-dest-offer__item:hover .nexar-dest-offer__num {
    transform: scale(1.3);
    text-shadow: 0 0 12px rgba(28, 212, 127, 0.5);
}

.nexar-dest-offer__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nexar-dest-offer__item:hover .nexar-dest-offer__text {
    color: #1CD47F;
}

/* Destination Offer — responsive */
@media (max-width: 1200px) {
    .nexar-dest-offer__grid { grid-template-columns: 1fr; gap: 0; }
    .nexar-dest-offer__heading { font-size: 38px; white-space: normal; }
}
@media (max-width: 1024px) {
    .nexar-dest-offer__heading { font-size: 34px; }
    .nexar-dest-offer__text { font-size: 18px; }
}
@media (max-width: 768px) {
    .nexar-dest-offer__heading { font-size: 28px; }
    .nexar-dest-offer__text { font-size: 17px; }
}
@media (max-width: 480px) {
    .nexar-dest-offer__heading { font-size: 24px; }
    .nexar-dest-offer__text { font-size: 16px; }
}


/* === Our Difference Section === */

.nexar-difference {
    background: #ffffff;
}

.nexar-difference__inner {
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.nexar-difference__image {
    flex: 0 0 45%;
    max-width: 45%;
}

.nexar-difference__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nexar-difference__content {
    flex: 1;
}

.nexar-difference__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: 0.03em;
    display: block;
    margin-bottom: 12px;
}

.nexar-difference__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0 0 40px;
    line-height: 1.15;
}

.nexar-difference__items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nexar-difference__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0 !important;
    border-bottom: 1px solid #e0e0e0;
}

.nexar-difference__item:last-child {
    border-bottom: none;
}

.nexar-difference__item-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexar-difference__item-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nexar-difference__item-text {
    flex: 1;
}

.nexar-difference__item-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px;
    line-height: 1.3;
}

.nexar-difference__item-desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: #1A1A1A;
    margin: 0;
}

/* Difference responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-difference__inner { gap: 64px; }
    .nexar-difference__item-title { font-size: 22px; }
    .nexar-difference__item-desc { font-size: 18px; }
}

/* Difference responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-difference__inner { gap: 56px; }
    .nexar-difference__item-title { font-size: 21px; }
    .nexar-difference__item-desc { font-size: 17px; }
}

/* Difference responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-difference__inner { gap: 48px; }
    .nexar-difference__image { flex: 0 0 42%; max-width: 42%; }
    .nexar-difference__item-title { font-size: 20px; }
    .nexar-difference__item-desc { font-size: 16px; }
}

/* Difference responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-difference__inner { gap: 48px; }
    .nexar-difference__image { flex: 0 0 40%; max-width: 40%; }
    .nexar-difference__item-title { font-size: 19px; }
    .nexar-difference__item-desc { font-size: 16px; }
}

/* Difference responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-difference__inner { gap: 40px; }
    .nexar-difference__image { flex: 0 0 38%; max-width: 38%; }
    .nexar-difference__item-title { font-size: 18px; }
    .nexar-difference__item-desc { font-size: 14px; }
    .nexar-difference__item { padding: 22px 0; }
}

/* Difference responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-difference__inner {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
    .nexar-difference__image {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 300px;
    }
    .nexar-difference__image img { height: 300px; }
    .nexar-difference__item { padding: 20px 0; gap: 16px; }
    .nexar-difference__item:last-child { border-bottom: none; padding-bottom: 0 !important; }
    .nexar-difference__item-icon { flex: 0 0 36px; width: 36px; height: 36px; }
    .nexar-difference__item-icon img { width: 28px; height: 28px; }
    .nexar-difference__item-title { font-size: 17px; }
    .nexar-difference__item-desc { font-size: 14px; }
}

/* Difference responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-difference__image { height: 240px; }
    .nexar-difference__image img { height: 240px; }
    .nexar-difference__item-title { font-size: 16px; }
    .nexar-difference__item-desc { font-size: 13px; }
    .nexar-difference__item { padding: 16px 0; gap: 12px; }
    .nexar-difference__item-icon { flex: 0 0 32px; width: 32px; height: 32px; }
    .nexar-difference__item-icon img { width: 24px; height: 24px; }
}


/* === Corporate Clients Section === */

.nexar-clients {
    background: #fff;
}

.nexar-clients__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 !important;
}

.nexar-clients__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nexar-clients__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.15;
}

.nexar-clients__arrows {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nexar-clients__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
}

.nexar-clients__arrow img {
    width: 28px;
    height: 20px;
}

.nexar-clients__arrow .arrow-hover {
    display: none;
}

.nexar-clients__arrow .arrow-default {
    display: inline-block;
}

.nexar-clients__arrow:hover .arrow-default {
    display: none;
}

.nexar-clients__arrow:hover .arrow-hover {
    display: inline-block;
}

/* Clients marquee */
.nexar-clients__marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.nexar-clients__marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: nexar-marquee 12s linear infinite;
}

.nexar-clients__marquee:hover .nexar-clients__marquee-track {
    animation-play-state: paused;
}

@keyframes nexar-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nexar-clients__card {
    flex: 0 0 264px;
    height: 286px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    transition: border-color 0.3s, background 0.3s;
}

.nexar-clients__card:hover {
    border-color: #150089;
    background: #fff;
}

.nexar-clients__card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.3s, opacity 0.3s;
}

.nexar-clients__card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Legacy class */
.nexar-clients__slider { overflow: hidden; position: relative; }
.nexar-clients__track { display: flex; gap: 24px; }

/* Clients responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-clients__card { flex: 0 0 230px; height: 250px; }
}

/* Clients responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-clients__card { flex: 0 0 210px; height: 230px; }
}

/* Clients responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-clients__card { flex: 0 0 200px; height: 220px; }
}

/* Clients responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-clients__card { flex: 0 0 190px; height: 200px; }
}

/* Clients responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-clients__card {
        flex: 0 0 180px;
        height: 170px;
        padding: 24px;
    }
    .nexar-clients__marquee-track { animation-duration: 20s; }
}

/* Clients responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-clients__card {
        flex: 0 0 160px;
        height: 130px;
        padding: 20px;
    }
    .nexar-clients__top { margin-bottom: 28px; }
    .nexar-clients__marquee-track {
        gap: 16px;
        animation-duration: 18s;
    }
}

/* Clients responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-clients__card {
        flex: 0 0 140px;
        height: 110px;
        padding: 16px;
    }
    .nexar-clients__card img { max-height: 40px; }
    .nexar-clients__marquee-track {
        gap: 12px;
        animation-duration: 15s;
    }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .nexar-clients__marquee-track {
        animation-play-state: paused;
    }
}


/* === Case Studies Section === */

.nexar-casestudies {
    position: relative;
    height: 820px;
    margin: 50px 0 !important;
    overflow: hidden;
}

.nexar-casestudies__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.nexar-casestudies__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nexar-casestudies__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: var(--pad-section);
    padding-right: var(--pad-section);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 600px;
    height: 100%;
    box-sizing: border-box;
}

.nexar-casestudies__card {
    background: #FFFFFF;
    padding: 48px 44px !important;
    width: 550px;
    height: 530px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.nexar-casestudies__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    display: block;
    margin-bottom: 16px;
}

.nexar-casestudies__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0 0 20px;
    line-height: 1.15;
}

.nexar-casestudies__highlight {
    background: linear-gradient(to right, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-casestudies__desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #1A1A1A;
    margin: 0 0 36px;
}

.nexar-casestudies__btn {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(to right, #3699FD, #1CD47F);
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
    border: none;
    margin-top: auto;
    align-self: flex-start;
}

.nexar-casestudies__btn:hover {
    opacity: 0.9;
}

/* Case Studies responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-casestudies { height: 750px; }
    .nexar-casestudies__inner { padding-top: 72px; padding-bottom: 72px; }
    .nexar-casestudies__card { width: 500px; height: 490px; }
    .nexar-casestudies__desc { font-size: 18px; }
    .nexar-casestudies__btn { font-size: 18px; }
}

/* Case Studies responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-casestudies { height: 700px; }
    .nexar-casestudies__inner { padding-top: 68px; padding-bottom: 68px; }
    .nexar-casestudies__card { width: 480px; height: 470px; }
    .nexar-casestudies__desc { font-size: 17px; }
    .nexar-casestudies__btn { font-size: 17px; }
}

/* Case Studies responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-casestudies { height: 660px; }
    .nexar-casestudies__inner { padding-top: 64px; padding-bottom: 64px; }
    .nexar-casestudies__card { width: 460px; height: 450px; }
    .nexar-casestudies__desc { font-size: 16px; }
    .nexar-casestudies__btn { font-size: 16px; }
}

/* Case Studies responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-casestudies { height: 600px; }
    .nexar-casestudies__inner { padding-top: 60px; padding-bottom: 60px; }
    .nexar-casestudies__card { width: 420px; height: 420px; padding: 44px 40px; }
    .nexar-casestudies__desc { font-size: 16px; }
    .nexar-casestudies__btn { font-size: 16px; }
}

/* Case Studies responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-casestudies { height: auto; min-height: 500px; }
    .nexar-casestudies__inner { padding-top: 60px; padding-bottom: 60px; min-height: 500px; }
    .nexar-casestudies__card { width: 380px; height: auto; padding: 40px 36px; }
    .nexar-casestudies__desc { font-size: 15px; }
    .nexar-casestudies__btn { font-size: 16px; }
}

/* Case Studies responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-casestudies { height: auto; min-height: 400px; }
    .nexar-casestudies__inner { padding-top: 40px; padding-bottom: 40px; min-height: 450px; align-items: flex-end; }
    .nexar-casestudies__card { width: 100%; height: auto; padding: 32px 28px; }
    .nexar-casestudies__desc { font-size: 14px; margin-bottom: 24px; }
    .nexar-casestudies__btn { font-size: 14px; }
}

/* Case Studies responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-casestudies { min-height: 400px; }
    .nexar-casestudies__inner { min-height: 400px; padding-top: 24px; padding-bottom: 24px; }
    .nexar-casestudies__card { padding: 24px 20px; }
}


/* === Testimonials Section === */

.nexar-testimonials {
    background: #FFFFFF;
}

.nexar-testimonials__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.nexar-testimonials__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px !important;
    font-weight: 500;
    color: #000000;
    margin: 0 0 64px;
    line-height: 1.15;
}

/* Slider */
.nexar-testimonials__slider {
    position: relative;
}

.nexar-testimonials__track {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.nexar-testimonials__slide {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: testimonialFade 0.5s ease;
}

.nexar-testimonials__slide.is-active {
    display: flex;
}

@keyframes testimonialFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nexar-testimonials__logo {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #6b6b7a;
}

.nexar-testimonials__logo img {
    max-height: 72px;
    max-width: 280px;
    object-fit: contain;
}

.nexar-testimonials__quote {
    margin: 0;
    position: relative;
    padding: 72px 0 0 0;
    text-align: center;
    width: 100%;
}

.nexar-testimonials__quote-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 63px;
    height: 57px;
}

.nexar-testimonials__quote p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 28px !important;
    font-weight: 400;
    line-height: 1.6;
    color: #1A1A1A;
    margin: 0;
    text-align: center;
}

/* Navigation: arrows + counter + progress */
.nexar-testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 56px;
}

.nexar-testimonials__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
}

.nexar-testimonials__arrow img {
    width: 28px;
    height: 20px;
}

.nexar-testimonials__arrow .arrow-hover { display: none; }
.nexar-testimonials__arrow .arrow-default { display: inline-block; }
.nexar-testimonials__arrow:hover .arrow-default { display: none; }
.nexar-testimonials__arrow:hover .arrow-hover { display: inline-block; }

.nexar-testimonials__counter {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #ccc;
    flex: 0 0 auto;
}

.nexar-testimonials__current {
    color: #111;
    font-weight: 700;
    min-width: 24px;
    text-align: right;
}

.nexar-testimonials__total {
    color: #ccc;
    font-weight: 400;
    min-width: 24px;
    text-align: left;
}

.nexar-testimonials__progress {
    width: 280px;
    height: 2px;
    background: #d9d9d9;
    position: relative;
}

.nexar-testimonials__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: #222;
    transition: width 0.4s ease;
    width: 25%;
}

/* Testimonials responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-testimonials__title { font-size: 48px !important; }
    .nexar-testimonials__logo { height: 72px; }
    .nexar-testimonials__logo img { max-height: 64px; }
    .nexar-testimonials__quote { padding-top: 64px; }
    .nexar-testimonials__quote-icon { width: 56px; height: auto; }
    .nexar-testimonials__quote p { font-size: 28px !important; }
}

/* Testimonials responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-testimonials__title { font-size: 40px !important; }
    .nexar-testimonials__logo { height: 68px; }
    .nexar-testimonials__logo img { max-height: 60px; }
    .nexar-testimonials__quote { padding-top: 60px; }
    .nexar-testimonials__quote-icon { width: 52px; height: auto; }
    .nexar-testimonials__quote p { font-size: 26px !important; }
}

/* Testimonials responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-testimonials__title { font-size: 32px !important; }
    .nexar-testimonials__logo { height: 64px; }
    .nexar-testimonials__logo img { max-height: 56px; }
    .nexar-testimonials__quote { padding-top: 56px; }
    .nexar-testimonials__quote-icon { width: 48px; height: auto; }
    .nexar-testimonials__quote p { font-size: 24px !important; }
}

/* Testimonials responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-testimonials__title { font-size: 28px !important; }
    .nexar-testimonials__logo { height: 60px; }
    .nexar-testimonials__logo img { max-height: 52px; }
    .nexar-testimonials__quote { padding-top: 52px; }
    .nexar-testimonials__quote-icon { width: 44px; height: auto; }
    .nexar-testimonials__quote p { font-size: 22px !important; }
}

/* Testimonials responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-testimonials__title { font-size: 28px !important; }
    .nexar-testimonials__logo { height: 56px; }
    .nexar-testimonials__logo img { max-height: 48px; }
    .nexar-testimonials__quote { padding-top: 52px; }
    .nexar-testimonials__quote-icon { width: 40px; height: auto; }
    .nexar-testimonials__quote p { font-size: 20px !important; }
}

/* Testimonials responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-testimonials__title { font-size: 24px !important; }
    .nexar-testimonials__logo { height: 56px; margin-bottom: 24px; }
    .nexar-testimonials__logo img { max-height: 48px; }
    .nexar-testimonials__quote { padding-top: 52px; }
    .nexar-testimonials__quote-icon { width: 40px; height: auto; }
    .nexar-testimonials__quote p { font-size: 16px !important; }
    .nexar-testimonials__progress { width: 160px; }
    .nexar-testimonials__nav { margin-top: 40px; gap: 14px; }
}

/* Testimonials responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-testimonials__title { font-size: 24px !important; }
    .nexar-testimonials__logo { height: 44px; margin-bottom: 20px; }
    .nexar-testimonials__logo img { max-height: 40px; }
    .nexar-testimonials__quote { padding-top: 44px; }
    .nexar-testimonials__quote-icon { width: 32px; height: auto; }
    .nexar-testimonials__quote p { font-size: 14px !important; }
    .nexar-testimonials__progress { width: 100px; }
    .nexar-testimonials__nav { gap: 10px; }
    .nexar-testimonials__counter { gap: 10px; font-size: 14px; }
}


/* === Insights Section === */

.nexar-insights {
    background: #fff;
}

.nexar-insights__inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.nexar-insights__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.nexar-insights__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #000000;
    display: block;
    margin-bottom: 12px;
}

.nexar-insights__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 1.15;
}

.nexar-insights__btn {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #150089;
    padding: 14px 32px;
    border: 2px solid #150089;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.nexar-insights__btn:hover {
    background: #150089;
    color: #fff;
}

/* Grid: featured left, list right */
.nexar-insights__grid {
    display: grid;
    grid-template-columns: 705px 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Featured post */
.nexar-insights__featured-link {
    text-decoration: none;
    display: block;
    position: relative;
    color: inherit;
    height: 100%;
    overflow: hidden;
}

.nexar-insights__featured-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 100%;
}

.nexar-insights__featured-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.nexar-insights__featured-img img {
    width: 100%;
    height: 100%;
    min-height: 630px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.nexar-insights__featured-link:hover .nexar-insights__featured-img img {
    transform: scale(1.03);
}

.nexar-insights__featured-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.nexar-insights__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.nexar-insights__dot.is-active {
    background: #fff;
}

.nexar-insights__featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    color: #fff;
    background: transparent;
    z-index: 2;
}

.nexar-insights__featured-content .nexar-insights__cat {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}

.nexar-insights__featured-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 12px 0 24px;
    line-height: 1.35;
}

.nexar-insights__cat {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    display: block;
}

.nexar-insights__list .nexar-insights__cat {
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
}

.nexar-insights__read-more {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #150089;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s;
}

.nexar-insights__read-more:hover,
.nexar-insights__list-item:hover .nexar-insights__read-more {
    opacity: 0.8;
}

.nexar-insights__read-more--light {
    font-size: 20px;
    font-weight: 400;
    background: linear-gradient(90deg, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 1px solid #1CD47F;
    padding-bottom: 2px;
    display: inline-block;
    text-decoration: none;
}

.nexar-insights__read-more--light:hover {
    opacity: 0.85;
}

/* Side posts list */
.nexar-insights__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.nexar-insights__list-item {
    padding: 28px 32px !important;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.nexar-insights__list-item:hover {
    border-color: #150089;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nexar-insights__list-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 10px 0 20px;
    line-height: 1.35;
}

/* Insights responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-insights__btn { font-size: 18px; }
    .nexar-insights__grid { grid-template-columns: 1fr 1fr; }
    .nexar-insights__featured-img img { min-height: 560px; }
    .nexar-insights__featured-title { font-size: 28px; }
    .nexar-insights__featured-content .nexar-insights__cat { font-size: 16px; }
    .nexar-insights__read-more--light { font-size: 18px; }
    .nexar-insights__list-title { font-size: 26px; }
    .nexar-insights__list .nexar-insights__cat { font-size: 16px; }
    .nexar-insights__read-more { font-size: 17px; }
}

/* Insights responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-insights__btn { font-size: 17px; }
    .nexar-insights__featured-img img { min-height: 520px; }
    .nexar-insights__featured-title { font-size: 26px; }
    .nexar-insights__featured-content .nexar-insights__cat { font-size: 15px; }
    .nexar-insights__read-more--light { font-size: 17px; }
    .nexar-insights__list-title { font-size: 24px; }
    .nexar-insights__list .nexar-insights__cat { font-size: 15px; }
    .nexar-insights__read-more { font-size: 16px; }
}

/* Insights responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-insights__btn { font-size: 16px; }
    .nexar-insights__featured-img img { min-height: 480px; }
    .nexar-insights__featured-title { font-size: 24px; }
    .nexar-insights__featured-content .nexar-insights__cat { font-size: 14px; }
    .nexar-insights__read-more--light { font-size: 16px; }
    .nexar-insights__list-title { font-size: 22px; }
    .nexar-insights__list .nexar-insights__cat { font-size: 14px; }
    .nexar-insights__read-more { font-size: 15px; }
}

/* Insights responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-insights__btn { font-size: 15px; }
    .nexar-insights__featured-img img { min-height: 440px; }
    .nexar-insights__featured-title { font-size: 22px; }
    .nexar-insights__featured-content .nexar-insights__cat { font-size: 13px; }
    .nexar-insights__read-more--light { font-size: 15px; }
    .nexar-insights__list-title { font-size: 20px; }
    .nexar-insights__list .nexar-insights__cat { font-size: 13px; }
    .nexar-insights__read-more { font-size: 14px; }
}

/* Insights responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-insights__btn { font-size: 14px; }
    .nexar-insights__grid { gap: 28px; }
    .nexar-insights__featured-img img { min-height: 400px; }
    .nexar-insights__featured-title { font-size: 20px; }
    .nexar-insights__featured-content .nexar-insights__cat { font-size: 13px; }
    .nexar-insights__read-more--light { font-size: 14px; }
    .nexar-insights__list-title { font-size: 18px; }
    .nexar-insights__list .nexar-insights__cat { font-size: 13px; }
    .nexar-insights__read-more { font-size: 14px; }
}

/* Insights responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-insights__btn { font-size: 14px; }
    .nexar-insights__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .nexar-insights__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .nexar-insights__featured-img img { min-height: 300px; }
    .nexar-insights__featured-title { font-size: 18px; }
    .nexar-insights__featured-content .nexar-insights__cat { font-size: 12px; }
    .nexar-insights__read-more--light { font-size: 14px; }
    .nexar-insights__list-item { padding: 20px 0 20px 20px; }
    .nexar-insights__list-title { font-size: 17px; }
    .nexar-insights__list .nexar-insights__cat { font-size: 12px; }
    .nexar-insights__read-more { font-size: 13px; }
}

/* Insights responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-insights__featured-img img { min-height: 240px; }
    .nexar-insights__featured-title { font-size: 16px; }
    .nexar-insights__featured-content { padding: 20px 24px; }
    .nexar-insights__read-more--light { font-size: 13px; }
}


/* === Contact Section === */

.nexar-contact {
    background: #150089;
    position: relative;
    overflow: hidden;
}

/* Contact animated bars */
@keyframes nexar-contact-line-enter {
    0%   { transform: translateX(-110vw); animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    28%  { transform: translateX(0); animation-timing-function: linear; }
    72%  { transform: translateX(0); animation-timing-function: cubic-bezier(0.55, 0, 0.45, 1); }
    100% { transform: translateX(-110vw); }
}

.nexar-contact__lines {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 90px;
    pointer-events: none;
    z-index: 1;
}

.nexar-contact__line {
    position: absolute;
    left: 0;
    display: block;
    height: auto;
    max-width: 100%;
    transform: translateX(-110vw);
}

.contact-lines-entered .nexar-contact__line--1 { animation: nexar-contact-line-enter 4s infinite; animation-delay: 0s; }
.contact-lines-entered .nexar-contact__line--2 { animation: nexar-contact-line-enter 4s infinite; animation-delay: 0.12s; }
.contact-lines-entered .nexar-contact__line--3 { animation: nexar-contact-line-enter 4s infinite; animation-delay: 0.24s; }
.contact-lines-entered .nexar-contact__line--4 { animation: nexar-contact-line-enter 4s infinite; animation-delay: 0.36s; }

.nexar-contact__line--1 { top: 7px; left: 350px; }
.nexar-contact__line--2 { top: 23px; }
.nexar-contact__line--3 { top: 51px; }
.nexar-contact__line--4 { top: 74px; }

@media (max-width: 1200px) {
    .nexar-contact__lines { top: 15px; }
    .nexar-contact__line--1 { left: 300px; }
}
@media (max-width: 1024px) {
    .nexar-contact__lines { top: 20px; }
    .nexar-contact__line--1 { left: 250px; }
}
@media (max-width: 767px) {
    .nexar-contact__lines { height: 60px; top: 20px; }
    .nexar-contact__line--1 { left: 150px; top: 5px; }
    .nexar-contact__line--2 { top: 18px; }
    .nexar-contact__line--3 { top: 34px; }
    .nexar-contact__line--4 { top: 50px; }
}
@media (max-width: 480px) {
    .nexar-contact__lines { height: 50px; top: 12px; }
    .nexar-contact__line--1 { left: 80px; top: 4px; }
    .nexar-contact__line--2 { top: 15px; }
    .nexar-contact__line--3 { top: 28px; }
    .nexar-contact__line--4 { top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
    .nexar-contact__line,
    .contact-lines-entered .nexar-contact__line--1,
    .contact-lines-entered .nexar-contact__line--2,
    .contact-lines-entered .nexar-contact__line--3,
    .contact-lines-entered .nexar-contact__line--4 {
        transform: translateX(0) !important;
        animation: none !important;
    }
}

.nexar-contact__inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 0px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.nexar-contact__info {
    padding-top: 150px;
}

.nexar-contact__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    display: block;
    margin-bottom: 20px;
}

.nexar-contact__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 0 0 48px;
    line-height: 1.05;
}

.nexar-contact__title strong,
.nexar-contact__title .nexar-contact__title-bold {
    font-weight: 600;
    background: linear-gradient(90deg, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.nexar-contact__gradient {
    background: linear-gradient(90deg, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-contact__title-line2 {
    font-weight: 600;
}

.nexar-contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nexar-contact__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
}

.nexar-contact__detail-link {
    color: inherit;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
}
.nexar-contact__detail-link:hover,
.nexar-contact__detail-link:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.nexar-contact__detail svg,
.nexar-contact__detail-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-block;
    filter: brightness(0) invert(1);
}

/* Contact Form */
.nexar-contact__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nexar-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 0;
    margin-bottom: 8px;
}

.nexar-form__row--full {
    grid-template-columns: 1fr;
}

.nexar-form__field label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    display: block;
    margin-bottom: 4px;
}

.nexar-form__field input[type="text"],
.nexar-form__field input[type="email"],
.nexar-form__field input[type="tel"],
.nexar-form__field select,
.nexar-form__field textarea,
.nexar-contact__form .wpcf7-form-control:not([type="submit"]) {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.06);
    background-image: none;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    outline: none;
    transition: background-color 0.3s;
    box-sizing: border-box;
    vertical-align: top;
}

.nexar-form__field input::placeholder,
.nexar-form__field textarea::placeholder,
.nexar-contact__form .wpcf7-form-control::placeholder {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.nexar-form__field select,
.nexar-contact__form select {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.nexar-form__field select.has-value,
.nexar-contact__form select.has-value {
    color: rgba(255, 255, 255, 0.85);
}

.nexar-form__field select option,
.nexar-contact__form select option {
    color: #FFFFFF;
    background: #150089;
    font-size: 16px;
}

.nexar-form__field select,
.nexar-contact__form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
    padding-right: 40px;
}

.nexar-form__field input:focus,
.nexar-form__field select:focus,
.nexar-form__field textarea:focus,
.nexar-contact__form .wpcf7-form-control:not([type="submit"]):focus {
    background-color: rgba(255, 255, 255, 0.10);
}

.nexar-form__field textarea {
    min-height: 120px;
    resize: vertical;
}

.nexar-contact__form .wpcf7-form input[type="submit"] {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(to right, #3699FD, #1CD47F);
    border: none;
    border-radius: 0;
    padding: 18px 48px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 32px;
    display: inline-block;
    line-height: 1.2;
}

.nexar-contact__form .wpcf7-form input[type="submit"]:hover {
    opacity: 0.85;
}

/* CF7 overrides */
.nexar-contact__form .wpcf7-form-control-wrap { display: block; margin-top: 0; }
.nexar-contact__form .wpcf7-form p { margin: 0 0 8px; }
.nexar-contact__form .wpcf7-form br { display: none; }
.nexar-contact__form .wpcf7-response-output { padding: 12px; margin: 16px 0 0; font-size: 14px; }

/* Force validation text — must be at end to override all CF7 defaults */
.wpcf7-not-valid-tip,
span.wpcf7-not-valid-tip,
.wpcf7 .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-not-valid-tip,
.nexar-contact .wpcf7-not-valid-tip,
.nexar-contact__form .wpcf7-not-valid-tip,
.nexar-form__field .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    color: #ef0000 !important;
    font-size: 13px !important;
    margin-top: 4px !important;
    display: block !important;
    -webkit-text-fill-color: #ef0000 !important;
}

/* Removed blanket red color on .wpcf7-response-output — it caused a red flash
   before CF7 added the .sent class. Red now only applies via the
   form.failed/.invalid/.unaccepted/.spam rules defined elsewhere. */

/* Contact responsive — 1520px */
@media screen and (max-width: 1520px) {
    .nexar-contact__inner { gap: 0px; grid-template-columns: 45% 1fr; }
    .nexar-contact__info { padding-top: 130px; }
    .nexar-contact__detail { font-size: 20px; }
    .nexar-form__field label { font-size: 17px; margin-bottom: 9px; }
    .nexar-contact__form .wpcf7-form-control:not([type="submit"]) { font-size: 15px; }
    .nexar-form__row { column-gap: 44px; }
    .nexar-contact__detail svg, .nexar-contact__detail-icon { width: 22px; height: 22px; }
    .nexar-contact__form .wpcf7-form input[type="submit"] { font-size: 19px; padding: 17px 44px; margin-top: 28px; }
}

/* Contact responsive — 1440px */
@media screen and (max-width: 1440px) {
    .nexar-contact__inner { gap: 0px; grid-template-columns: 44% 1fr; }
    .nexar-contact__info { padding-top: 110px; }
    .nexar-contact__detail { font-size: 19px; }
    .nexar-form__field label { font-size: 16px; margin-bottom: 9px; }
    .nexar-contact__form .wpcf7-form-control:not([type="submit"]) { font-size: 15px; }
    .nexar-form__row { column-gap: 40px; }
    .nexar-contact__detail svg, .nexar-contact__detail-icon { width: 21px; height: 21px; }
    .nexar-contact__form .wpcf7-form input[type="submit"] { font-size: 18px; padding: 16px 42px; margin-top: 26px; }
}

/* Contact responsive — 1366px */
@media screen and (max-width: 1366px) {
    .nexar-contact__inner { gap: 0px; grid-template-columns: 44% 1fr; }
    .nexar-contact__info { padding-top: 96px; }
    .nexar-contact__detail { font-size: 18px; }
    .nexar-form__field label { font-size: 15px; margin-bottom: 8px; }
    .nexar-contact__form .wpcf7-form-control:not([type="submit"]) { font-size: 14px; }
    .nexar-form__row { column-gap: 38px; }
    .nexar-contact__detail svg, .nexar-contact__detail-icon { width: 20px; height: 20px; }
    .nexar-contact__form .wpcf7-form input[type="submit"] { font-size: 17px; padding: 15px 38px; margin-top: 24px; }
}

/* Contact responsive — 1200px */
@media screen and (max-width: 1200px) {
    .nexar-contact__inner { gap: 0px; grid-template-columns: 1fr 1fr; }
    .nexar-contact__info { padding-top: 80px; }
    .nexar-contact__detail { font-size: 16px; }
    .nexar-form__field label { font-size: 14px; margin-bottom: 8px; }
    .nexar-contact__form .wpcf7-form-control:not([type="submit"]) { font-size: 13px; }
    .nexar-form__row { column-gap: 34px; }
    .nexar-contact__detail svg, .nexar-contact__detail-icon { width: 19px; height: 19px; }
    .nexar-contact__form .wpcf7-form input[type="submit"] { font-size: 16px; padding: 14px 34px; margin-top: 22px; }
}

/* Contact responsive — tablet */
@media screen and (max-width: 1024px) {
    .nexar-contact__inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
    .nexar-contact__info { padding-top: 10px; }
    .nexar-contact__detail { font-size: 15px; }
    .nexar-form__field label { font-size: 14px; margin-bottom: 8px; }
    .nexar-contact__form .wpcf7-form-control:not([type="submit"]) { font-size: 13px; }
    .nexar-contact__detail svg, .nexar-contact__detail-icon { width: 18px; height: 18px; }
    .nexar-contact__form .wpcf7-form input[type="submit"] { font-size: 16px; padding: 14px 32px; margin-top: 20px; width: 100%; }
}

/* Contact responsive — mobile */
@media screen and (max-width: 768px) {
    .nexar-contact__inner { grid-template-columns: 1fr; gap: 32px; }
    .nexar-contact__detail { font-size: 14px; }
    .nexar-contact__detail svg, .nexar-contact__detail-icon { width: 16px; height: 16px; }
    /* Title: single line, no bottom spacing */
    .nexar-contact__title { margin: 0 !important; padding-bottom: 0 !important; }
    .nexar-contact__title br { display: none !important; }
    .nexar-contact__title-line2 { display: inline !important; margin-left: 8px; }
    .nexar-form__row { grid-template-columns: 1fr; gap: 8px; margin-bottom: 12px; }
    .nexar-form__field label { margin-bottom: 6px; font-size: 13px; }
    .nexar-contact__form .wpcf7-form-control:not([type="submit"]) { font-size: 12px; padding: 13px 14px; }
    .nexar-contact__form .wpcf7-form input[type="submit"] { font-size: 15px; padding: 13px 28px; margin-top: 18px; width: 100%; }
}

/* Contact responsive — small mobile */
@media screen and (max-width: 480px) {
    .nexar-contact__form .wpcf7-form input[type="submit"] { font-size: 14px; padding: 12px 24px; margin-top: 16px; width: 100%; }
}


/* =============================================================
   SCROLL REVEAL — simple fade-up on scroll
   ============================================================= */

.nexar-scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.nexar-scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .nexar-scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* =============================================================
   SCROLL ENTRANCE ANIMATIONS — per-element reveal system
   JS stamps [data-nx="up|left|right|scale|fade"] on target els,
   then adds .nx-in when the element enters the viewport.
   ============================================================= */

[data-nx] {
    will-change: opacity, transform;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-duration: 0.75s;
}

/* Hidden states */
[data-nx="up"]    { opacity: 0; transform: translateY(44px); }
[data-nx="left"]  { opacity: 0; transform: translateX(-44px); }
[data-nx="right"] { opacity: 0; transform: translateX(44px); }
[data-nx="scale"] { opacity: 0; transform: scale(0.91); }
[data-nx="fade"]  { opacity: 0; transform: none; }

/* Visible — JS adds this class */
[data-nx].nx-in {
    opacity: 1;
    transform: none;
    padding: 0;
}

/* Honour user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-nx] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }
}


/* === Contact Page — Submit Brief Section === */

.nexar-contactp-brief {
    background: #FFFFFF;
}

.nexar-contactp-brief__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.nexar-contactp-brief__header {
    margin-bottom: 48px;
}

.nexar-contactp-brief__heading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #000;
    margin: 0 0 12px;
    line-height: 1.15;
}

.nexar-contactp-brief__sub {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin: 0 0 20px;
    line-height: 1.4;
}

.nexar-contactp-brief__desc {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.75;
    margin: 0;
    max-width: 100%;
}

.nexar-contactp-brief__content {
    display: grid;
    grid-template-columns: 1fr 526px;
    gap: 48px;
    align-items: start;
}

/* CF7 Form Styling */
.nexar-cf7-styled .wpcf7-form > p > label,
.nexar-cf7-styled .wpcf7-form .nexar-form-row label:not(.wpcf7-list-item *) {
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
}

/* Acceptance label — grid layout for checkbox + text side-by-side */
.nexar-cf7-styled .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    flex-direction: row !important;
    align-items: start !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #555 !important;
    cursor: pointer;
}

.nexar-cf7-styled .wpcf7-form input[type="text"],
.nexar-cf7-styled .wpcf7-form input[type="email"],
.nexar-cf7-styled .wpcf7-form input[type="tel"],
.nexar-cf7-styled .wpcf7-form input[type="url"],
.nexar-cf7-styled .wpcf7-form select,
.nexar-cf7-styled .wpcf7-form textarea {
    width: 100%;
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 16px 18px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.nexar-cf7-styled .wpcf7-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.nexar-cf7-styled .wpcf7-form input::placeholder,
.nexar-cf7-styled .wpcf7-form textarea::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
}

.nexar-cf7-styled .wpcf7-form input:focus,
.nexar-cf7-styled .wpcf7-form select:focus,
.nexar-cf7-styled .wpcf7-form textarea:focus {
    border-color: #150089;
}

.nexar-cf7-styled .wpcf7-form textarea {
    min-height: 160px;
    resize: vertical;
}

.nexar-cf7-styled .wpcf7-form .nexar-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.nexar-cf7-styled .wpcf7-form p {
    margin: 0 0 0 10px;
}

.nexar-cf7-styled .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

.nexar-cf7-styled .wpcf7-form .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nexar-cf7-styled .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #150089;
}

.nexar-cf7-styled .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.55;
}

.nexar-cf7-styled .wpcf7-form input[type="submit"] {
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #3699FD, #1CD47F);
    border: none;
    border-radius: 0;
    padding: 18px 56px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.nexar-cf7-styled .wpcf7-form input[type="submit"]:hover {
    opacity: 0.9;
}

.nexar-cf7-styled .wpcf7-not-valid-tip { font-size: 13px; color: #e74c3c; margin-top: 4px; }
.nexar-cf7-styled .wpcf7-response-output { border: none !important; padding: 12px 0 !important; margin: 16px 0 0 !important; font-size: 14px; }

/* Contact Info Card */
.nexar-contactp-brief__info {
    background: #150089;
    padding: 40px 32px;
    width: 526px;
    min-height: 750px;
    display: flex;
    flex-direction: column;
}

.nexar-contactp-brief__info.nx-in {
    padding: 50px;
}
@media screen and (max-width: 1280px) {
    .nexar-contactp-brief__info.nx-in { padding: 0px; }
}

.nexar-contactp-brief__info-title {
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 72px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 40px;
}

.nexar-contactp-brief__info-gradient {
    background: linear-gradient(135deg, #3699FD, #1CD47F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nexar-contactp-brief__info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.nexar-contactp-brief__info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    filter: brightness(0) invert(1);
}

.nexar-contactp-brief__info-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
}

.nexar-contactp-brief__info-value {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.55;
    display: block;
}

/* Brief Section Responsive — label + value scale together */
@media screen and (max-width: 1520px) {
    .nexar-contactp-brief__heading { font-size: 48px; }
    .nexar-contactp-brief__info-title { font-size: 60px; }
    .nexar-contactp-brief__info-label,
    .nexar-contactp-brief__info-value { font-size: 15px; }
}
@media screen and (max-width: 1200px) {
    .nexar-contactp-brief__content { grid-template-columns: 1fr 420px; gap: 36px; }
    .nexar-contactp-brief__info { width: 420px; min-height: 650px; }
    .nexar-contactp-brief__heading { font-size: 42px; }
    .nexar-contactp-brief__info-title { font-size: 48px; }
    .nexar-contactp-brief__info-label,
    .nexar-contactp-brief__info-value { font-size: 14px; }
}
@media screen and (max-width: 1024px) {
    .nexar-contactp-brief__content { grid-template-columns: 1fr; }
    .nexar-contactp-brief__heading { font-size: 36px; }
    .nexar-contactp-brief__sub { font-size: 24px; }
    .nexar-contactp-brief__desc { font-size: 18px; }
    .nexar-contactp-brief__info { width: 100%; min-height: auto; }
    .nexar-contactp-brief__info-title { font-size: 40px; }
    .nexar-contactp-brief__info-label,
    .nexar-contactp-brief__info-value { font-size: 14px; }
}
@media screen and (max-width: 768px) {
    .nexar-contactp-brief__heading { font-size: 28px; }
    .nexar-contactp-brief__sub { font-size: 20px; }
    .nexar-contactp-brief__desc { font-size: 16px; }
    .nexar-contactp-brief__info-title { font-size: 32px; }
    .nexar-contactp-brief__info-label,
    .nexar-contactp-brief__info-value { font-size: 13px; }
    .nexar-contactp-brief__info-icon { width: 20px; height: 20px; }
    .nexar-cf7-styled .wpcf7-form .nexar-form-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
    .nexar-cf7-styled .wpcf7-form label { font-size: 16px; margin-bottom: 10px; }
    .nexar-cf7-styled .wpcf7-form input::placeholder,
    .nexar-cf7-styled .wpcf7-form textarea::placeholder { font-size: 14px; }
    .nexar-cf7-styled .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label { font-size: 14px; }
    .nexar-cf7-styled .wpcf7-form input[type="text"],
    .nexar-cf7-styled .wpcf7-form input[type="email"],
    .nexar-cf7-styled .wpcf7-form input[type="tel"],
    .nexar-cf7-styled .wpcf7-form select,
    .nexar-cf7-styled .wpcf7-form textarea { font-size: 14px; padding: 14px 16px; }
    .nexar-cf7-styled .wpcf7-form input[type="submit"] { font-size: 16px; padding: 16px 44px; }
}
@media screen and (max-width: 480px) {
    .nexar-contactp-brief__heading { font-size: 24px; }
    .nexar-contactp-brief__sub { font-size: 18px; }
    .nexar-contactp-brief__desc { font-size: 15px; }
    .nexar-contactp-brief__info { padding: 28px 20px; }
    .nexar-contactp-brief__info-title { font-size: 28px; }
    .nexar-contactp-brief__info-label,
    .nexar-contactp-brief__info-value { font-size: 12px; }
    .nexar-contactp-brief__info-icon { width: 18px; height: 18px; }
    .nexar-cf7-styled .wpcf7-form label { font-size: 15px; margin-bottom: 8px; }
    .nexar-cf7-styled .wpcf7-form input::placeholder,
    .nexar-cf7-styled .wpcf7-form textarea::placeholder { font-size: 13px; }
    .nexar-cf7-styled .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label { font-size: 13px; }
    .nexar-cf7-styled .wpcf7-form input[type="text"],
    .nexar-cf7-styled .wpcf7-form input[type="email"],
    .nexar-cf7-styled .wpcf7-form input[type="tel"],
    .nexar-cf7-styled .wpcf7-form select,
    .nexar-cf7-styled .wpcf7-form textarea { font-size: 14px; padding: 12px 14px; }
    .nexar-cf7-styled .wpcf7-form input[type="submit"] { font-size: 15px; padding: 14px 36px; width: 100%; }
}


/* === Contact Page — Visit Us Section === */

.nexar-contactp-visit {
    background: #150089;
    position: relative;
    overflow: hidden;
}

.nexar-contactp-visit__bars {
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 2;
    width: 221px;
    height: 110px;
    pointer-events: none;
}

.nexar-contactp-visit__bar {
    position: absolute;
    left: 0;
    display: block;
    height: auto;
    transform-origin: left center;
    transform: scaleX(0);
}

.nexar-contactp-visit__bar--2 { width: 170px; left: 0;     top: 0; }
.nexar-contactp-visit__bar--1 { width: 51px;  left: 150px; top: -15px; }
.nexar-contactp-visit__bar--3 { width: 144px; left: 0;     top: 26px; }
.nexar-contactp-visit__bar--4 { width: 39px;  left: 0;     top: 52px; }

.nexar-contactp-visit__bars.bars-entered .nexar-contactp-visit__bar--2 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0s;
}
.nexar-contactp-visit__bars.bars-entered .nexar-contactp-visit__bar--1 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0.2s;
}
.nexar-contactp-visit__bars.bars-entered .nexar-contactp-visit__bar--3 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0.4s;
}
.nexar-contactp-visit__bars.bars-entered .nexar-contactp-visit__bar--4 {
    animation: nexar-svc-gum 3.5s infinite;
    animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .nexar-contactp-visit__bar { transform: scaleX(1) translateY(0) !important; animation: none !important; }
}

.nexar-contactp-visit__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.nexar-contactp-visit__heading {
    font-family: 'Almarena Neue Display', 'Almarena Neue', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 48px;
    line-height: 1.15;
}

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

.nexar-contactp-visit__card {
    position: relative;
    overflow: hidden;
    height: 426px;
}

.nexar-contactp-visit__card-img {
    width: 100%;
    height: 100%;
}

.nexar-contactp-visit__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.nexar-contactp-visit__card:hover .nexar-contactp-visit__card-img img {
    transform: scale(1.05);
}

.nexar-contactp-visit__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nexar-contactp-visit__card-pin {
    display: inline-flex;
    margin-bottom: 4px;
}

.nexar-contactp-visit__card-city {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nexar-contactp-visit__card-pin-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.nexar-contactp-visit__card-addr {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 6px 0 10px;
}

.nexar-contactp-visit__card-link {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1CD47F;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nexar-contactp-visit__card-addr,
.nexar-contactp-visit__card-link {
    display: none;
}

.nexar-contactp-visit__card:hover .nexar-contactp-visit__card-overlay {
    background: linear-gradient(to right, #3699FD 0%, #1CD47F 100%);
}

.nexar-contactp-visit__card:hover .nexar-contactp-visit__card-addr,
.nexar-contactp-visit__card:hover .nexar-contactp-visit__card-link {
    display: block;
}

.nexar-contactp-visit__card:hover .nexar-contactp-visit__card-link {
    color: #FFFFFF;
}

/* Visit Us Responsive */
@media screen and (max-width: 1520px) {
    .nexar-contactp-visit__card { height: 400px; }
    .nexar-contactp-visit__bars { top: 70px; width: 200px; height: 100px; }
}
@media screen and (max-width: 1440px) {
    .nexar-contactp-visit__bars { top: 65px; width: 180px; height: 90px; }
}
@media screen and (max-width: 1366px) {
    .nexar-contactp-visit__card { height: 370px; }
    .nexar-contactp-visit__bars { top: 60px; width: 160px; height: 80px; }
}
@media screen and (max-width: 1200px) {
    .nexar-contactp-visit__card { height: 340px; }
    .nexar-contactp-visit__bars { top: 50px; width: 140px; height: 70px; }
}
@media screen and (max-width: 1024px) {
    .nexar-contactp-visit__heading { font-size: 36px; }
    .nexar-contactp-visit__grid { grid-template-columns: repeat(2, 1fr); }
    .nexar-contactp-visit__card { height: 340px; }
    .nexar-contactp-visit__bars { top: 40px; width: 120px; height: 60px; }
}
@media screen and (max-width: 768px) {
    .nexar-contactp-visit__heading { font-size: 28px; margin-bottom: 32px; }
    .nexar-contactp-visit__card { height: 300px; }
    .nexar-contactp-visit__bars { display: none; }
}
@media screen and (max-width: 480px) {
    .nexar-contactp-visit__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nexar-contactp-visit__heading { font-size: 24px; }
    .nexar-contactp-visit__card { height: 240px; }
    .nexar-contactp-visit__card-city { font-size: 18px; }
}


/* ═══════════════════════════════════════════
   CUSTOM SELECT — Choices.js Overrides
   ═══════════════════════════════════════════ */

/* === Dark Theme (Home page Get In Touch — stays translucent on indigo bg) === */
.nexar-contact .nexar-choices .choices__inner {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    min-height: 48px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

/* === Light Theme (Modal — white bg inputs on gradient card) === */
.nexar-modal .nexar-choices .choices__inner {
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    min-height: 48px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #1A1A1A;
}

/* Home Get In Touch: white selected item text on indigo bg */
.nexar-contact .nexar-choices .choices__list--single .choices__item {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}
/* Modal: dark selected item text on white bg */
.nexar-modal .nexar-choices .choices__list--single .choices__item {
    color: #1A1A1A;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}

/* Home Get In Touch: dark indigo dropdown */
.nexar-contact .nexar-choices .choices__list--dropdown {
    background: #1a0098 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    margin-top: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: #FFFFFF !important;
}
/* Modal: white dropdown */
.nexar-modal .nexar-choices .choices__list--dropdown {
    background: #FFFFFF !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 6px !important;
    margin-top: 4px;
    box-shadow: 0 8px 24px rgba(21, 0, 137, 0.15);
    color: #1A1A1A !important;
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__list,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__list {
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar {
    width: 6px;
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-track,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
    background: transparent;
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb:hover,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__item,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__item {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__item--selectable.is-highlighted,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.nexar-contact .nexar-choices .choices__list--dropdown .choices__item--selectable:hover,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__item--selectable:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Override white/light background on placeholder/disabled/selected items */
/* Home Get In Touch — dark dropdown items */
.nexar-contact .nexar-choices .choices__list--dropdown .choices__item--disabled,
.nexar-contact .nexar-choices .choices__list--dropdown .choices__item.is-selected,
.nexar-contact .nexar-choices .choices__list--dropdown .choices__placeholder {
    background: transparent !important;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.5) !important;
}
.nexar-contact .nexar-choices .choices__list--dropdown .choices__item {
    color: #FFFFFF !important;
}
.nexar-contact .nexar-choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
}

/* Modal — light dropdown items */
.nexar-modal .nexar-choices .choices__list--dropdown .choices__item--disabled,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__item.is-selected,
.nexar-modal .nexar-choices .choices__list--dropdown .choices__placeholder {
    background: transparent !important;
    background-color: transparent !important;
    color: #6A6A6A !important;
}
.nexar-modal .nexar-choices .choices__list--dropdown .choices__item {
    color: #1A1A1A !important;
}
.nexar-modal .nexar-choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: #F2F2F8 !important;
    color: #150089 !important;
}

/* === Light Theme (Contact page form — white bg, dark text) === */
.nexar-cf7-styled .nexar-choices .choices__inner {
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px 18px;
    min-height: 52px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #1A1A1A;
}

.nexar-cf7-styled .nexar-choices .choices__list--single .choices__item {
    color: #1A1A1A;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown {
    background: #FFFFFF !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    margin-top: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__list {
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar {
    width: 6px;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-track {
    background: transparent;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.45);
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__item {
    color: #1A1A1A !important;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: #f5f5f5 !important;
    color: #150089 !important;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__item--selectable:hover {
    background: #f8f8f8 !important;
}

.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__item--disabled,
.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__item.is-selected,
.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__placeholder {
    background: transparent !important;
    background-color: transparent !important;
    color: #999 !important;
}

.nexar-cf7-styled .nexar-choices[data-type*="select-one"]:focus .choices__inner {
    border-color: #150089;
}

/* Custom SVG arrow (dark) for contact page selects */
.nexar-cf7-styled .nexar-choices[data-type*="select-one"]::after {
    content: '' !important;
    border: none !important;
    width: 12px !important;
    height: 8px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23150089' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    right: 18px !important;
    top: 50% !important;
    margin-top: -4px !important;
    transition: transform 0.2s ease;
}

.nexar-cf7-styled .nexar-choices[data-type*="select-one"].is-open::after {
    transform: rotate(180deg);
}

.nexar-cf7-styled .nexar-choices .choices__placeholder,
.nexar-cf7-styled .nexar-choices .choices__list--single .choices__placeholder,
.nexar-cf7-styled .nexar-choices .choices__list--dropdown .choices__placeholder {
    color: #000000 !important;
    opacity: 1 !important;
}

/* === Shared Choices.js overrides === */
.nexar-choices .choices__list--single {
    padding: 0;
}

.nexar-choices[data-type*="select-one"]::after {
    border-color: currentColor transparent transparent;
    right: 16px;
    top: 50%;
    margin-top: -3px;
}

.nexar-choices[data-type*="select-one"].is-open::after {
    border-color: transparent transparent currentColor;
    margin-top: -6px;
}

.nexar-choices .choices__placeholder {
    opacity: 0.5;
}

/* Home Get In Touch — white down arrow on dark bg */
.nexar-contact .nexar-choices[data-type*="select-one"]::after {
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 6px 5px 0 5px !important;
    border-color: #FFFFFF transparent transparent transparent !important;
    background: none !important;
    right: 16px !important;
    top: 50% !important;
    margin-top: -3px !important;
    transition: transform 0.2s ease;
}
.nexar-contact .nexar-choices[data-type*="select-one"].is-open::after {
    transform: rotate(180deg);
}
.nexar-contact .nexar-choices .choices__placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

/* Modal — dark down arrow on white bg */
.nexar-modal .nexar-choices[data-type*="select-one"]::after {
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 6px 5px 0 5px !important;
    border-color: #1A1A1A transparent transparent transparent !important;
    background: none !important;
    right: 16px !important;
    top: 50% !important;
    margin-top: -3px !important;
    transition: transform 0.2s ease;
}
.nexar-modal .nexar-choices[data-type*="select-one"].is-open::after {
    transform: rotate(180deg);
}
.nexar-modal .nexar-choices .choices__placeholder {
    color: #1A1A1A !important;
    opacity: 1 !important;
}


/* ═══════════════════════════════════════════
   FLAG PHONE INPUT — intl-tel-input Overrides
   ═══════════════════════════════════════════ */

/* === Dark Theme (Home page contact + Modal) === */
.nexar-contact .iti,
.nexar-modal .iti {
    width: 100%;
}

.nexar-contact .iti__selected-flag,
.nexar-modal .iti__selected-flag,
.nexar-contact .iti__selected-country,
.nexar-modal .iti__selected-country,
.nexar-contact .iti__selected-country-primary,
.nexar-modal .iti__selected-country-primary {
    background: transparent !important;
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 0 10px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

/* Home Get In Touch dial code — white on indigo bg */
.nexar-contact .iti__selected-dial-code {
    color: rgba(255, 255, 255, 0.85) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 15px !important;
    margin-left: 6px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Modal + Contact page dial code — dark on white bg */
.nexar-modal .iti__selected-dial-code,
.nexar-contactp-brief__form .iti__selected-dial-code {
    color: #1A1A1A !important;
    -webkit-text-fill-color: #1A1A1A !important;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 15px !important;
    margin-left: 6px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure typed phone number starts AFTER the dial code pill separator */
.iti input {
    padding-left: 100px !important;
}

.iti--show-selected-dial-code input.iti__tel-input,
.iti--show-selected-dial-code input[type="tel"] {
    padding-left: 120px !important;
}

/* Make the flag + dial code pill span full height with proper separator */
.iti__selected-country,
.iti__selected-flag,
.iti__selected-country-primary {
    height: 100%;
    min-height: 100%;
}

/* Reorder: flag -> arrow -> dial code (arrow sits right next to the flag) */
.iti__selected-country .iti__flag,
.iti__selected-country .iti__flag-box {
    order: 1;
}
.iti__selected-country .iti__arrow,
.iti__selected-country .iti__dropdown-arrow {
    order: 2;
    margin-left: 4px;
    margin-right: 8px;
}
.iti__selected-country .iti__selected-dial-code {
    order: 3;
}

/* Force dial code visibility on all intl-tel-input instances */
.iti--show-selected-dial-code .iti__selected-dial-code,
.iti .iti__selected-dial-code {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Invalid phone validation state */
input.iti-invalid,
.iti input.iti-invalid {
    border-color: #ef0000 !important;
    box-shadow: 0 0 0 1px #ef0000 !important;
}

/* Field-level validation error messages */
.nexar-field-error {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ef0000 !important;
    -webkit-text-fill-color: #ef0000 !important;
    margin-top: 6px;
}

.nexar-field-error::first-letter {
    text-transform: uppercase;
}

/* Reduce space between dial code and input */
/* padding-left priority handled by nexar.js initIntlTelInput() */

.nexar-contact .iti__arrow,
.nexar-modal .iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.5);
}

.nexar-contact .iti__arrow--up,
.nexar-modal .iti__arrow--up {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.nexar-contact .iti__country-list,
.nexar-modal .iti__country-list,
.nexar-contact .iti__dropdown-content,
.nexar-modal .iti__dropdown-content {
    background: #1a0098 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    color: #fff;
}

.nexar-contact .iti__country,
.nexar-modal .iti__country {
    padding: 10px 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
}

.nexar-contact .iti__country-name,
.nexar-modal .iti__country-name {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-left: 8px;
}

.nexar-contact .iti__country.iti__highlight,
.nexar-modal .iti__country.iti__highlight,
.nexar-contact .iti__country.iti__active,
.nexar-modal .iti__country.iti__active {
    background: rgba(255, 255, 255, 0.12) !important;
}

.nexar-contact .iti__country:hover,
.nexar-modal .iti__country:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.nexar-contact .iti__dial-code,
.nexar-modal .iti__dial-code {
    color: rgba(255, 255, 255, 0.6);
}

.nexar-contact .iti__search-input,
.nexar-modal .iti__search-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: none !important;
    color: #fff !important;
    font-family: 'Noto Sans', sans-serif;
    padding: 10px 14px !important;
    text-align: left !important;
    width: 100%;
    box-sizing: border-box;
}

.nexar-contact .iti__search-input::placeholder,
.nexar-modal .iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    text-align: left;
}

/* Custom scrollbar for dropdown */
.nexar-contact .iti__dropdown-content,
.nexar-modal .iti__dropdown-content,
.nexar-contact .iti__country-list,
.nexar-modal .iti__country-list {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.nexar-contact .iti__dropdown-content::-webkit-scrollbar,
.nexar-modal .iti__dropdown-content::-webkit-scrollbar,
.nexar-contact .iti__country-list::-webkit-scrollbar,
.nexar-modal .iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.nexar-contact .iti__dropdown-content::-webkit-scrollbar-track,
.nexar-modal .iti__dropdown-content::-webkit-scrollbar-track,
.nexar-contact .iti__country-list::-webkit-scrollbar-track,
.nexar-modal .iti__country-list::-webkit-scrollbar-track {
    background: transparent;
}

.nexar-contact .iti__dropdown-content::-webkit-scrollbar-thumb,
.nexar-modal .iti__dropdown-content::-webkit-scrollbar-thumb,
.nexar-contact .iti__country-list::-webkit-scrollbar-thumb,
.nexar-modal .iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}

.nexar-contact .iti__dropdown-content::-webkit-scrollbar-thumb:hover,
.nexar-modal .iti__dropdown-content::-webkit-scrollbar-thumb:hover,
.nexar-contact .iti__country-list::-webkit-scrollbar-thumb:hover,
.nexar-modal .iti__country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* === Light Theme (Contact page form — white bg, dark text) === */
.nexar-cf7-styled .iti {
    width: 100%;
}

.nexar-cf7-styled .iti__selected-flag,
.nexar-cf7-styled .iti__selected-country,
.nexar-cf7-styled .iti__selected-country-primary {
    background: transparent !important;
    border: none !important;
    border-right: 1px solid #ddd !important;
    padding: 0 10px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.nexar-cf7-styled .iti__selected-dial-code {
    color: #1A1A1A !important;
    -webkit-text-fill-color: #1A1A1A !important;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 15px !important;
    margin-left: 6px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nexar-cf7-styled .iti__arrow {
    border-top-color: #1A1A1A;
}

.nexar-cf7-styled .iti__arrow--up {
    border-bottom-color: #1A1A1A;
}

.nexar-cf7-styled .iti__country-list,
.nexar-cf7-styled .iti__dropdown-content {
    background: #FFFFFF !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
    color: #1A1A1A;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.nexar-cf7-styled .iti__dropdown-content::-webkit-scrollbar,
.nexar-cf7-styled .iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.nexar-cf7-styled .iti__dropdown-content::-webkit-scrollbar-track,
.nexar-cf7-styled .iti__country-list::-webkit-scrollbar-track {
    background: transparent;
}

.nexar-cf7-styled .iti__dropdown-content::-webkit-scrollbar-thumb,
.nexar-cf7-styled .iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.nexar-cf7-styled .iti__dropdown-content::-webkit-scrollbar-thumb:hover,
.nexar-cf7-styled .iti__country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.45);
}

.nexar-cf7-styled .iti__country {
    padding: 10px 14px !important;
    color: #1A1A1A !important;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
}

.nexar-cf7-styled .iti__country-name {
    color: #1A1A1A !important;
    margin-left: 8px;
}

.nexar-cf7-styled .iti__country.iti__highlight,
.nexar-cf7-styled .iti__country.iti__active {
    background: #f5f5f5 !important;
    color: #150089 !important;
}

.nexar-cf7-styled .iti__country:hover {
    background: #f8f8f8 !important;
}

.nexar-cf7-styled .iti__dial-code {
    color: #888;
}

.nexar-cf7-styled .iti__search-input {
    background: #f8f8f8 !important;
    border: 1px solid #eee !important;
    color: #1A1A1A !important;
    font-family: 'Noto Sans', sans-serif;
    padding: 16px 100px !important;
    text-align: left !important;
    width: 100%;
    box-sizing: border-box;
}

.nexar-cf7-styled .iti__search-input::placeholder {
    color: #999 !important;
    text-align: left;
}

/* === Shared intl-tel-input overrides === */
.iti {
    display: block !important;
}

.iti input {
    padding-left: 90px !important;
}

/* Scrollbar for country list */
.iti__country-list {
    max-height: 250px;
    scrollbar-width: thin;
}

.iti__country-list::-webkit-scrollbar {
    width: 4px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.4);
    border-radius: 2px;
}

/* ============================================================
   SHARED FORM BEHAVIOR — Contact page, Home contact, Modal
   Applies: submit-only validation, response pill, tight iti,
   hidden native tip, 14px Choices placeholder at 1280
   ============================================================ */

/* Hide CF7 native tip — our JS renders .nexar-field-error instead */
.nexar-cf7-styled .wpcf7-not-valid-tip,
.nexar-contact__form .wpcf7-not-valid-tip,
.nexar-modal .wpcf7-not-valid-tip,
.nexar-modal__form .wpcf7-not-valid-tip {
    display: none !important;
}

/* Response output — styled pill with icon (success green, error red) */
.nexar-cf7-styled .wpcf7-response-output,
.nexar-contact__form .wpcf7-response-output,
.nexar-modal .wpcf7-response-output {
    border: none !important;
    padding: 14px 18px !important;
    margin: 20px 0 0 !important;
    font-size: 14px !important;
    font-family: 'Noto Sans', sans-serif !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    align-items: center;
    gap: 10px;
    -webkit-text-fill-color: initial !important;
    /* Hide by default — prevents dark flash before CF7 swaps form class */
    display: none !important;
}
.nexar-cf7-styled form.sent .wpcf7-response-output,
.nexar-cf7-styled form.failed .wpcf7-response-output,
.nexar-cf7-styled form.invalid .wpcf7-response-output,
.nexar-cf7-styled form.unaccepted .wpcf7-response-output,
.nexar-cf7-styled form.spam .wpcf7-response-output,
.nexar-contact__form form.sent .wpcf7-response-output,
.nexar-contact__form form.failed .wpcf7-response-output,
.nexar-contact__form form.invalid .wpcf7-response-output,
.nexar-contact__form form.unaccepted .wpcf7-response-output,
.nexar-contact__form form.spam .wpcf7-response-output,
.nexar-modal form.sent .wpcf7-response-output,
.nexar-modal form.failed .wpcf7-response-output,
.nexar-modal form.invalid .wpcf7-response-output {
    display: flex !important;
}
/* Success */
.nexar-cf7-styled form.sent .wpcf7-response-output,
.nexar-contact__form form.sent .wpcf7-response-output,
.nexar-modal form.sent .wpcf7-response-output {
    color: #0f7a3f !important;
    background: #e6f7ec !important;
    border: 1px solid #b7e4c7 !important;
    -webkit-text-fill-color: #0f7a3f !important;
}
.nexar-cf7-styled form.sent .wpcf7-response-output::before,
.nexar-contact__form form.sent .wpcf7-response-output::before,
.nexar-modal form.sent .wpcf7-response-output::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #0f7a3f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/14px;
    border-radius: 50%;
}
/* Error / validation */
.nexar-cf7-styled form.failed .wpcf7-response-output,
.nexar-cf7-styled form.invalid .wpcf7-response-output,
.nexar-cf7-styled form.unaccepted .wpcf7-response-output,
.nexar-cf7-styled form.spam .wpcf7-response-output,
.nexar-contact__form form.failed .wpcf7-response-output,
.nexar-contact__form form.invalid .wpcf7-response-output,
.nexar-contact__form form.unaccepted .wpcf7-response-output,
.nexar-contact__form form.spam .wpcf7-response-output,
.nexar-modal form.failed .wpcf7-response-output,
.nexar-modal form.invalid .wpcf7-response-output {
    color: #b3261e !important;
    background: #fdecea !important;
    border: 1px solid #f5c2c0 !important;
    -webkit-text-fill-color: #b3261e !important;
}

/* Reduce Choices.js bottom gap so error sits closer to the select */
.nexar-cf7-styled .choices,
.nexar-contact__form .choices,
.nexar-modal .choices,
.nexar-modal__form .choices {
    margin-bottom: 4px !important;
}

/* Tighten flag ↔ dial-code spacing across all scopes */
.nexar-cf7-styled .iti__selected-country,
.nexar-contact__form .iti__selected-country,
.nexar-modal .iti__selected-country {
    gap: 2px;
    padding: 0 8px;
}
.nexar-cf7-styled .iti__selected-dial-code,
.nexar-contact__form .iti__selected-dial-code,
.nexar-modal .iti__selected-dial-code {
    margin-left: 2px;
}

/* Reduce row spacing on home + modal too */
.nexar-contact__form .wpcf7-form .nexar-form-row,
.nexar-modal .nexar-modal__row {
    margin-bottom: 16px !important;
}
.nexar-contact__form .wpcf7-form p {
    margin: 0 0 26px !important;
}

/* Choices.js widget — 14px placeholder at 1280 for all scopes */
@media screen and (max-width: 1280px) {
    .nexar-cf7-styled .choices__placeholder,
    .nexar-cf7-styled .choices__list--single .choices__item,
    .nexar-cf7-styled .nexar-choices .choices__placeholder,
    .nexar-cf7-styled .nexar-choices .choices__list--single .choices__item,
    .nexar-contact__form .choices__placeholder,
    .nexar-contact__form .choices__list--single .choices__item,
    .nexar-contact .nexar-choices .choices__placeholder,
    .nexar-contact .nexar-choices .choices__list--single .choices__item,
    .nexar-modal .choices__placeholder,
    .nexar-modal .choices__list--single .choices__item,
    .nexar-modal .nexar-choices .choices__placeholder,
    .nexar-modal .nexar-choices .choices__list--single .choices__item {
        font-family: 'Noto Sans', sans-serif !important;
        font-size: 14px !important;
    }

    /* Form labels/inputs/textarea 14px across scopes */
    .nexar-contact__form .wpcf7-form label,
    .nexar-contact__form .wpcf7-form input[type="text"],
    .nexar-contact__form .wpcf7-form input[type="email"],
    .nexar-contact__form .wpcf7-form input[type="tel"],
    .nexar-contact__form .wpcf7-form textarea,
    .nexar-modal label,
    .nexar-modal input[type="text"],
    .nexar-modal input[type="email"],
    .nexar-modal input[type="tel"],
    .nexar-modal textarea {
        font-size: 14px !important;
        font-family: 'Noto Sans', sans-serif !important;
    }
    .nexar-contact__form .wpcf7-form input::placeholder,
    .nexar-contact__form .wpcf7-form textarea::placeholder,
    .nexar-modal input::placeholder,
    .nexar-modal textarea::placeholder {
        font-size: 14px !important;
    }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.nexar-back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3699FD 0%, #1CD47F 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(54, 153, 253, 0.35);
}
.nexar-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nexar-back-to-top:hover {
    box-shadow: 0 6px 24px rgba(54, 153, 253, 0.5);
    transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
    .nexar-back-to-top {
        bottom: 24px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    .nexar-back-to-top svg {
        width: 16px;
        height: 16px;
    }
}
@media screen and (max-width: 480px) {
    .nexar-back-to-top {
        bottom: 20px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.nexar-404 {
    background: #FFFFFF;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.nexar-404__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nexar-404__image {
    width: auto;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto 32px;
}
.nexar-404__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    color: #000000;
    margin: 0 0 32px;
    line-height: 1.2;
    text-align: center;
}
.nexar-404__btn {
    display: inline-block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #3699FD, #1CD47F);
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 0;
    transition: opacity 0.3s;
}
.nexar-404__btn:hover { opacity: 0.9; }
@media screen and (max-width: 1024px) {
    .nexar-404__image { max-width: 380px; }
}
@media screen and (max-width: 768px) {
    .nexar-404__image { max-width: 300px; margin-bottom: 24px; }
    .nexar-404__content { padding: 24px; }
}
@media screen and (max-width: 480px) {
    .nexar-404__image { max-width: 240px; }
    .nexar-404__btn { padding: 12px 28px; font-size: 14px; }
}

/* Hide Google reCAPTCHA v3 badge (remember to add the required disclosure
   text in the form area per Google's terms). */
.grecaptcha-badge {
    display: none !important;
}

/* Cultural Highlights — single image display */
.nexar-destdetail-cultural__image {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
}
.nexar-destdetail-cultural__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
