/* ================================================================
   ROOT
================================================================ */
:root {
    /* --red: #e2001a; */
    --red: #f31273;
    --red-hover: #f31273d1;
    --pink: #f31273;
    --purple: #7b2ff7;
    --grad: linear-gradient(135deg, #7b2ff7, #f107a3);
    --navy: #0d1128;
    --navy2: #080c1f;
    --dark: #1a1a1a;
    --light: #f2f4f8;
    --border: #e4e7ef;
    --hh: 76px;
    --hh2: 107px;
    --light-color: rgb(255 255 255 / 76%);
	
	
	
	/* Global Colors */
  --e-global-color-primary: #1A1A1A;
  --e-global-color-secondary: #54595F;
  --e-global-color-text: #333333;
  --e-global-color-accent: #C89B3C;


  /* Base Fonts */
  --enx-font-heading: 'Space Grotesk', Arial, sans-serif;
  --enx-font-body: 'Open Sans', Arial, sans-serif;

  /* Elementor Global Typography */
  --e-global-typography-primary-font-family: var(--enx-font-heading);
  --e-global-typography-primary-font-weight: 600;

  --e-global-typography-secondary-font-family: var(--enx-font-heading);
  --e-global-typography-secondary-font-weight: 500;

  --e-global-typography-text-font-family: var(--enx-font-body);
  --e-global-typography-text-font-weight: 400;

  --e-global-typography-accent-font-family: var(--enx-font-body);
  --e-global-typography-accent-font-weight: 700;

  /* Theme Defaults */
  --enx-theme-font-family: var(--e-global-typography-secondary-font-family);


	--enx-theme-heading-color: #2f3033;
	--enx-theme-text-color: #5f6268;
	--enx-theme-muted-text-color: #74777d;

	--enx-theme-link-color: var(--red);
	--enx-theme-link-hover-color: #c90f5f;

	--enx-theme-accent: var(--red);
	--enx-theme-accent-purple: var(--purple);
	--enx-theme-soft-bg: #f7f7fa;

    --enx-theme-heading-size: 44.8px;
    --enx-theme-heading-weight: 700;
    --enx-theme-body-size: 16px;
    --enx-theme-body-weight: 400;

    --enx-theme-button-bg: var(--red);
    --enx-theme-button-border-color: var(--red);
    --enx-theme-button-text-color: #fff;

    /* Refined heading scale for Merriweather */
    --enx-h1-size: clamp(42px, 4.2vw, 60px);
    --enx-h2-size: clamp(28px, 2.4vw, 38px);
    --enx-h3-size: clamp(21px, 1.55vw, 26px);
    --enx-h4-size: clamp(18px, 1.25vw, 22px);
    --enx-h5-size: 17px;
    --enx-h6-size: 15px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


/* ================================================================
   GLOBAL TYPOGRAPHY BASELINE
================================================================ */

body {
    font-family: var(--enx-font-body);
    font-size: var(--enx-theme-body-size);
    font-weight: var(--enx-theme-body-weight);
    color: var(--enx-theme-text-color);
    line-height: 1.7;
}

/* Normal WordPress + theme headings */
h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.page-title,
.single-title,
.single-post-title,
.post-title,
.blog-title {
    font-family: var(--enx-font-heading);
    color: var(--enx-theme-heading-color);
    font-weight: var(--enx-theme-heading-weight);
}

/* H1 refinement for Heading font */
h1,
.entry-title,
.page-title,
.single-title,
.single-post-title,
.post-title,
.blog-title {
    font-size: var(--enx-h1-size);
    line-height: 1.08;
    letter-spacing: -0.3px;
}

/* H2 refinement */
h2 {
    font-size: var(--enx-h2-size);
    line-height: 1.18;
    letter-spacing: -0.2px;
}

/* H3 refinement */
h3 {
    font-size: var(--enx-h3-size);
    line-height: 1.22;
    letter-spacing: -0.1px;
}

/* H4 refinement */
h4 {
    font-size: var(--enx-h4-size);
    line-height: 1.3;
}

/* H5 and H6 refinement */
h5 {
    font-size: var(--enx-h5-size);
    line-height: 1.35;
}

h6 {
    font-size: var(--enx-h6-size);
    line-height: 1.4;
}

/* Normal paragraphs and article text */
p,
li {
    font-family: var(--enx-font-body);
    color: var(--enx-theme-text-color);
    line-height: 1.7;
}

body {
    font-family: var(--enx-font-body);
    font-size: var(--enx-theme-body-size);
    font-weight: var(--enx-theme-body-weight);
    color: var(--enx-theme-text-color);
    line-height: 1.7;
}

p,
li {
    font-family: var(--enx-font-body);
    color: var(--enx-theme-text-color);
    line-height: 1.7;
}

a {
    color: var(--enx-theme-link-color);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--enx-theme-link-hover-color);
}

small,
.wp-caption-text,
.breadcrumb,
.breadcrumb a,
.post-meta,
.entry-meta {
    color: var(--enx-theme-muted-text-color);
}

/* ================================================================
   ELEMENTOR TYPOGRAPHY ALIGNMENT
================================================================ */

.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor h1,
.elementor-widget-text-editor h2,
.elementor-widget-text-editor h3,
.elementor-widget-text-editor h4,
.elementor-widget-text-editor h5,
.elementor-widget-text-editor h6 {
    font-family: var(--enx-font-heading);
    font-weight: var(--enx-theme-heading-weight);
    color: var(--enx-theme-heading-color);
}

/* Elementor H1 */
.elementor-widget-heading h1.elementor-heading-title,
.elementor-widget-text-editor h1 {
    font-size: var(--enx-h1-size);
    line-height: 1.08;
    letter-spacing: -0.3px;
}

/* Elementor H2 */
.elementor-widget-heading h2.elementor-heading-title,
.elementor-widget-text-editor h2 {
    font-size: var(--enx-h2-size);
    line-height: 1.18;
    letter-spacing: -0.2px;
}

/* Elementor H3 */
.elementor-widget-heading h3.elementor-heading-title,
.elementor-widget-text-editor h3 {
    font-size: var(--enx-h3-size);
    line-height: 1.22;
    letter-spacing: -0.1px;
}

/* Elementor H4 */
.elementor-widget-heading h4.elementor-heading-title,
.elementor-widget-text-editor h4 {
    font-size: var(--enx-h4-size);
    line-height: 1.3;
}

/* Elementor H5 */
.elementor-widget-heading h5.elementor-heading-title,
.elementor-widget-text-editor h5 {
    font-size: var(--enx-h5-size);
    line-height: 1.35;
}

/* Elementor H6 */
.elementor-widget-heading h6.elementor-heading-title,
.elementor-widget-text-editor h6 {
    font-size: var(--enx-h6-size);
    line-height: 1.4;
}

/* ================================================================
   VNX CLEAN DIAMOND BULLET LIST
================================================================ */
.vnx-diamond-list {
  margin-left: 2.0rem;
}

.vnx-diamond-list ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.vnx-diamond-list li {
  list-style: none !important;
  position: relative;
  padding-left: 1.55em;
  margin-bottom: 1.05em;
  line-height: 1.6;
}

.vnx-diamond-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f31273 !important;
  font-size: 0.82em;
  line-height: 1;
}

.vnx-diamond-list li:last-child {
  margin-bottom: 0;
}

/* ================================================================
   VNX EDITORIAL CALLOUT
================================================================ */
.vnx-callout {
  position: relative;
  margin: 2.4rem 0;
  padding: 0.35rem 0 0.35rem 2.1rem;
  max-width: 920px;
}

.vnx-callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 4px;
  height: calc(100% - 0.2rem);
  background: linear-gradient(to bottom, #ff4d94, #f31273);
  border-radius: 4px;
}

.vnx-callout p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.7;
  color: #555;
}

.vnx-callout strong {
  color: #333;
  font-weight: 700;
}

/* ================================================================
   FIx - to ensure elementor button widget color backgroun is pink
================================================================ */
.enx-btn-fix .elementor-button,
.enx-btn-fix .elementor-button:visited,
.enx-btn-fix .elementor-button:hover,
.enx-btn-fix .elementor-button:focus {
  background-color: #f31273 !important;
  border-color: #f31273 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.enx-btn-fix .elementor-button:hover,
.enx-btn-fix .elementor-button:focus {
  background-color: #d90f66 !important;
  border-color: #d90f66 !important;
}

.enx-btn-fix .elementor-button .elementor-button-text,
.enx-btn-fix .elementor-button i,
.enx-btn-fix .elementor-button svg {
  color: #ffffff !important;
  fill: currentColor !important;
}

/* ================================================================
   HEADER  — Bootstrap navbar-expand-xl
   Desktop (≥1200px) : horizontal, hover mega/dropdown
   Mobile  (<1200px) : collapsed, accordion sub-menus
================================================================ */
#hdr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: background .35s, box-shadow .35s, border-color .35s;
    background: transparent;
    border-bottom: 1px solid transparent;
}

#hdr.scrolled {
    background: #fff;
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

/* Inner flex row */
.hdr-inner {
    display: flex;
    align-items: center;
    min-height: var(--hh);
    padding: 0 28px;
    width: 100%;
}

/* Logo */
#siteLogo {
    width: 300px;
    object-fit: contain;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 0;
    padding: 0;
}

.site-logo img {
    max-height: 60px;
    width: auto;
    display: block
}

/* Divider — desktop only */
.hdr-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, .25);
    margin: 0 16px;
    flex-shrink: 0;
    transition: background .35s;
}

#hdr.scrolled .hdr-divider {
    background: #ddd
}

/* Toggler */
.navbar-toggler.ham-btn {
    border: none;
    box-shadow: none;
    color: #fff;
    font-size: 28px;
    padding: 6px 8px;
    background: none;
    transition: color .35s;
    margin-left: auto;
    /* push to right */
}

#hdr.scrolled .navbar-toggler.ham-btn {
    color: var(--dark)
}

.navbar-toggler.ham-btn:focus {
    box-shadow: none
}

/* ---- DESKTOP NAV ---- */
.navbar-nav.desk-nav {
    align-items: center;
    flex: 1;
}

.desk-nav>.nav-item>.nav-link {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 15px !important;
    height: var(--hh2);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
}

.desk-nav>.nav-item>.nav-link i.chevron {
    font-size: 9px;
    opacity: .7;
    transition: transform .25s;
}

.desk-nav>.nav-item:hover>.nav-link .chevron {
    transform: rotate(180deg)
}

.desk-nav>.nav-item:hover>.nav-link,
.desk-nav>.nav-item.is-active>.nav-link {
    color: #fff;
    /*border-bottom-color: #fff;*/
}

#hdr.scrolled .desk-nav>.nav-item>.nav-link {
    color: #333
}

#hdr.scrolled .desk-nav>.nav-item:hover>.nav-link,
#hdr.scrolled .desk-nav>.nav-item.is-active>.nav-link {
    color: var(--red);
    /*border-bottom-color: var(--red);*/
}

/* "Get in touch" always red */
.desk-nav .nav-link-cta {
    color: var(--red) !important
}

#hdr.scrolled .desk-nav .nav-link-cta {
    color: var(--red) !important
}

/* ---- DESKTOP SIMPLE DROPDOWN ---- */
.desktop-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border-top: 2px solid var(--red);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    z-index: 9998;
    animation: fadeD .16s ease;
}

.nav-item.has-drop {
    position: relative
}

.nav-item.has-drop:hover .desktop-drop {
    display: block
}

.desktop-drop li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: .12s;
}

.desktop-drop li a:hover {
    background: #fff1f4;
    color: var(--red)
}

/* ---- DESKTOP MEGA MENU (full-width) ---- */
.mega-wrap {
    display: none;
    position: fixed;
    top: var(--hh);
    left: 0;
    width: 100%;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    z-index: 9997;
    animation: fadeD .18s ease;
}

.nav-item.mega-li:hover .mega-wrap {
    display: block
}

.mega-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 2.2fr;
    gap: 0;
    max-width: 1800px;
    margin: 0 auto;
    height: 380px;
    padding: 24px 28px;
}

/* Mega — services col */
.mega-services {
    padding: 16px 32px 16px 8px;
    border-right: 1px solid #d8d8d8;
}

.mega-col-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px
}

.mega-services ul,
.mega-partners ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.mega-services ul li a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
    text-decoration: none;
    transition: .2s;
}

.mega-services ul li a:hover {
    color: var(--red)
}

/* Mega — partners col */
.mega-partners {
    padding: 16px 32px;
    border-right: 1px solid #d8d8d8
}

.mega-partners ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
    text-decoration: none;
    transition: .2s;
}

.mega-partners ul li a i {
    font-size: 11px;
    color: #bbb;
    transition: .2s
}

.mega-partners ul li a:hover {
    color: var(--red)
}

.mega-partners ul li a:hover i {
    color: var(--red)
}

.mega-all-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    transition: gap .15s;
}

.mega-all-link::before {
    content: "— ";
    font-weight: 400
}

/* Mega — promo col */
.mega-promo {
    position: relative;
    overflow: hidden;
    margin-left: 32px;
    background: #ccc;
    max-height: 320px;
}

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

.mega-promo-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .1) 100%);
}

.mega-promo-body {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 440px;
}

.mega-promo-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.mega-promo-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.mega-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: .2s;
}

.mega-promo-btn::before {
    content: "— ";
    font-weight: 400
}

.mega-promo-btn:hover {
    background: var(--red-hover);
    color: #fff
}

/* ---- HEADER RIGHT (search + cta) ---- */
.hdr-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.hdr-search {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .2);
    text-decoration: none;
    transition: .25s;
}

.hdr-search:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

#hdr.scrolled .hdr-search {
    color: #444;
    border-color: #ddd
}

#hdr.scrolled .hdr-search:hover {
    background: #f5f5f5;
    color: var(--red)
}

.hdr-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: .2s;
}

.hdr-cta:hover {
    background: var(--red-hover);
    color: #fff
}

@keyframes fadeD {
    from {
        opacity: 0;
        transform: translateY(-5px)
    }

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

/* ================================================================
   MOBILE NAV  (<1200px)
   Full-width panel drops BELOW fixed header — Eternalnex style
================================================================ */

/* Default hide accordion lists */
.mob-sub,
.mob-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

@media(max-width:1199px) {

    /* ── Collapse panel: fixed, full-width, drops below header ── */
    .navbar-collapse {
        position: fixed;
        top: var(--hh);
        /* flush below the fixed header  */
        left: 0;
        width: 100%;
        max-height: calc(100vh - var(--hh));
        overflow-y: auto;
        background: #0e1726;
        /* dark navy — same as Eternalnex  */
        z-index: 9990;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 0 0 20px;
        /* Bootstrap adds/removes .show — let it animate naturally */
    }

    /* White bg when header is scrolled (on white header) */
    #hdr.scrolled .navbar-collapse {
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    }

    /* Keep the hdr-inner row clean — no stacking */
    .hdr-inner {
        flex-wrap: nowrap;
    }

    /* ── Nav list: full-width stacked ── */
    .desk-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .desk-nav>.nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    #hdr.scrolled .desk-nav>.nav-item {
        border-bottom-color: #eee;
    }

    .desk-nav>.nav-item>.nav-link {
        height: auto !important;
        padding: 15px 22px !important;
        color: rgba(255, 255, 255, .9) !important;
        border-bottom: none !important;
        /* remove desktop underline */
        font-size: 14px;
        font-weight: 600;
        justify-content: space-between;
    }

    #hdr.scrolled .desk-nav>.nav-item>.nav-link {
        color: #222 !important;
    }

    /* ── hdr-actions row inside collapse ── */
    .hdr-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 14px 22px 0;
        margin-left: 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    #hdr.scrolled .hdr-actions {
        border-top-color: #eee;
    }

    /* ── Hide desktop-only items ── */
    .hdr-divider,
    .mega-wrap,
    .desktop-drop {
        display: none !important;
    }

    /* ── Mobile accordion sub-menu ── */
    .mob-sub.open,
    .mob-expertise-list.open {
        display: block;
    }

    .mob-sub li a,
    .mob-expertise-list li a {
        display: block;
        padding: 11px 36px;
        font-size: 13.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, .65);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, .04);
        transition: color .15s;
    }

    .mob-sub li a:hover,
    .mob-expertise-list li a:hover {
        color: #fff;
    }

    #hdr.scrolled .mob-sub li a,
    #hdr.scrolled .mob-expertise-list li a {
        color: #555;
        border-bottom-color: #eee;
    }

    #hdr.scrolled .mob-sub li a:hover,
    #hdr.scrolled .mob-expertise-list li a:hover {
        color: var(--red);
    }

    /* Sub-menu bg slightly darker than parent */
    .mob-sub,
    .mob-expertise-list {
        background: rgba(0, 0, 0, .3);
    }

    #hdr.scrolled .mob-sub,
    #hdr.scrolled .mob-expertise-list {
        background: #f5f6fa;
    }

    /* ── Chevron rotation when sub is open ── */
    .nav-link .chevron {
        transition: transform .25s;
        flex-shrink: 0;
    }

    .nav-item.sub-open>.nav-link .chevron {
        transform: rotate(180deg) !important;
    }

    /* ── is-active red on mobile too ── */
    .desk-nav>.nav-item.is-active>.nav-link {
        color: var(--red) !important;
    }
}

@media(min-width:1200px) {

    .mob-sub,
    .mob-expertise-list {
        display: none !important;
    }
}

/* ================================================================
   HERO — 100vh, transparent header overlaps
================================================================ */
.hero-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-wrap .swiper,
.hero-wrap .swiper-wrapper,
.hero-wrap .swiper-slide {
    width: 100%;
    height: 100%
}

.hero-wrap .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    transform: scale(1.10);
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1)
}

.slide-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 22, .35) 0%, rgba(5, 8, 22, .55) 50%, rgba(5, 8, 22, .78) 100%);
}

.slide-body {
    position: relative;
    z-index: 2;
    padding: 0 0 0 220px;
    max-width: 1200px;
}

.slide-tag {
    display: block;
    margin-bottom: 14px
}

.slide-tag span {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}
/*** using new style below for Syne font from Merriweather*
.slide-h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
*/
.slide-h1 {
    font-family: var(--enx-font-heading);
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.4px;
    color: #fff;
}

.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.s1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 26px;
    text-decoration: none;
    border: 2px solid var(--red);
    border-radius: 50px;
    transition: background .2s;
}

.s1::before {
    content: '—';
    font-weight: 400;
    margin-right: 2px
}

.s1:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    color: #fff
}

.s2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 26px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50px;
    transition: border-color .2s, background .2s;
}

.s2::before {
    content: '—';
    font-weight: 400;
    margin-right: 2px
}

.s2:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff
}

/* Hero bottom tabs */
.h-ctrl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.h-tabs {
    display: flex;
    flex: 1
}

.htab {
    flex: 1;
    padding: 16px 20px;
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.htab-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--red);
}

.htab.active .htab-bar {
    width: 100%
}

.htab-l {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s;
}

.htab.active .htab-l,
.htab:hover .htab-l {
    color: #fff
}

.h-arrows {
    display: flex
}

.harr {
    width: 54px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}

.harr:hover {
    color: #fff
}

/* ================================================================
   SERVICES  — Bootstrap col-2 (6 per row) (maaz to check and review if needed to keep or delete as I added new CSS below)
================================================================ */
.svc-sec {
    padding: 80px 0 70px;
    background: #fff
}

.svc-head {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.scard {
    position: relative;
    height: 190px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.scard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.scard:hover img {
    transform: scale(1.1)
}

.scard-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 40, .88) 0%, rgba(13, 17, 40, .2) 55%, transparent 100%);
    transition: background .35s;
}

.scard:hover .scard-ov {
    background: linear-gradient(to top, rgba(226, 0, 26, .9) 0%, rgba(13, 17, 40, .4) 100%);
}

.scard-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 13px 15px;
}

.scard-label h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.allsvc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--red);
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 50px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.allsvc-btn::before {
    content: '—';
    font-weight: 400;
    margin-right: 2px
}

.allsvc-btn:hover {
    background: var(--red);
    color: #fff
}

/* ================================================================
   SHARED SECTION STYLES
================================================================ */
.eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.sec-h2 {
    font-size: 44.8px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.sec-p {
    font-size: 15px;
    color: #666;
    font-weight: 400;
    line-height: 1.8
}

/* adding this based on new services section style on home page */

/* ================================================================
   SERVICES SECTION - REFACTORED
================================================================ */

/* ================================================================
   SERVICES V6 - REFINED GROUPED STACKS
================================================================ */
.svc6-sec {
    padding: 90px 0 85px;
    background: #fff;
}

.svc6-top {
    max-width: 980px;
    margin-bottom: 34px;
}

.svc6-head {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #111;
}

.svc6-sub {
    margin: 0;
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #666;
}

/* 5 equal columns */
.svc6-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
}

.svc6-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* fixed header area so card stacks start aligned */
.svc6-headbox {
  min-height: 170px;
  display: flex;
  flex-direction: column;
}

.svc6-headbox h3 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.15em * 2);
}

.svc6-headbox p {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 3);
}

/* animated underline */
.svc6-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #f31273;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s ease;
    opacity: 0.95;
}

/* internal stack tighter than column gap */
.svc6-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc6-card {
    position: relative;
    display: block;
    aspect-ratio: 1.28 / 1;
    min-height: 132px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
}

.svc6-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 2s ease, filter 0.5s ease;
}

.svc6-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .76) 0%,
            rgba(0, 0, 0, .24) 50%,
            rgba(0, 0, 0, .05) 100%);
    z-index: 1;
}

/* pink hue fade instead of stroke glow */
.svc6-tint {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(243, 18, 115, 0.00) 0%,
            rgba(243, 18, 115, 0.10) 35%,
            rgba(243, 18, 115, 0.22) 70%,
            rgba(243, 18, 115, 0.32) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
    pointer-events: none;
}

.svc6-label {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
}

.svc6-label h4 {
    margin: 0;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Hover behavior */
.svc6-card:hover img {
    transform: scale(1.12);
    filter: saturate(1.12) contrast(1.06) brightness(0.92);
}

.svc6-card:hover .svc6-tint {
    opacity: 1;
}

/* underline parent heading, no pink text */
.svc6-group:has(.svc6-card:hover) .svc6-underline {
    transform: scaleX(1);
}

/* Button */
.svc6-actions {
    margin-top: 28px;
}

.svc6-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    min-width: 170px;
    border: 2px solid #f31273;
    border-radius: 999px;
    color: #f31273;
    text-decoration: none;
    font-weight: 600;
    transition: .25s ease;
}

.svc6-btn:hover {
    background: #f31273;
    color: #fff;
}

/* Tablet */
@media (max-width: 1199px) {
    .svc6-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 32px;
        column-gap: 26px;
    }

    .svc6-headbox {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .svc6-sec {
        padding: 65px 0;
    }

    .svc6-top {
        margin-bottom: 26px;
    }

    .svc6-grid {
        grid-template-columns: 1fr;
        row-gap: 26px;
    }

    .svc6-headbox {
        min-height: auto;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .svc6-headbox h3 {
        font-size: 1.35rem;
    }

    .svc6-headbox p {
        font-size: 0.92rem;
    }

    /* compact mobile tile layout inside each category */
    .svc6-stack {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .svc6-card {
        aspect-ratio: 1 / 1.02;
        min-height: 140px;
    }

    .svc6-label {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .svc6-label h4 {
        font-size: 0.88rem;
        line-height: 1.15;
    }
}

/* ================================================================
   SERVICES V6 - REFINED GROUPED STACKS
================================================================ */

.advanced-capabilities {
    margin-top: 80px;
}

.adv-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.adv-scroll::-webkit-scrollbar {
    height: 6px;
}

.adv-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.adv-card {
    flex: 0 0 320px;
    /* fixed width */
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: #000;
}

.adv-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv-card h3 {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.adv-card:hover {
    transform: translateY(-6px);
    transition: 0.4s ease;
}

.adv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(128, 0, 255, 0.25),
            transparent);
}

.svc6-adv-sec {
    padding: 80px 0 85px;
    background: #f7f8fc;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.svc6-adv-top {
    max-width: 760px;
    margin-bottom: 28px;
}

.svc6-adv-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
}

.svc6-adv-grid .svc6-card {
    flex: 0 0 300px;
}

/* =================================================================
   NEW TEXT BASED SERVICES ON HOMEPAGE - THESE HAVE REPLACED THE COLUMNS.PHOTO BASED SERVICE CARDS
========================================================= */

.svc6-top{
  max-width:980px;
  margin-bottom:34px;
}

.svc6-top .svc-head{
  max-width:1100px;
}

.svc6-top .svc6-sub{
  max-width:880px;
  color:#666;
  line-height:1.6;
}

.svc6-sec#services{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(243,18,115,0.05), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(130,80,255,0.04), transparent 24%),
    linear-gradient(180deg, #f7f7f9 0%, #f2f2f5 100%);
}

.svc6-sec#services::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size:40px 40px;
  opacity:.18;
  pointer-events:none;
}

.svc6-sec#services .container{
  position:relative;
  z-index:1;
}

.svc6-grid{
  align-items:stretch;
}

.svc6-group{
  display:flex;
  flex-direction:column;
  height:100%;
  background:rgba(255,255,255,0.55);
  border-radius:22px;
  padding:14px 14px 18px;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.04),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  transition:transform .22s ease, box-shadow .22s ease;
}

.svc6-group:hover{
  transform:translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.06),
    inset 0 0 0 1px rgba(243,18,115,0.06);
}

.svc6-cap-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
  margin-bottom:18px;
}

.svc6-cap-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(0,0,0,0.12);
}

.svc6-cap-card .svc6-overlay{
  background:linear-gradient(180deg, rgba(10,10,16,0.02) 0%, rgba(9,9,16,0.52) 100%);
}

.svc6-cap-card .svc6-tint{
  background:linear-gradient(135deg, rgba(243,18,115,0.06) 0%, rgba(120,80,255,0.07) 100%);
  mix-blend-mode:screen;
}

.svc6-cap-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.svc6-cap-card .svc6-label h4{
  margin:0;
  color:#fff;
  font-size:20px;
  line-height:1.08;
  max-width:90%;
}

.svc6-listwrap{
  display:flex;
  flex-direction:column;
  flex:1;
  gap:20px;
  min-height:0;
  padding:10px;
  border-radius:18px;
  background:rgba(255,255,255,0.28);
}

.svc6-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  flex:1;
  gap:8px;
  min-height:0;
}

.svc6-list li{
  margin:0;
  padding:0;
}

.svc6-list a{
  position:relative;
  display:flex;
  align-items:center;
  min-height:52px;
  padding:11px 14px 11px 16px;
  text-decoration:none;
  color:#232323;
  font-size:15px;
  line-height:1.35;
  border-radius:12px;
  background:rgba(255,255,255,0.70);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,0.04);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}

.svc6-list a::before{
  content:"";
  position:absolute;
  top:10px;
  bottom:10px;
  left:0;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg,#f31273 0%, #ff56a9 100%);
}

.svc6-list a:hover{
  color:#111;
  background:rgba(255,255,255,0.92);
  box-shadow:
    0 8px 18px rgba(0,0,0,0.05),
    inset 0 0 0 1px rgba(243,18,115,0.10);
  transform:translateX(2px);
}

.svc6-pill-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 30px;
  border-radius:999px;
  background:#f31273;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  line-height:1;
  width:fit-content;
  overflow:hidden;
  isolation:isolate;
  transition:transform .25s ease, box-shadow .25s ease, color .25s ease;
  box-shadow:0 8px 20px rgba(243,18,115,.18);
  margin-top:auto;
  align-self:flex-start;
}

.svc6-pill-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:#111;
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .35s ease;
  z-index:-1;
}

.svc6-pill-btn:hover{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}

.svc6-pill-btn:hover::before{
  transform:scaleX(1);
}

/* =================================================================
   NEW TEXT BASED ***ADVANCED*** SERVICES ON HOMEPAGE - THESE HAVE REPLACED THE COLUMNS.PHOTO BASED SERVICE CARDS PREVISOULY USED
========================================================= */

/* Advanced section shell */
.svc6-adv-sec{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 70, 160, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(140, 60, 255, 0.20), transparent 30%),
    linear-gradient(135deg, #17081f 0%, #251038 35%, #3f155d 68%, #5c1d77 100%);
}

.svc6-adv-sec::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:36px 36px;
  opacity:.20;
  pointer-events:none;
}

.svc6-adv-sec .container{
  position:relative;
  z-index:1;
}

.svc6-adv-top .svc-head,
.svc6-adv-top .svc6-sub{
  color:#fff;
}

.svc6-adv-top .svc6-sub{
  max-width:980px;
  color:rgba(255,255,255,0.78);
}

/* 3-column advanced grid */
.svc6-adv-grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:32px;
  align-items:stretch;
}

/* Advanced groups */
.svc6-adv-group{
  display:flex;
  flex-direction:column;
  height:100%;
}

/* Advanced image cards */
.svc6-adv-card{
  margin-bottom:22px;
  position:relative;
  overflow:hidden;
}

.svc6-adv-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.svc6-adv-card .svc6-overlay{
  background:linear-gradient(180deg, rgba(10,10,16,0.08) 0%, rgba(9,9,16,0.74) 100%);
}

.svc6-adv-card .svc6-tint{
  background:linear-gradient(135deg, rgba(145, 55, 255, 0.18) 0%, rgba(255, 20, 130, 0.16) 100%);
  mix-blend-mode:screen;
}

.svc6-adv-card .svc6-label h4{
  color:#fff;
  font-size:20px;
  line-height:1.06;
  margin:0;
  max-width: 90%;
}

/* Advanced list area */
.svc6-adv-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.svc6-adv-listwrap{
  display:flex;
  flex-direction:column;
  flex:1;
  gap:24px;
}

.svc6-adv-list li{
  margin:0;
  padding:0;
}

.svc6-adv-list a{
  position:relative;
  display:flex;
  align-items:center;
  min-height:54px;
  padding:12px 16px 12px 18px;
  text-decoration:none;
  color:#34223f;
  font-size:16px;
  font-weight:500;
  line-height:1.35;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,0.80) 0%, rgba(246,237,255,0.78) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    0 4px 10px rgba(0,0,0,0.06);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}

.svc6-adv-list a::before{
  content:"";
  width:4px;
  min-width:4px;
  align-self:stretch;
  border-radius:999px;
  margin-right:14px;
  background:linear-gradient(180deg, rgba(255,95,180,0.95) 0%, rgba(181,108,255,0.95) 100%);
  box-shadow:0 0 10px rgba(255,95,180,0.18);
}

.svc6-adv-list a:hover{
  color:#24172f;
  background:rgba(255,255,255,0.90);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.14);
  transform:translateX(3px);
}

/* Shared advanced button style with pink fill hover */
.svc6-pill-btn-light,
.svc6-adv-contact{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 30px;
  border-radius:999px;
  width:fit-content;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  line-height:1;
  color:#fff;
  background:linear-gradient(135deg, #3c1558 0%, #5b1f7a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.10),
    0 10px 24px rgba(0,0,0,0.22);
  overflow:hidden;
  isolation:isolate;
  transition:transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.svc6-pill-btn-light{
  margin-top:8px;
}

.svc6-pill-btn-light::before,
.svc6-adv-contact::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:120%;
  height:100%;
  background:linear-gradient(90deg, #f31273 0%, #ff4aa2 70%, rgba(255,74,162,0.18) 100%);
  transform:translateX(-110%);
  transition:transform .42s ease;
  z-index:-1;
}

.svc6-pill-btn-light:hover,
.svc6-adv-contact:hover{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 14px 30px rgba(0,0,0,0.26);
}

.svc6-pill-btn-light:hover::before,
.svc6-adv-contact:hover::before{
  transform:translateX(0);
}

/* Bottom CTA */
.svc6-adv-cta{
  margin-top:56px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.svc6-adv-cta p{
  margin:0;
  color:rgba(255,255,255,0.78);
  font-size:17px;
  line-height:1.5;
}

/* Responsive */
@media (max-width: 1200px){
  .svc6-adv-grid-3{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .svc6-adv-grid-3{
    grid-template-columns:1fr;
  }

  .svc6-adv-card .svc6-label h4{
    font-size:24px;
  }

  .svc6-adv-cta{
    align-items:flex-start;
  }
}

/* =========================
   Advanced section. Mobile fix.
   ========================= */

@media (max-width: 767px){

  .svc6-adv-sec{
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .svc6-adv-top .svc-head{
    font-size: 38px;
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .svc6-adv-top .svc6-sub{
    font-size: 18px;
    line-height: 1.5;
    max-width: 100%;
  }

  /* Force one clean column */
  .svc6-adv-grid,
  .svc6-adv-grid-3{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .svc6-adv-group{
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .svc6-adv-card{
    margin-bottom: 18px;
  }

  .svc6-adv-card img{
    aspect-ratio: 1.12 / 1;
  }

  .svc6-adv-card .svc6-label{
    padding: 18px;
  }

  .svc6-adv-card .svc6-label h4{
    font-size: 24px !important;
    line-height: 1.04;
    max-width: 90%;
  }

  .svc6-adv-listwrap{
    gap: 18px;
  }

  .svc6-adv-list{
    gap: 10px;
  }

  .svc6-adv-list a{
    min-height: auto;
    padding: 14px 14px 14px 16px;
    font-size: 15px;
    line-height: 1.35;
    border-radius: 12px;
  }

  .svc6-adv-list a::before{
    width: 4px;
    min-width: 4px;
    margin-right: 12px;
  }

  /* Buttons should become full-width and not float awkwardly */
  .svc6-pill-btn-light,
  .svc6-adv-contact{
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    line-height: 1.15;
    margin-top: 4px;
  }

  .svc6-adv-cta{
    margin-top: 40px;
    padding-top: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .svc6-adv-cta p{
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ================================================================
   CSS for anchored scrolling and highlight of service cards, when navigating from home page services
================================================================ */

.service-card{
  scroll-margin-top: 120px;
  position: relative;
  transition: box-shadow .3s ease;
  will-change: transform;
  overflow: visible;
}

.service-arrived{
  animation: enxServiceShake .7s cubic-bezier(.36,.07,.19,.97) 1;
}

.service-arrived::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: transparent;
  animation: enxServiceEdgePulse .75s ease-out 1;
}

@keyframes enxServiceShake{
  0%{
    transform: translateX(0);
  }
  15%{
    transform: translateX(-7px);
  }
  30%{
    transform: translateX(6px);
  }
  45%{
    transform: translateX(-4px);
  }
  60%{
    transform: translateX(3px);
  }
  75%{
    transform: translateX(-1px);
  }
  100%{
    transform: translateX(0);
  }
}

@keyframes enxServiceEdgePulse{
  0%{
    opacity: 0;
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(243,18,115,0),
      0 0 0 0 rgba(243,18,115,0),
      0 0 0 0 rgba(243,18,115,0);
  }
  32%{
    opacity: 1;
    transform: scale(1.015);
    box-shadow:
      0 0 0 2px rgba(243,18,115,0.32),
      0 0 24px rgba(243,18,115,0.30),
      0 0 54px rgba(243,18,115,0.18);
  }
  100%{
    opacity: 0;
    transform: scale(1.045);
    box-shadow:
      0 0 0 2px rgba(243,18,115,0),
      0 0 34px rgba(243,18,115,0),
      0 0 72px rgba(243,18,115,0);
  }
}


/* ================================================================
   EXPERTISE TABS
================================================================ */
.exp-sec {
    padding: 80px 0;
    background: var(--light)
}

.exp-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
}

.etab {
    padding: 12px 20px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
}

.etab.active,
.etab:hover {
    color: var(--red);
    border-bottom-color: var(--red)
}

.epanel {
    display: none
}

.epanel.active {
    display: block
}

.epanel-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

.epanel h3 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.epanel p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px
}

.epanel-list {
    list-style: none;
    margin-bottom: 26px;
    padding: 0
}

.epanel-list li {
    font-size: 13.5px;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.epanel-list li i {
    color: var(--red)
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 12px 26px;
    text-decoration: none;
    border: 2px solid var(--red);
    transition: background .2s, color .2s;
}

.btn-red:hover {
    background: #fff;
    color: var(--red)
}

/* ================================================================
   NEW PARTNERS / CLIENT LOGO Section in Motion
================================================================ */

.enx-client-logo-section{
  position:relative;
  padding:84px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(243,18,115,0.04), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(130,80,255,0.03), transparent 24%),
    linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
}

.enx-client-logo-container{
  position:relative;
  z-index:1;
}

.enx-client-logo-head{
  max-width:980px;
  margin:0 auto 40px;
  text-align:center;
}

.enx-client-logo-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#f31273;
}

.enx-client-logo-head h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.06;
  color:#111;
}

.enx-client-logo-head p{
  margin:0 auto;
  max-width:840px;
  font-size:18px;
  line-height:1.6;
  color:#666;
}

.enx-client-wall{
  display:flex;
  flex-direction:column;
  gap:18px;
  width:100%;
  position:relative;
}

.enx-client-row{
  position:relative;
  width:100%;
  overflow:hidden;
  transform:translateZ(0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}

.enx-client-track{
  display:flex;
  align-items:center;
  gap:18px;
  width:max-content;
  will-change:transform;
  animation-timing-function:linear;
  animation-iteration-count:infinite;
  animation-fill-mode:both;
}

.enx-client-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateZ(0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}

.enx-client-logo img{
  display:block;
  width:auto;
  height:auto;
  max-height:60px;
  object-fit:contain;
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
  opacity:.98;
  transform:translateZ(0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}

.enx-client-row.row-left .enx-client-track{
  animation-name:enxClientMarqueeLeft;
  animation-direction:normal;
}

.enx-client-row.row-right .enx-client-track{
  animation-name:enxClientMarqueeRight;
  animation-direction:normal;
}

.enx-client-row.slow .enx-client-track{
  animation-duration:62s;
}

.enx-client-row.medium .enx-client-track{
  animation-duration:52s;
}

.enx-client-row.fast .enx-client-track{
  animation-duration:44s;
}

.enx-client-wall .enx-client-row:nth-child(1) .enx-client-track{ animation-delay:-5s; }
.enx-client-wall .enx-client-row:nth-child(2) .enx-client-track{ animation-delay:-12s; }
.enx-client-wall .enx-client-row:nth-child(3) .enx-client-track{ animation-delay:-8s; }
.enx-client-wall .enx-client-row:nth-child(4) .enx-client-track{ animation-delay:-18s; }
.enx-client-wall .enx-client-row:nth-child(5) .enx-client-track{ animation-delay:-10s; }
.enx-client-wall .enx-client-row:nth-child(6) .enx-client-track{ animation-delay:-22s; }
.enx-client-wall .enx-client-row:nth-child(7) .enx-client-track{ animation-delay:-14s; }
.enx-client-wall .enx-client-row:nth-child(8) .enx-client-track{ animation-delay:-26s; }
.enx-client-wall .enx-client-row:nth-child(9) .enx-client-track{ animation-delay:-16s; }
.enx-client-wall .enx-client-row:nth-child(10) .enx-client-track{ animation-delay:-30s; }

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

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

.enx-client-row::before,
.enx-client-row::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:28px;
  z-index:2;
  pointer-events:none;
}

.enx-client-row::before{
  left:0;
  background:linear-gradient(to right, #fafafa 0%, rgba(250,250,250,0) 100%);
}

.enx-client-row::after{
  right:0;
  background:linear-gradient(to left, #fafafa 0%, rgba(250,250,250,0) 100%);
}

/* Tablet: animated fallback */
@media (max-width: 1024px){
  .enx-client-logo-section{
    padding:56px 0;
  }

  .enx-client-logo-head{
    margin-bottom:28px;
  }

  .enx-client-logo-head h2{
    font-size:32px;
  }

  .enx-client-logo-head p{
    font-size:16px;
  }

  .enx-client-wall{
    gap:12px;
  }

  .enx-client-row{
    overflow:hidden;
    transform:translateZ(0);
    -webkit-transform:translateZ(0);
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
  }

  .enx-client-track{
    gap:12px;
    width:max-content;
    animation-timing-function:ease-in-out !important;
    animation-iteration-count:infinite !important;
    animation-direction:alternate !important;
    animation-fill-mode:both !important;
    will-change:transform;
    transform:translate3d(0,0,0);
    -webkit-transform:translate3d(0,0,0);
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
  }

  /* IMPORTANT: kill desktop stagger/delay on tablet */
  .enx-client-wall .enx-client-row .enx-client-track{
    animation-delay:0s !important;
  }

  .enx-client-logo{
    transform:translateZ(0);
    -webkit-transform:translateZ(0);
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
  }

  .enx-client-logo-dup{
    display:none;
  }

  .enx-client-logo img{
    max-height:72px;
    transform:translateZ(0);
    -webkit-transform:translateZ(0);
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
  }

  .enx-client-row.row-left .enx-client-track{
    animation-name:enxClientDriftLeft !important;
    animation-duration:10s !important;
  }

  .enx-client-row.row-right .enx-client-track{
    animation-name:enxClientDriftRight !important;
    animation-duration:8s !important;
  }

  .enx-client-row.fast .enx-client-track{
    animation-duration:6.5s !important;
  }

  .enx-client-row::before,
  .enx-client-row::after{
    width:18px;
  }
}

/* Mobile: same animated fallback, smaller */
@media (max-width: 767px){
  .enx-client-logo-section{
    padding:42px 0;
  }

  .enx-client-logo-head{
    margin-bottom:24px;
  }

  .enx-client-logo-head h2{
    font-size:28px;
  }

  .enx-client-logo-head p{
    font-size:15px;
  }

  .enx-client-wall{
    gap:10px;
  }

  .enx-client-track{
    gap:10px;
    animation-direction:alternate !important;
    animation-fill-mode:both !important;
  }

  /* IMPORTANT: no stagger on mobile either */
  .enx-client-wall .enx-client-row .enx-client-track{
    animation-delay:0s !important;
  }

  .enx-client-logo img{
    max-height:44px;
  }

  .enx-client-row.row-left .enx-client-track{
    animation-duration:8s !important;
  }

  .enx-client-row.row-right .enx-client-track{
    animation-duration:6.5s !important;
  }

  .enx-client-row.fast .enx-client-track{
    animation-duration:5.5s !important;
  }

  .enx-client-row::before,
  .enx-client-row::after{
    width:14px;
  }
}

@keyframes enxClientDriftLeft{
  0%{ transform:translate3d(0,0,0); }
  100%{ transform:translate3d(-22%,0,0); }
}

@keyframes enxClientDriftRight{
  0%{ transform:translate3d(-16%,0,0); }
  100%{ transform:translate3d(0,0,0); }
}

/* ================================================================
   INSIGHTS
================================================================ */
.ins-sec {
    padding: 80px 0 96px;
    background: var(--light)
}

.ins-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}

.ins-top h2 {
    font-size: 44.8px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1;
}

.ins-all {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.ins-all i {
    color: var(--red)
}

.ins-all:hover {
    color: var(--red)
}

.ins-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 24px 0 32px
}

.ifbtn {
    padding: 8px 18px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid #ccc;
    background: #fff;
    cursor: pointer;
    color: #555;
    transition: all .2s;
}

.ifbtn.active,
.ifbtn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.icard {
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%
}

.i-thumb {
    position: relative;
    height: 215px;
    overflow: hidden;
    flex-shrink: 0
}

.i-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block
}

.icard:hover .i-thumb img {
    transform: scale(1.05)
}

.i-cat {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
}

.i-body {
    padding: 22px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.i-date {
    font-size: 11.5px;
    color: #999;
    letter-spacing: .5px;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase
}

.i-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
    transition: color .2s;
    letter-spacing: -.3px;
}

.i-title:hover {
    color: var(--red)
}

.i-exc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px
}

.i-more {
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.i-more:hover {
    gap: 10px
}

/* ================================================================
   CTA BAND
================================================================ */
.cta-sec {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(243, 18, 115, 0.18), transparent 28%),
        radial-gradient(circle at 18% 82%, rgba(123, 47, 247, 0.14), transparent 26%),
        linear-gradient(135deg, #080c1f 0%, #0d1128 52%, #140b22 100%);
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(60deg, rgba(243, 18, 115, 0.05) 1px, transparent 1px);
    background-size: 110px 110px;
    background-position: center;
    opacity: 0.32;
    pointer-events: none;
    z-index: 0;
}

.cta-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            105deg,
            transparent 0%,
            transparent 38%,
            rgba(255, 255, 255, 0.08) 48%,
            transparent 58%,
            transparent 100%
        );
    transform: translateX(-35%);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.cta-sec .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-sec {
        background-attachment: scroll, scroll, scroll;
    }
}

@keyframes enxDiamondDrift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 96px 96px;
    }
}

.cta-sec::before {
    animation: enxDiamondDrift 24s linear infinite;
}

.cta-sec h2 {
    font-family: var(--enx-font-heading);
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.4px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.cta-sec h2 em {
    color: var(--red);
    font-style: normal;
}

.cta-sec p {
    font-family: var(--enx-font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cta-sec {
        background-attachment: scroll;
    }
}

/* ================================================================
   FOOTER  — Eternalnex style
================================================================ */
footer {
    background: var(--navy)
}

.footer-box {
    padding: 64px 0 0
}

.footer-brand img {
    max-height: 52px;
    width: auto;
    margin-bottom: 20px;
    display: block
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--light-color);
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}

.footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff
}

.footer-title {
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

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

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    font-size: 13.5px;
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.footer-links a i {
    font-size: 11px;
    color: rvar(--light-color);
    transition: color .2s
}

.footer-links a:hover {
    color: rgba(255, 255, 255, .9)
}

.footer-links a:hover i {
    color: var(--pink)
}

/* Newsletter */
.footer-newsletter {
    margin-top: 2px
}

.footer-newsletter input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    margin-bottom: 10px;
    border-radius: 2px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, .25)
}

.footer-newsletter button , .footer-newsletter .wpcf7-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: var(--pink);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s;
}
.footer-newsletter p {
        margin-bottom: 0 !important
}
.footer-newsletter button:hover {
    background: #d4008a
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: var(--navy2);
    padding: 18px 0;
}

.copyright {
    font-size: 13px;
    color: var(--light-color);
    margin: 0
}

.copyright a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600
}

.footer-policy {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-policy a {
    font-size: 13px;
    color: var(--light-color);
    text-decoration: none;
    transition: color .2s;
}

.footer-policy a:hover {
    color: rgba(255, 255, 255, .75)
}

/* Back to top */
#btt {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .3s, transform .3s;
}

#btt.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

/* ================================================================
   RESPONSIVE FIXES
================================================================ */
/* Service cards — responsive cols */
@media(max-width:1199px) {

    /* col-2 becomes col-4 (3 per row) on tablets */
    .svc-sec .col-2 {
        flex: 0 0 auto;
        width: 33.333%
    }
}

@media(max-width:767px) {

    /* col-2 becomes col-6 (2 per row) on mobile */
    .svc-sec .col-2 {
        flex: 0 0 auto;
        width: 50%
    }

    .svc-sec .col-2:last-child {
        width: 100%
    }

    /* Hero text size */
    .slide-h1 {
        font-size: 30px;
        letter-spacing: -1px
    }

    .slide-body {
        padding: 0 24px
    }

    .h-tabs {
        display: none
    }

    /* Expertise tabs scroll */
    .exp-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .exp-tabs::-webkit-scrollbar {
        display: none
    }

    /* Section headings */
    .svc-head {
        font-size: 26px
    }

    .sec-h2 {
        font-size: 30px
    }

    .ins-top h2 {
        font-size: 30px
    }

    /* Footer policy links */
    .footer-policy {
        justify-content: flex-start
    }

    /* CTA */
    .cta-sec h2 {
        font-size: 30px
    }
}

@media(max-width:575px) {
    .svc-head {
        font-size: 22px
    }
}

/* ================================================================
   AI/ML PAGE — page-specific styles only
================================================================ */
/* ---- HERO (same as homepage hero-wrap) ---- */
/* .hero-wrap, .slide-bg, .slide-ov, .slide-body, .h-ctrl  —  all inherited */
/* Breadcrumb row above hero title */
.pg-breadcrumb {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-breadcrumb a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s
}

.pg-breadcrumb a:hover {
    color: #fff
}

.pg-breadcrumb .sep {
    color: rgba(255, 255, 255, .25);
    font-size: 9px
}

.pg-breadcrumb .cur {
    color: rgba(255, 255, 255, .85)
}

/* ---- SECTION SHARED ---- */
.sec-label {
    font-family: var(--enx-theme-font-family);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.sec-title {
	font-family: var(--enx-font-heading);
	font-size: var(--enx-theme-heading-size);
    font-weight: var(--enx-theme-heading-weight);
    color: var(--enx-theme-heading-color);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.sec-title-white {
    font-family: var(--enx-font-heading);
    font-size: var(--enx-theme-heading-size);
    font-weight: var(--enx-theme-heading-weight);
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.sec-lead {
    font-family: var(--enx-font-heading);
    font-size: var(--enx-theme-body-size);
    font-weight: var(--enx-theme-body-weight);
    color: var(--enx-theme-text-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sec-body {
    font-family: var(--enx-theme-font-family);
    font-size: var(--enx-theme-body-size);
    font-weight: var(--enx-theme-body-weight);
    color: var(--enx-theme-text-color);
    line-height: 1.85;
}

/* ---- 1. LEVERAGE SECTION ---- */
.leverage-sec {
    padding: 80px 0;
    background: #fff
}

.leverage-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

/* ---- 2. AI IMPERATIVE ---- */
.imperative-sec {
    padding: 80px 0;
    background: var(--light)
}

.imp-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

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

.imp-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: #444;
    line-height: 1.65;
}

.imp-list li:last-child {
    border-bottom: none
}

.imp-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 7px;
}

/* ---- 3. EMBRACING GENAI ---- */
.genai-sec {
    padding: 80px 0;
    background: #fff
}

.genai-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    height: 100%;
    transition: border-color .25s, box-shadow .25s;
}

.genai-card:hover {
    border-color: var(--red);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06)
}

.genai-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(226, 0, 26, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--red);
    margin-bottom: 16px;
}

.genai-card h5 {
    font-size: 14.5px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.genai-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0
}

/* Right quote card */
.quote-card {
    background: var(--red);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-card blockquote {
    font-size: 15px;
    color: #fff;
    line-height: 1.75;
    font-weight: 500;
    font-style: italic;
    margin: 0 0 24px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.quote-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-author-info .name {
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.quote-author-info .role {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .7)
}

/* ---- 4. GROUNDWORK (teal bg) ---- */
.groundwork-sec {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5f3 0%, #d4ede8 100%);
}

.groundwork-sec .sec-title {
    color: #1a3a35
}

.gw-card {
    background: #fff;
    padding: 28px 22px;
    border-bottom: 3px solid transparent;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    height: 100%;
}

.gw-card:hover {
    border-bottom-color: var(--red);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.gw-icon {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 16px;
}

.gw-card h5 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark)
}

.gw-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0
}

/* ---- 5. OUR AI CONSULTING SERVICES (dark gradient) ---- */
.aisvc-sec {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0533 0%, #3b1060 40%, #6b1a8a 70%, #c2185b 100%);
    position: relative;
    overflow: hidden;
}

.aisvc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1636953056323-9c09fdd74fa6?w=1920&q=60') center/cover no-repeat;
    opacity: .18;
}

.aisvc-sec .sec-label {
    color: rgba(255, 255, 255, .6)
}

.aisvc-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 44px
}

.aisvc-card {
    background: #fff;
    padding: 32px 26px;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.aisvc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .15)
}

.aisvc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(226, 0, 26, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
    margin-bottom: 20px;
}

.aisvc-card h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark)
}

.aisvc-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px
}

.aisvc-card-link {
    font-size: 12px;
    font-weight: 800;
    color: var(--red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.aisvc-card-link:hover {
    gap: 10px
}

/* ---- 6. WHY PARTNER ---- */
.why-sec {
    padding: 80px 0;
    background: #fff
}

.why-stat-box {
    padding: 24px;
    text-align: center;
}

.why-stat-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1;
}

.why-stat-num em {
    color: var(--red);
    font-style: normal
}

.why-stat-lbl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-top: 6px
}

.why-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px
}

.why-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.why-checks li:last-child {
    border-bottom: none
}

.why-checks li i {
    color: var(--red);
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px
}

/* ---- 7. CASE STUDY ---- */
.case-sec {
    padding: 80px 0;
    background: var(--light)
}

.case-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block
}

.case-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-logo span {
    color: var(--red)
}

.case-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px
}

/* ---- 8. CLIENTS SLIDER ---- */
.clients-sec {
    padding: 80px 0;
    background: #fff
}

.client-slide-card {
    background: var(--light);
    padding: 36px 32px;
    height: 100%;
}

.client-slide-card blockquote {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.client-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark)
}

.client-role {
    font-size: 12px;
    color: #888
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    margin-top: 32px;
}

.client-logos span {
    font-size: 14px;
    font-weight: 800;
    color: #999;
    letter-spacing: .5px;
    filter: grayscale(1);
    opacity: .5;
    transition: opacity .2s, filter .2s;
    cursor: pointer;
}

.client-logos span:hover {
    filter: grayscale(0);
    opacity: 1
}

/* ---- 9. EXPERTS ---- */
.experts-sec {
    padding: 80px 0;
    background: var(--light)
}

.expert-card {
    background: #fff;
    overflow: hidden
}

.expert-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block
}

.expert-body {
    padding: 20px
}

.expert-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px
}

.expert-role {
    font-size: 12px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 10px
}

.expert-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px
}

.expert-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px
}

.expert-link:hover {
    color: var(--red)
}

/* ---- 10. CONTACT FORM ---- */
.contact-sec {
    padding: 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: stretch;
}

.contact-left {
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1200&q=80') center/cover no-repeat;
    opacity: .12;
    z-index: -1;
}

.contact-right {
    background: #fff;
    padding: 56px 44px;
    display: flex;
    align-items: center
}

.contact-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-title em {
    color: var(--red);
    font-style: normal
}

.contact-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
    margin-bottom: 30px
}

.form-label-sm {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px
}

.form-ctrl {
    display: block;
    width: 100%;
    padding: 11px 14px;
    font-size: 13.5px;
    border: 1px solid var(--border);
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color .2s;
    border-radius: 0;
}

.form-ctrl:focus {
    border-color: var(--red)
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--red);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-submit:hover {
    background: var(--red-hover)
}

/* ---- NEWSLETTER STRIP ---- */
.newsletter-strip {
    background: var(--navy2);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.nl-strip-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0
}

.nl-strip-form {
    display: flex;
    gap: 0;
    max-width: 440px;
}

.nl-strip-input {
    flex: 1;
    padding: 11px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-right: none;
    color: #fff;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.nl-strip-input::placeholder {
    color: rgba(255, 255, 255, .28)
}

.nl-strip-btn {
    background: var(--red);
    border: none;
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.nl-strip-btn:hover {
    background: var(--red-hover)
}

/* ---- REUSE FROM HOMEPAGE ---- */
.s1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 26px;
    text-decoration: none;
    border: 2px solid var(--red);
    border-radius: 50px;
    transition: background .2s;
}

.s1::before {
    content: '—';
    font-weight: 400;
    margin-right: 2px
}

.s1:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    color: #fff
}

.s2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 26px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50px;
    transition: border-color .2s, background .2s;
}

.s2::before {
    content: '—';
    font-weight: 400;
    margin-right: 2px
}

.s2:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff
}

@media(max-width:991px) {
    .contact-left {
        padding: 60px 32px
    }

    .contact-right {
        padding: 40px 28px
    }

    .slide-body {
        padding: 0 24px
    }
}

@media(max-width:767px) {
    .slide-h1 {
        font-size: 30px;
        letter-spacing: -1px
    }

    .slide-body {
        padding: 0 24px
    }

    .h-tabs {
        display: none
    }
}

.enx-form {
    width: 100%;
}

.enx-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.enx-form .col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.enx-form .col.full {
    flex: 100%;
}

.enx-form label {
    font-family: var(--enx-theme-font-family);
    font-size: var(--enx-theme-body-size);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--enx-theme-heading-color);
}

.enx-form input,
.enx-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: var(--enx-theme-font-family);
    font-size: var(--enx-theme-body-size);
    color: var(--enx-theme-text-color);
    transition: all 0.3s ease;
}

.enx-form input:focus,
.enx-form textarea:focus {
    border-color: var(--enx-theme-button-bg);
    box-shadow: 0 0 0 2px rgba(226, 0, 26, 0.1);
    outline: none;
}

.enx-form textarea {
    min-height: 120px;
    resize: none;
}

.enx-form input[type="submit"] {
    background: var(--enx-theme-button-bg);
    color: var(--enx-theme-button-text-color);
    border: 1px solid var(--enx-theme-button-border-color);
    padding: 14px;
    font-family: var(--enx-theme-font-family);
    font-size: var(--enx-theme-body-size);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.enx-form input[type="submit"]:hover {
    background: var(--enx-theme-button-bg);
    opacity: .92;
}

.contact-right-widget {
    padding: 30px 54px 0 54px;
}

/* Mobile responsive */
@media(max-width: 768px) {
    .enx-form .row {
        flex-direction: column;
    }
}



/* envent page */

.events-list-page {
    padding: 140px 0 90px;
    background: var(--light);
}

.events-list-title {
    font-size: var(--enx-theme-heading-size);
    line-height: 1;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 34px;
}

.events-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.events-filter-left {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.event-filter-select {
    min-width: 300px;
    height: 60px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    background: #fff;
    padding: 0 22px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    outline: none;
    box-shadow: none;
}

.events-filter-search {
    min-width: 260px;
}

.event-search-input {
    width: 100%;
    height: 60px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    background: #fff;
    padding: 0 22px;
    font-size: 18px;
    color: #222;
    outline: none;
    box-shadow: none;
}

.events-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.event-row-card {
    display: grid;
    grid-template-columns: 220px 1fr 34%;
    align-items: stretch;
    border: 1px solid #e2e2e2;
    background: #fff;
}

.event-row-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    border-right: 1px solid #e2e2e2;
    text-align: center;
}

.event-row-day-name {
    font-size: 28px;
    line-height: 1.1;
    color: #2b2b2b;
    margin-bottom: 14px;
}

.event-row-day-num {
    font-size: 88px;
    line-height: .9;
    font-weight: 300;
    color: var(--red);
    margin-bottom: 12px;
}

.event-row-month {
    font-size: 22px;
    color: #555;
}

.event-row-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 36px;
}

.event-row-title {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--dark);
    margin: 0 0 24px;
    max-width: 760px;
}

.event-row-title a {
    color: inherit;
    text-decoration: none;
}

.event-row-mode {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    color: #444;
    margin-bottom: 28px;
}

.event-row-mode i {
    font-size: 26px;
    color: var(--red);
}

.event-row-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 48px;
    padding: 0 24px;
    border: 2px solid var(--red);
    border-radius: 999px;
    color: var(--red);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all .25s ease;
}

.event-row-btn:hover {
    background: var(--red);
    color: #fff;
}

.event-row-image a,
.event-row-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.event-row-image img {
    object-fit: cover;
}

.no-events-found {
    padding: 60px 0;
}

.events-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.events-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.events-pagination a,
.events-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 6px;
    background: #ef4a5b;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.events-pagination .current {
    background: var(--red);
}

@media (max-width: 1399px) {
    .event-filter-select {
        min-width: 250px;
    }

    .event-row-card {
        grid-template-columns: 180px 1fr 36%;
    }

    .event-row-day-num {
        font-size: var(--enx-theme-heading-size);
    }
}

@media (max-width: 991px) {
    .events-list-title {
        font-size: 52px;
    }

    .event-row-card {
        grid-template-columns: 1fr;
    }

    .event-row-date {
        border-right: 0;
        border-bottom: 1px solid #e2e2e2;
        padding: 28px 20px;
    }

    .event-row-content {
        padding: 32px 24px;
    }

    .event-row-image {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .events-list-page {
        padding: 120px 0 70px;
    }

    .events-list-title {
        font-size: 40px;
    }

    .event-filter-select,
    .events-filter-search {
        width: 100%;
        min-width: 100%;
    }

    .event-row-day-name {
        font-size: 22px;
    }

    .event-row-day-num {
        font-size: 60px;
    }

    .event-row-month {
        font-size: 18px;
    }

    .event-row-title {
        font-size: 22px;
    }
}





.custom-event-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}



.custom-event-top {
    background: #f4f4f4;
    padding: 160px 0 100px;
    position: relative;
}

.single-custom-event-top {
    padding: 115px 0 65px !important;
}

.custom-event-top-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    align-items: center;
}

.custom-event-logo-box {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #d9d9d9;
    padding-right: 55px;
}

.custom-event-logo-box img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
}

.custom-event-head-content {
    max-width: 980px;
}

.custom-event-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    font-size: 15px;
    color: #5d5d5d;
    line-height: 1.4;
}

.custom-event-breadcrumb a {
    color: #4a4a4a;
    text-decoration: none;
}

.custom-event-breadcrumb a:hover {
    color: #ff5268;
}

.custom-event-breadcrumb .current {
    color: #ff5268;
}

.custom-event-title {
    margin: 0;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    color: #3f3f3f;
    max-width: 980px;
}

.custom-event-body {
    background: #fff;
    padding: 0 0 100px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.custom-event-body-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 44px;
    align-items: start;
}

.custom-event-body-grid.no-share {
    grid-template-columns: 1fr;
}

.custom-event-main {
    min-width: 0;
}

.custom-event-share {
    padding-top: 20px;
}

.custom-event-share h4 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #444;
    font-weight: 700;
}

.custom-event-share-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.custom-event-share-icons .share-icon {
    width: 46px;
    height: 46px;
    border: 2px solid #ff4f67;
    border-radius: 50%;
    color: #ff4f67;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.custom-event-share-icons .share-icon:hover {
    background: #ff4f67;
    color: #fff;
}

.custom-event-info-card {
    background: #d8e8e4;
    padding: 42px 44px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr) auto;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 5;
    transform: translateY(-95px);
    margin-bottom: -95px;
}

.custom-event-meta-item {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
}

.custom-event-meta-icon {
    color: #ff5268;
    flex: 0 0 auto;
    line-height: 1;
}

.custom-event-meta-icon svg {
    display: block;
}

.custom-event-meta-text {
    color: #4b4b4b;
    font-size: 16px;
    line-height: 1.45;
    min-width: 0;
}

.custom-event-meta-text>div:first-child {
    font-size: 17px;
    margin-bottom: 4px;
}

.custom-event-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.custom-event-btn-wrap {
    text-align: right;
}

.custom-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 220px;
    min-height: 56px;
    padding: 14px 28px;
    background: #ff4f67;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-event-btn:hover {
    background: #f33d57;
    color: #fff;
}

.custom-event-btn-dash {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.custom-event-banner {
    margin-top: 38px;
}

.custom-event-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-event-content {
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.75;
    color: #444;
}

.custom-event-content p:first-child {
    margin-top: 0;
}

.custom-event-content h2,
.custom-event-content h3,
.custom-event-content h4 {
    color: #3f3f3f;
    margin-top: 28px;
    margin-bottom: 14px;
}

.custom-event-content ul,
.custom-event-content ol {
    padding-left: 22px;
}

.custom-event-content a {
    color: #ff4f67;
}

.custom-event-content a:hover {
    color: #f33d57;
}

.site-logo img {
    transition: all 0.3s ease;
}


.enx-dual-cta-section {
    padding: 0;
}

.enx-dual-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.enx-dual-cta-card {
    position: relative;
    min-height: 540px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.enx-dual-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    z-index: 1;
}

.enx-dual-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 24px;
}

.enx-dual-cta-content p {
    margin: 0 0 26px;
    font-size: clamp(28px, 3vw, 30px);
    line-height: 1.15;
    font-weight: 400;
    color: #fff;
}

.enx-dual-cta-content p strong,
.enx-dual-cta-content p b {
    font-weight: 700;
}

.enx-dual-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 270px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

.enx-dual-cta-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.elementor-shortcode .wpcf7 p {
    margin-bottom: 0;
}

.enx-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
}

.enx-field-full {
    grid-column: 1 / -1;
}

.enx-contact-form-grid input,
.enx-contact-form-grid select,
.enx-contact-form-grid textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #d8dde3;
    border-radius: 4px;
    background: #f3f6f8;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;


}

.enx-contact-form-grid textarea {
    min-height: 120px;
    resize: vertical;
}

.enx-contact-form-note {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #617086;
}

.enx-contact-form-accept {
    margin-top: 18px;
    font-size: 15px;
    color: #374151;
}

.enx-contact-form-accept .wpcf7-list-item {
    margin: 0;
}

.enx-contact-form-captcha {
    margin-top: 20px;
}

.enx-contact-form-submit {
    margin-top: 26px;
}

.enx-contact-form-submit input[type="submit"] {
    background: #ff4f6d;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.enx-contact-form-submit input[type="submit"]:hover {
    opacity: 0.92;
}


.enx-cto-perspective {
    padding: 90px 0;
    background: #f5f5f5;
}

.enx-cto-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.enx-cto-head h2 {
    margin: 0;
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    color: #2f2f2f;
}

.enx-cto-head-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 12px 28px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    color: #ff4967;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
}

.enx-cto-intro-box {
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    gap: 40px;
    padding: 38px 50px;
    margin-bottom: 28px;
    border-radius: 28px;
    background: #eceaea;
    overflow: hidden;
}

.enx-cto-intro-box__img img {
    width: 100%;
    max-width: 250px;
    display: block;
}

.enx-cto-intro-box__content h3 {
    margin: 0 0 14px;
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
}

.enx-cto-intro-box__content p {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
    color: #5c6470;
}

.enx-cto-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 18px;
    margin-bottom: 34px;
}

.enx-cto-grid__small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.enx-cto-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.enx-cto-card--large {
    min-height: 760px;
}

.enx-cto-card--small {
    min-height: 370px;
}

.enx-cto-card__link {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.enx-cto-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, .10));
    z-index: 1;
}

.enx-cto-card__content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.enx-cto-card__cat {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.enx-cto-card__content h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
}

.enx-cto-card--large .enx-cto-card__content h3 {
    font-size: 24px;
}

.enx-cto-linkedin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 36px;
    border-radius: 28px;
    background: linear-gradient(45deg, #ff5bb5 0%, #f31273 50%, #a8004c 100%);
}

.enx-cto-linkedin__content span {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.enx-cto-linkedin__content h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.enx-cto-linkedin__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 26px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdr-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--red);
    /* background: #25D366; */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s ease;
}

.hdr-whatsapp:hover {
    /* background: var(--red-hover); */
    background: #1ebe5d;
    color: #fff;
    text-decoration: none;
}

.hdr-whatsapp i {
    font-size: 20px;
    line-height: 1;
}

.mega-arrow-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-arrow-menu li {
    margin-bottom: 12px;
}

.mega-arrow-menu li a {
    position: relative;
    display: block;
    padding-right: 22px;
}

.mega-arrow-menu li a::after {
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: .7;
}

.enx-story-archive-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.enx-story-archive-pagination ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.enx-story-archive-pagination li {
    margin: 0;
}

.enx-story-archive-pagination a,
.enx-story-archive-pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
    background: #fff;
    transition: all .25s ease;
}

.enx-story-archive-pagination a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.enx-story-archive-pagination .current {
    background: #111;
    color: #fff;
    border-color: #111;
}

.enx-story-archive-pagination .dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 6px;
}

/* ===== Header Search Overlay ===== */
.enx-search-open {
    overflow: hidden;
}

.enx-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(58, 58, 56, 0.98);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.enx-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.enx-search-overlay__inner {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 34px 24px 40px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enx-search-overlay__close {
    position: absolute;
    top: 28px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s ease;
}

.enx-search-overlay__close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.enx-search-form {
    width: 100%;
}

.enx-search-form__field {
    position: relative;
    width: 100%;
}

.enx-search-form__input {
    width: 100%;
    height: 88px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    padding: 0 78px 0 0;
    outline: none;
    box-shadow: none;
}

.enx-search-form__input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.enx-search-form__submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s ease;
}

.enx-search-form__submit:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .enx-search-overlay__inner {
        padding: 28px 18px 32px;
        align-items: flex-start;
        padding-top: 120px;
    }

    .enx-search-overlay__close {
        top: 18px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .enx-search-form__input {
        height: 72px;
        font-size: 24px;
        padding-right: 60px;
    }

    .enx-search-form__submit {
        width: 46px;
        height: 46px;
        font-size: 26px;
    }
}

.enx-search-results-page .page-numbers {
    display: flex;
    gap: 8px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.enx-search-results-page .page-numbers li {
    list-style: none;
}

.enx-search-results-page .page-numbers a,
.enx-search-results-page .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    text-decoration: none;
    color: #212529;
    background: #fff;
}

.enx-search-results-page .page-numbers .current {
    background: #212529;
    color: #fff;
    border-color: #212529;
}

@media (max-width: 1199px) {
    .enx-cto-head h2 {
        font-size: 42px;
    }

    .enx-cto-intro-box {
        grid-template-columns: 280px 1fr;
    }

    .enx-cto-grid {
        grid-template-columns: 1fr;
    }

    .enx-cto-card--large {
        min-height: 540px;
    }
	.enx-hero-grid{
		margin-bottom: 90px
	}
}

@media (max-width: 767px) {
    .enx-cto-perspective {
        padding: 60px 0;
    }

    .enx-cto-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .enx-cto-head h2 {
        font-size: 34px;
    }

    .enx-cto-intro-box {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .enx-cto-grid__small {
        grid-template-columns: 1fr;
    }

    .enx-cto-card--large,
    .enx-cto-card--small {
        min-height: 340px;
    }

    .enx-cto-linkedin {
        flex-direction: column;
        align-items: flex-start;
    }

    .enx-cto-linkedin__content h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .enx-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .enx-field-full {
        grid-column: auto;
    }
}

@media (max-width: 991px) {
    .enx-dual-cta-grid {
        grid-template-columns: 1fr;
    }

    .enx-dual-cta-card {
        min-height: 420px;
    }

    .enx-dual-cta-content h3 {
        font-size: 34px;
    }

    .enx-dual-cta-btn {
        min-width: 220px;
        font-size: 22px;
        padding: 16px 24px;
    }
}

@media (max-width: 1199px) {
    .custom-event-top-grid {
        grid-template-columns: 260px 1fr;
        gap: 50px;
    }

    .custom-event-info-card {
        grid-template-columns: 1fr;
    }

    .custom-event-btn-wrap {
        text-align: left;
    }
}

@media (max-width: 991px) {
    .custom-event-top {
        padding: 50px 0 110px;
    }

    .custom-event-top-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .custom-event-logo-box {
        min-height: 140px;
        border-right: 0;
        border-bottom: 1px solid #d8d8d8;
        padding-right: 0;
        padding-bottom: 26px;
        justify-content: flex-start;
    }

    .custom-event-body-grid {
        grid-template-columns: 1fr;
    }

    .custom-event-share {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .custom-event-info-card {
        transform: translateY(-50px);
        margin-bottom: -50px;
    }
}

@media (max-width: 767px) {
	  #siteLogo {
    width: auto;
    object-fit: contain;
}
    .custom-event-container {
        width: min(100%, calc(100% - 24px));
    }

    .custom-event-title {
        font-size: 34px;
    }

    .custom-event-info-card {
        padding: 24px;
        gap: 22px;
        transform: translateY(-25px);
        margin-bottom: -25px;
    }

    .custom-event-meta-item {
        align-items: flex-start;
    }

    .custom-event-meta-text {
        font-size: 15px;
    }

    .custom-event-btn {
        width: 100%;
        min-width: 100%;
        font-size: 15px;
    }

    .custom-event-content {
        font-size: 16px;
        line-height: 1.7;
    }
}