/* ================================================================
   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%);

    /* header height */

    --enx-theme-font-family: 'Montserrat', sans-serif;
    --enx-theme-heading-color: #3c3c3a;
    --enx-theme-text-color: #3c3c3a;
    --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;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--enx-theme-font-family);
    color: var(--enx-theme-text-color);
    overflow-x: hidden;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ================================================================
   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;
}

.slide-h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.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;
}

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

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

/* fixed header area so card stacks start aligned */
.svc6-headbox {
    position: relative;
    min-height: 118px;
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.svc6-headbox h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    line-height: 1.12;
    font-weight: 500;
    color: #202020;
}

.svc6-headbox p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 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;
}

/* ================================================================
   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)
}

/* ================================================================
   PARTNERS / CLIENT LOGO STRIP
================================================================ */
#partnerSw,
#partnerSw .swiper-wrapper,
#partnerSw .swiper-slide,
#partnerSw .partner-card,
#partnerSw img,
#partnerSw svg {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

.partner-sec {
    padding: 88px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.partner-shell {
    position: relative;
    overflow: hidden;
}

/*
.partner-shell::before,
.partner-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 75px;
    z-index: 5;
    pointer-events: none;
}

.partner-shell::before {
    left: 0;
    background: linear-gradient(to right, #fff 35%, rgba(255, 255, 255, 0));
}

.partner-shell::after {
    right: 0;
    background: linear-gradient(to left, #fff 35%, rgba(255, 255, 255, 0));
}

*/

.partner-sec {
    padding: 88px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.partner-shell {
    position: relative;
    overflow: hidden;
}

.p-swiper {
    overflow: hidden;
}

.p-swiper {
    overflow: hidden;
}

#partnerSw .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}

#partnerSw .swiper-slide {
    width: 250px !important;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card {
    width: 100%;
    height: 100%;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.partner-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: 0 0 0 0 rgba(243, 18, 115, 0);
    transition: box-shadow .3s ease;
    pointer-events: none;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 18, 115, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
}

.partner-card:hover::after {
    box-shadow: 0 0 0 1px rgba(243, 18, 115, 0.14), 0 0 26px rgba(243, 18, 115, 0.06);
}

.partner-card img,
.partner-card svg {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}

.partner-card img {
    filter: none;
    opacity: 1;
}

.partner-card:hover img,
.partner-card:hover svg {
    transform: scale(1.04);
    opacity: 1;
}

.partner-card-svg svg {
    opacity: .9;
}

.partner-card img[alt="NEOM"] {
    max-height: 36px;
}

.partner-card img[alt="American Express"] {
    max-height: 34px;
}

.partner-card img[alt="Aramco"] {
    max-height: 40px;
}

/*
@media (max-width: 767px) {
    #partnerSw .swiper-slide {
        width: 220px !important;
        height: 96px;
    }
*/
.partner-card {
    padding: 16px 18px;
    border-radius: 16px;
}

.partner-card::after {
    border-radius: 16px;
}

.partner-card img,
.partner-card svg {
    max-height: 38px;
}

.partner-shell::before,
.partner-shell::after {
    width: 56px;
}
}

@media (max-width: 767px) {
    .partner-sec {
        padding: 70px 0;
    }

    #partnerSw .swiper-slide {
        width: 190px !important;
        height: 86px;
    }

    .partner-card {
        padding: 14px 16px;
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
    }

    .partner-card::after {
        border-radius: 14px;
    }

    .partner-card img,
    .partner-card svg {
        max-height: 32px;
    }

    .partner-shell::before,
    .partner-shell::after {
        width: 26px;
    }
}

/* ================================================================
   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: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 70px solid rgba(241, 7, 163, .06);
}

.cta-sec h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: .98;
    margin-bottom: 18px;
}

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

.cta-sec p {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 30px
}

/* ================================================================
   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 {
    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 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-theme-font-family);
    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-theme-font-family);
    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-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.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: #ff4967;
}

.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;
    }
}

@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) {
    .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;
    }
}