/* ═══════════════════════════════════════════════════════
   GLOBAL SECTION PADDING TOKEN
   All sections share the same left/right padding via this
   single variable — change here to update everywhere.
   ═══════════════════════════════════════════════════════ */
:root {
    --section-px: 40px;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL TYPOGRAPHY SYSTEM
   Fixed sizes — same on every screen width, no responsive scaling.
   H2: 24px · H3: 18px · p / li: 15px
   Hero section excluded (it uses custom stat classes, not h2/h3).
   ══════════════════════════════════════════════════════════════ */

/* Headings — global (hero has no h2/h3 elements, safe to apply) */
h2 {
    font-size: 28px !important;
    line-height: 1.25;
    background: -webkit-linear-gradient(var(--gradient-text));
    background: -moz-linear-gradient(var(--gradient-text));
    background: linear-gradient(var(--gradient-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 20px !important;
    line-height: 1.3;
}

#section-visitor-profile h2 {
    #font-size: 24px !important;
}

#section-visitor-profile h3 {
    #font-size: 18px !important;
}

.cursor-default {
    cursor: default !important;
}

/* Body text — scoped to content sections so hero stat numbers are untouched */
.about-section p,
.about-section li,
.about-content p,
.about-content li,
.snapshot-section p:not(.snapshot-stat-number),
.snapshot-section li,
.exhibitor-section p,
.exhibitor-section li,
#section-curated-buyer p,
#section-curated-buyer li,
#section-media p,
#section-media li,
.site-footer p,
.site-footer li,
.visitor-modal-content p,
.visitor-modal-content li,
.aitech-modal-content p,
.aitech-modal-content li {
    font-size: 15px !important;
    line-height: 1.4;
}

/* ── Section wrapper ────────────────────────────────────────── */
.hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #050d1f;
}

/* â”€â”€ Inner: full viewport height on desktop â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-banner-inner {
    position: relative;
    width: 100%;
    min-height: clamp(340px, 52vw, 500px);
    display: flex;
    align-items: stretch;
}

/* â”€â”€ Background image â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#section-hero .jarallax-img {
    object-position: right 20% !important;
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    /* Anchors the robot to right side — shows head+chest, matches reference */
    background-size: 120%;
    background-position: 82% 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Left-side overlay only â€” right half stays clear for the robot column */
.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(5, 10, 26, 0.88) 0%,
            rgba(5, 10, 26, 0.70) 35%,
            rgba(5, 10, 26, 0.25) 52%,
            transparent 65%);
    z-index: 1;
}

/* Right-side gradient fade — blends jarallax bg into dark at the right edge */
#section-hero::after {
    display: none;
}

/* â”€â”€ Bootstrap container above overlays â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    align-self: stretch;
}

/* Right-side gradient overlay — user-specified dark navy fade on right portion */
#jarallax-container-0::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12%;
    /* increase width for smoother fade */
    height: 100%;
    pointer-events: none;
    z-index: 2;

    background: linear-gradient(to left,
            #060529 0%,
            rgba(6, 5, 41, 0.9) 20%,
            rgba(6, 5, 41, 0.6) 40%,
            rgba(6, 5, 41, 0.3) 65%,
            rgba(6, 5, 41, 0.0) 100%);
}

.hero-banner-row {
    align-items: center;
    padding-top: 3rem;
}

/* â”€â”€ Left Column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    /* prevents text from stretching too wide */
}

/* â”€â”€ Brand block: logo + date info side-by-side â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-banner-brand {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.1rem);
}

.hero-banner-logo {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    display: block;
}

/* Vertical separator between logo and text */
.hero-banner-brand::after {
    display: none;
    /* handled by gap + natural spacing */
}

.hero-banner-event-info {
    border-left: 2px solid rgba(255, 255, 255, 0.30);
    padding-left: clamp(0.65rem, 1.2vw, 1rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.05rem;
}

.hero-banner-city {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 0.1rem;
}

.hero-banner-venue {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.4;
    margin-bottom: 0.1rem;
}

.hero-banner-date {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}


.hero-banner-badge span {
    display: inline-flex;
    align-items: center;
    border: 2px solid #00d4c8;
    border-radius: 6px;
    padding: 0.55rem 1.25rem;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    background: rgba(0, 212, 200, 0.07);
    position: relative;
    /* Figma corner accent effect */
    box-shadow: 0 0 0 1px rgba(0, 212, 200, 0.15), inset 0 0 18px rgba(0, 212, 200, 0.06);
}

/* â”€â”€ Stats + CTAs Row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-banner-stats {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: clamp(0.6rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(1.25rem, 2.5vh, 1.25rem);
    width: 100%;
    align-content: space-around;
}

/* Individual stat */
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.hero-stat-number {
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 2px;
    margin-bottom: 0.50rem;
}

.hero-stat-label {
    font-size: clamp(0.68rem, 0.88vw, 0.8rem);
    font-weight: 600;
    color: #F5F5F5;
    line-height: 1.3;
}

/* Thin vertical dividers */
.hero-stat-divider {
    width: 1px;
    height: clamp(28px, 3.5vw, 38px);
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

/* CTA buttons pushed to the far right of the stats row */
.hero-banner-ctas {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.65rem);
    margin-left: auto;
    flex-shrink: 0;
}

/* â”€â”€ CTA Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-btn {
    display: inline-flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
    padding: 0.4rem 0.60rem;
    font-size: clamp(0.65rem, 0.88vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none !important;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

/* JOIN AS VISITOR â€” purple */
.hero-btn--visitor {
    background: #764DF0;
    color: #ffffff !important;
    box-shadow: 0 3px 14px rgba(124, 58, 237, 0.45);
}

/* BECOME AN EXHIBITOR â€” red */
.hero-btn--exhibitor {
    background: #FE0054;
    color: #ffffff !important;
    box-shadow: 0 3px 14px rgba(232, 16, 42, 0.45);
}

.hero-banner-expand {
    margin-top: 0;
    display: flex;
    gap: 3rem;
}

.hero-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.30rem 1.4rem;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 600;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    background: #ffffff !important;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.hero-expand-btn:hover,
.hero-expand-btn:focus {
    background: #eaeaea !important;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* â”€â”€ Right Column: Robot (background-image, text-free crop) â”€â”€ */
.hero-banner-right {
    padding: 0 !important;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: clamp(300px, 52vw, 500px);
    /* Soft left edge so robot blends into dark left area */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 14%, black 30%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 14%, black 30%);
}

/* hero-banner-robot not used (background-image approach) */
.hero-banner-robot {
    display: none;
}





/* â”€â”€ Section override (prevent site-layout.css conflict) â”€â”€â”€â”€ */
#section-hero.hero-banner-section {
    overflow: hidden !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* â”€â”€ Desktop: hide mobile-only bg image â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-mob-bg {
    display: none;
    /* hidden on desktop always */
}

/* â”€â”€ Mobile / Tablet Responsive (â‰¤991px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991.98px) {
    .hero-banner-inner {
        min-height: auto;
    }

    .hero-banner-right {
        display: none;
    }

    .hero-banner-overlay {
        background: rgba(4, 9, 26, 0.80);
    }

    .hero-banner-left {
        padding-top: 0rem;
        padding-bottom: 1.5rem;
    }
}

/* MOBILE-ONLY HERO FIXES  (max-width: 767px)
   Desktop code above this block is NEVER affected   */

@media (max-width: 767.98px) {

    /* 1. Replace jarallax desktop image with mobile image â”€ */
    #section-hero .jarallax-img {
        display: none !important;
        /* hide desktop bg img on mobile */
    }

    .hero-mob-bg {
        display: block;
        position: absolute !important;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        z-index: 0;
    }

    /* Gradient shadow stays below content */
    #section-hero .gradient-edge-bottom {
        position: relative;
        z-index: 1;
    }

    /* Content wrapper must sit ABOVE all overlays and gradients */
    #section-hero>div.relative {
        position: relative;
        z-index: 5 !important;
    }

    /* 2. Re-order elements using CSS Flex and display: contents â”€ */
    .hero-banner-left {
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        justify-content: flex-start !important;
        /* Push left, we'll gap them */
        align-content: flex-start;
    }

    .hero-banner-stats {
        display: contents !important;
        /* Unwrap so children join .hero-banner-left's flex context */
    }

    .hero-stat {
        order: 1;
        /* First: Stats */
        margin-bottom: 0.5rem;
    }

    /* Make stats share the row perfectly */
    .hero-banner-stats>.hero-stat:nth-child(1),
    .hero-banner-stats>.hero-stat:nth-child(2) {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        width: 45% !important;
    }

    .hero-banner-stats>.hero-stat:nth-child(1) {
        margin-right: 5%;
        /* adds the space between since justify-content space-between can be tricky with wrap */
    }

    .hero-banner-stats>.hero-stat:nth-child(3) {
        display: none !important;
    }

    /* Hide 3rd stat */

    .hero-stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 0px;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    /* 3. Expand button: Centered, placed BEFORE the CTAs â”€â”€â”€â”€â”€ */
    .hero-banner-expand {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-expand-btn {
        display: inline-flex;
        width: auto;
        font-size: 0.82rem;
        padding: 0.4rem 1.50rem;
    }

    /* 4. CTAs: Placed at the BOTTOM, full width â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero-banner-ctas {
        order: 3;
        /* Third: CTA Buttons */
        width: 100% !important;
        margin-left: 0 !important;
        display: flex;
        gap: 0.5rem;
    }

    .hero-btn {
        min-width: 0 !important;
        flex: 1;
        padding: 0.55rem 1.50rem;
        font-size: 0.72rem;
        text-align: center;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   About Section â€” "Why AI TECH 2026 Exists"
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Generic About Section: reusable for full-bleed background images + overlay content */
.about-section {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #101435;
}

.about-section .about-row {
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
}

/* Aspect ratio spacer to ensure panoramic height without min-height property */
.about-section .about-row::before {
    content: '';
    display: block;
    width: 0;
    padding-top: 30%;
    /* Optimized for the panoramic look of Image 2 */
}

/* Smart Merge Overlay: sits between image (z:0) and text (z:2) to transition smoothly */
.about-section .about-row::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    /* Soft merge from image focal points into solid navy background */
    background: linear-gradient(to right,
            transparent 0%,
            transparent 45%,
            rgba(16, 20, 53, 0.4) 62%,
            rgba(16, 20, 53, 0.9) 82%,
            #101435 98%);
}

.about-section .about-img-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
    z-index: 0;
}

#section-about .about-content-col {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: 48%;
    display: flex;
    align-items: center;
    padding: clamp(0.75rem, 1.5vw, 0.75rem) var(--section-px);
    background: linear-gradient(to right, transparent 0%, rgba(16, 20, 53, 0.20) 0%, rgb(14 19 46) 22%, rgb(13 19 45) 34%, #101435 46%);
    align-content: center;
}

.visitor-img-col .about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

/* (Obsolete row reverse logic removed to favour standard bootstrap columns) */

.about-section .about-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Heading */
.about-section .about-title {
    font-weight: 800;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

/* Lead paragraph */
.about-section .about-lead {
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Bullets */
.about-section .about-bullets {
    padding: 0;
    margin: 0;
}

.about-section .about-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5em;
    font-size: clamp(0.84rem, 1vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
    list-style: none;
    /* In case ul has defaults */
}

.about-section .about-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.9;
}

/* ── Standard Two-Column Grid Layouts (Curated Buyer, Media) ── */
.about-img-col {
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    position: relative;
    background: #101435;
}

/* Image on Left: Fade to Right */
.about-img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to right, transparent 65%, rgba(16, 20, 53, 0.5) 85%, #101435 100%);
}

/* Image on Right: Fade to Left */
.about-img-col--right::after {
    background: linear-gradient(to left, transparent 65%, rgba(16, 20, 53, 0.5) 85%, #101435 100%);
}

.about-img-col .about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.about-section:not(#section-about):not(#section-visitor-profile) .about-content-col {
    background: #101435;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 1.5rem) var(--section-px);
}

/* Shared Helper Classes for About Sections */
.about-section .btn-sect {
    margin-top: 1rem;
}

/* Generic shared classes */
.about-title {
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.about-lead {
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.about-bullets {
    padding: 0;
    margin: 0;
}

.about-bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.3em;
    font-size: clamp(0.88rem, 1.1vw, 0.98rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

.about-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.85;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

/* Responsive: stack on mobile */
@media (max-width: 991.98px) {

    /* Why Exists section â€” stack image above content */
    #section-about .about-row {
        flex-direction: column;
        min-height: auto;
    }

    #section-about .about-img-full {
        position: relative;
        width: 100%;
        object-fit: cover;
    }

    #section-about .about-content-col {
        position: relative;
        width: 100%;
        min-width: 0;
        margin-left: 0;
        background: #101435;
        padding: 1rem var(--section-px);
        padding-bottom: 0;
    }

    .about-section:not(#section-about) .about-img-col {
        min-height: 260px;
    }

    .about-section:not(#section-about) .about-content-col {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-left: var(--section-px);
        padding-right: var(--section-px);
    }
}


.snapshot-section {
    position: relative;
    background: #101435;
    overflow: visible;
    /* do NOT clip â€” let image strip show at full natural height */
    color: #ffffff;
}

.snapshot-content {
    position: relative;
    z-index: 3;
    padding: clamp(1.5rem, 3vw, 1.5rem) 0 clamp(1.5rem, 3vw, 1.5rem);
}

/* Title */
.snapshot-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Stats row */
.snapshot-stats-row {
    margin-bottom: clamp(1.5rem, 3.5vh, 2.25rem);
}

.snapshot-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.snapshot-stat:first-child {
    border-left: none;
}

.snapshot-stat-number {
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    /* matches .hero-stat-number */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.0;
    margin-bottom: 0.35rem;
    letter-spacing: 2px;
}

.snapshot-stat-label {
    font-size: clamp(0.68rem, 0.88vw, 0.8rem);
    /* matches .hero-stat-label */
    font-weight: 600;
    color: #F5F5F5;
    line-height: 1.3;
    display: block;
    /* matches hero-stat-label flex-item behavior */
}

/* CTA buttons */
.snapshot-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.snapshot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.25rem;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: none;
    text-decoration: none !important;
    border-radius: 5px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    min-width: 250px;
    transition: filter 0.2s ease, transform 0.15s ease;
    color: #ffffff !important;
}

#section-curated-buyer .snapshot-btn {
    min-width: auto;
}

.snapshot-btn:hover {
    filter: brightness(1.14);
    transform: translateY(-2px);
}

.snapshot-btn--visitor {
    background: #764DF0;
}

.snapshot-btn--exhibitor {
    background: #FE0054;
}

.snapshot-btn--white {
    background: #ffffff;
    color: #101435 !important;
}

.snapshot-btn--white:hover {
    background: #f0f0f0;
    color: #101435 !important;
}

/* â”€â”€ Image strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.snapshot-img-strip {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 1;
    /* pull strip up behind the CTA buttons */
    margin-top: -1px;
}

/* Dark gradient â€” solid at top, fades into the image */
.snapshot-img-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: linear-gradient(to bottom,
            #101435 0%,
            rgba(6, 17, 42, 0.75) 45%,
            rgba(6, 17, 42, 0.20) 80%,
            transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Image shows at natural full height â€” no clipping */
.snapshot-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: none;
    /* ensure no max-height cuts it */
    object-fit: unset;
}

/* Responsive */
@media (max-width: 767.98px) {
    .snapshot-stat {
        border-left: none;
        padding: 0.5rem 0rem;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }

    .snapshot-stat:nth-child(odd) {
        border-top: none;
    }

    .snapshot-btn {
        width: 100%;
        text-align: center;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Visitor Profile Section
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.visitor-section {
    background: #101435;
    color: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Left copy column */
.visitor-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.visitor-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.visitor-lead {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.visitor-bullets {
    padding: 0;
    margin: 0;
}

.visitor-bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.visitor-bullets li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Right visual column */
.visitor-visual-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visitor-persona-grid {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.visitor-persona-grid-img-wrap {
    position: relative;
    width: 100%;
}

.visitor-persona-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Expand button */
.visitor-expand-wrap {
    display: flex;
    justify-content: flex-end;
}

.visitor-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 2rem;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 600;
    color: #111111 !important;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
}

.visitor-expand-btn:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Exhibitor Profile Section
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.exhibitor-section {
    background: #101435;
    color: #ffffff;
    #padding: clamp(3rem, 6vw, 5rem) var(--section-px) 0;
}

.exhibitor-title {
    font-size: clamp(2rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0rem;
}

.exhibitor-subtitle {
    font-size: clamp(1.5rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.exhibitor-bullets-row {
    margin-bottom: clamp(0.5rem, 2vh, 0.5rem);
}

.exhibitor-bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.exhibitor-bullets li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    top: 0;
    color: #6ab0ff;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Five-panel image strip â€” direct child of section, no breakout needed */
.section-exhibitor-strip {
    position: relative;
    width: 100%;
    margin-top: clamp(1.5rem, 3vh, 2.5rem);
    line-height: 0;
    overflow: hidden;
}

/* Top-fade: lets the strip blend into the dark section above */
.section-exhibitor-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom,
            #101435 0%,
            rgba(6, 17, 42, 0.75) 35%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.section-exhibitor-strip-img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.p-0 {
    padding: 0px !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .visitor-persona-labels {
        grid-template-columns: repeat(2, 1fr);
    }

    .visitor-persona-labels span:nth-child(1),
    .visitor-persona-labels span:nth-child(3) {
        border-left: none;
    }

    .section-exhibitor-strip-img {
        height: clamp(130px, 18vw, 200px);
    }
}

@media (max-width: 575.98px) {
    .section-exhibitor-strip-img {
        height: 160px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Footer Section
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.site-footer {
    position: relative;
    background: linear-gradient(to bottom, #101435 0%, #101435 80px, #020613 100%) !important;
    /* Seamless fade from section navy to very dark footer navy */
    color: #ffffff;
    padding-bottom: 0rem;
    font-family: inherit;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
}

.section-marquee {
    padding-top: 30px !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.section-marquee>div {
    position: relative;
    z-index: 10 !important;
}

.section-marquee+.site-footer {
    padding-top: 70px !important;
}

/* Purple Glow Bar */
.footer-glow-bar {
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.85) 0%, rgba(124, 58, 237, 0.2) 30%, transparent 100%);
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

.footer-brand-logo {
    height: clamp(65px, 8vw, 85px);
    width: auto;
    display: block;
}

/* Small label texts */
.footer-kicker {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
    text-transform: none !important;
}

/* Main bold texts */
.footer-venue-line {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.5;
    color: #ffffff;
}

/* Contact Block */
.footer-contact-item {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* Right-align contact block on desktop */
@media (min-width: 992px) {
    .footer-col-contact {
        padding-left: 0rem;
    }
}

/* Subfooter */
.site-footer__subfooter {
    padding-top: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Footer: Organizer Logos side-by-side ──────────────────── */
.footer-organizers-row {
    margin-top: 0.5rem;
}

.footer-organizer-logo {
    width: 100%;
    max-width: 140px;
    height: 65px;
    padding: 6px 12px;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-organizer-col {
    flex: 1;
    min-width: 0;
    max-width: 140px;
}

.footer-organizer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35) !important;
}

.footer-organizer-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.footer-organizer-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.2;
}

.footer-organizer-sublabel {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 2px;
    text-decoration: none;
}

.footer-organizer-sublabel:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* ── Footer: Mobile responsiveness ─────────────────────────── */
@media (max-width: 767.98px) {

    /* Top padding so footer doesn't feel cramped after last section */
    .site-footer {
        padding-top: clamp(2rem, 5vw, 3rem);
    }

    /* Match section-px padding used across all other sections */
    .footer-content-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Logo left, venue right — row layout, both same height */
    .footer-left-col {
        flex-direction: row !important;
        align-items: stretch !important;
        /* both columns same height */
    }

    /* Logo: bigger on mobile, vertically centered via flex */
    .footer-brand-logo {
        height: 80px;
        width: auto;
    }

    .footer-logo-link {
        display: flex;
        align-items: center;
        /* center logo vertically within same height */
        flex-shrink: 0;
        margin-right: 1rem;
        margin-bottom: 0;
    }

    /* Venue text: slightly smaller for narrow screens */
    .footer-venue-line {
        font-size: 0.95rem;
    }



    /* Subfooter: tighter padding on mobile */
    .site-footer__subfooter {
        padding-top: 0rem;
        padding-bottom: 1rem;
    }

    .subfooter .container {
        padding-left: var(--section-px) !important;
        padding-right: var(--section-px) !important;
    }

    /* Shrink copyright slightly so it fits on one line */
    .footer-copy {
        font-size: 0.78rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Introduction to AI TECH â€” Bootstrap Modal
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Backdrop: slightly darker than default */
#aiTechModal .modal-backdrop,
.modal-backdrop {
    --bs-backdrop-opacity: 0.75;
}

/* Modal content box */
.aitech-modal-content {
    background: #101435;
    border: none;
    border-radius: 4px;
    position: relative;
    color: #ffffff;
}

/* Body padding */
.aitech-modal-body {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
}

/* Close âœ• button â€” top-right */
.aitech-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: color 0.2s;
}

.aitech-modal-close:hover {
    color: #ffffff;
}

/* Modal heading */
.aitech-modal-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

/* Intro bold paragraph */
.aitech-modal-intro {
    font-size: clamp(0.9rem, 1.15vw, 1rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.aitech-modal-intro strong {
    color: #ffffff;
    font-weight: 700;
}

/* Divider between intro and columns */
.aitech-modal-cols {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

/* Column sub-heading */
.aitech-modal-col-title {
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Column body text */
.aitech-modal-col-text {
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive: stack columns nicely on mobile */
@media (max-width: 767.98px) {
    .aitech-modal-body {
        padding: 1.75rem 1.25rem;
    }

    .aitech-modal-cols .col-md-4+.col-md-4 {
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        padding-top: 1.25rem;
    }
}


/* Visitor Profile Specific Adjustments — Exact Mockup Match */
#section-visitor-profile .about-row::before {
    background: #101435;
    display: flex;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.5rem) var(--section-px);
}

#section-visitor-profile .about-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.visitor-img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to left, transparent 0%, #ff000000 0%, rgb(16 20 53 / 0%) 80%, rgba(16, 20, 53, 0.9) 90%, #0f1434 98%);
}

.visitor-cta-wrap {
    margin-top: auto;
    /* Pushes button to bottom relative to content */
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* Move button to the RIGHT side of the content col as seen in mockup */
    padding-bottom: 0.5rem;
    padding-right: 2%;
    /* Nudge to match mockup alignment */
}

/* Visitor Profile CTA Button — Matches mockup exactly */
.visitor-btn-white {
    display: inline-block;
    background-color: #ffffff;
    color: #101435 !important;
    font-weight: 800;
    font-size: clamp(0.95rem, 1.15vw, 1.1rem);
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: none;
}

.visitor-btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


#section-visitor-profile .about-bullets li {
    margin-bottom: 0.5rem;
}



/* â”€â”€ Expand button â€” absolutely placed bottom-right of the section â”€â”€ */
.visitor-expand-container {
    bottom: 1rem;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 9;
    top: 2px;
}

.visitor-expand-btn {
    display: inline-block;
    background: #ffffff;
    color: #101435;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    font-weight: 700;
    padding: 0.30rem 1.4rem;
    text-decoration: none;
    border-radius: 5px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: background 0.2s, color 0.2s;
}

.visitor-expand-btn:hover {
    background: #dce8ff;
    color: #101435;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    #section-visitor-profile .visitor-img-col .about-img-wrap {
        min-height: 220px;
    }

    .visitor-expand-container {
        right: 1.25rem;
        bottom: 1rem;
    }
}

/* ══════════════════════════════════════════════════════
   VISITOR PROFILE (MOBILE & TABLET STACKING)
   ══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    #section-visitor-profile .row {
        display: flex;
        flex-direction: column;
        padding: 0 var(--section-px);
    }
}

@media (max-width: 575.98px) {
    .visitor-expand-container {
        right: 1rem;
        bottom: 0.75rem;
    }
}



/* ══════════════════════════════════════════════════════
   Visitor Profile Modal  (#visitorModal)
   ══════════════════════════════════════════════════════ */

.visitor-modal-content {
    background: #101435;
    border: none;
    border-radius: 4px;
    position: relative;
    color: #ffffff;
}

.visitor-modal-body {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
}

.visitor-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: color 0.2s;
}

.visitor-modal-close:hover {
    color: #ffffff;
}

.visitor-modal-title {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    max-width: 92%;
}

.visitor-modal-intro {
    font-size: clamp(0.87rem, 1.05vw, 0.95rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-weight: 600;
    margin-bottom: 2rem;
}

.visitor-modal-cols {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

.visitor-modal-col-title {
    font-size: clamp(0.87rem, 1.05vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.visitor-modal-col-text {
    font-size: clamp(0.78rem, 0.93vw, 0.88rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 0;
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EXHIBITOR PROFILE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.exhibitor-bullets {
    padding: 0;
    margin: 0;
}

.exhibitor-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.exhibitor-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.85;
}

.px-40 {
    padding: 0px 40px;
}

.pr-0 {
    padding-right: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.modal-backdrop.show {
    opacity: .9;
}

.mobile-break {
    display: none;
}

@media (max-width: 1199.98px) {
    .mh-800 {
        min-height: 600px;
    }

    section {
        padding: 20px 0 30px 0;
    }
}

@media (max-width: 767.98px) {


    .hero-banner-overlay {
        background: none;
    }

    .visitor-modal-body {
        padding: 1.75rem 1.25rem;
    }

    .visitor-modal-cols [class*="col-"]+[class*="col-"] {
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        padding-top: 1.25rem;
    }

    #section-hero .mh-800,
    .mh-800 {
        min-height: auto !important;
        margin-top: 30px;
    }

    #section-hero .section-hero-subtitle-img {
        max-width: 70%;
    }

    .about-img-col::after {
        background: none;
    }

    .js-marquee .fs-60 {
        font-size: 24px;
    }

    .snapshot-content {
        padding: 0px;
    }

    /* Force snapshot buttons to sit exactly side-by-side 50/50 */
    .snapshot-ctas {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.5rem !important;
    }

    .snapshot-btn {
        width: 50%;
        padding: 0.55rem 1.50rem;
        font-size: 0.72rem;
        text-align: center;
        min-width: 0;
        /* Ensures it shrinks if needed */
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       VISITOR PROFILE (MOBILE ONLY STACKING)
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #section-visitor-profile .row {
        display: flex;
        flex-direction: column;
        padding: 0 var(--section-px);
        /* Add horizontal padding to the row to replace the col padding */
    }

    #section-visitor-profile .about-content-col,
    #section-visitor-profile .about-content,
    #section-visitor-profile .visitor-img-col {
        display: contents !important;
        /* Unwrap columns and the about-content wrapper */
    }

    /* Assign explicit order to each immediate child now in the row */
    #section-visitor-profile .about-title {
        order: 1;
        margin-top: 0rem;
        margin-bottom: 0.25rem;
    }

    #section-visitor-profile .visitor-subtitle {
        order: 2;
        margin-bottom: 1.5rem;
    }

    #section-visitor-profile .about-img-wrap {
        order: 3;
        /* Pull the image out of the row padding to make it full bleed */
        margin-left: calc(0px - var(--section-px));
        margin-right: calc(0px - var(--section-px));
        margin-bottom: 0rem;
        width: calc(100% + 2 * var(--section-px));
        /* compensate for negative margins */
    }

    #section-visitor-profile .about-lead {
        order: 4;
        margin-bottom: 1rem;
    }

    #section-visitor-profile .about-bullets {
        order: 5;
        margin-bottom: 1rem !important;
    }

    #section-visitor-profile .visitor-expand-container {
        order: 6;
        width: 100%;
        display: flex;
        justify-content: center;
        position: static !important;
        /* Fix overlap from absolutely positioned desktop styles */
    }

    #section-visitor-profile .visitor-img-col::after {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .about-section .about-row::before {
        content: none;
        display: none;
    }

    .px-40 {
        padding: 0px 30px;
    }

    .section-marquee {
        padding-top: 0px !important;
    }

    section {
        padding: 22px 0 22px 0 !Important;
    }

    .section-divider {
        margin: 1rem auto;
    }

    .hero-banner-left {
        padding-bottom: 0rem;
    }

    .exhibitor-bullets-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 0 !important;
        margin-bottom: 0 !important;
    }

    /* All columns: own padding aligning with section titles */
    .exhibitor-bullets-row>div[class*="col-"] {
        padding-left: var(--section-px) !important;
        padding-right: var(--section-px) !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        background: transparent;
    }

    .exhibitor-bullets-row>div[class*="col-"]:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .exhibitor-bullets li:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Bullets: flush left, dot handled by li::before */
    .exhibitor-bullets-row .exhibitor-bullets {
        margin-bottom: 0 !important;
        padding-left: 0;
    }

    /* Column 2: darker bg + extra left indent for nested pavilion look */
    .exhibitor-bullets-row>div[class*="col-"]:nth-child(2) {
        background: #010211 !important;
        padding-left: calc(var(--section-px) + 1.5rem) !important;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CURATED BUYER PROGRAM (MOBILE ONLY STACKING)
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #section-curated-buyer .row {
        display: flex;
        flex-direction: column;
        padding: 0 var(--section-px);
        /* Add horizontal padding to the row to replace the col padding */
    }

    #section-curated-buyer .about-content-col,
    #section-curated-buyer .about-content,
    #section-curated-buyer .about-img-col {
        display: contents !important;
        /* Unwrap columns and the about-content wrapper */
    }

    /* Assign explicit order to each immediate child now in the row */
    #section-curated-buyer .about-title {
        order: 1;
        text-align: center;
        /* No subtitle, so larger bottom margin */
    }

    #section-curated-buyer .about-img {
        order: 2;
        /* Pull the image out of the row padding to make it full bleed */
        margin-left: calc(0px - var(--section-px));
        margin-right: calc(0px - var(--section-px));
        margin-bottom: 1rem;
        width: calc(100% + 2 * var(--section-px));
        /* compensate for negative margins */
        object-fit: cover;
    }

    #section-curated-buyer .about-lead {
        order: 3;
        margin-bottom: 1rem;
    }

    #section-curated-buyer .about-bullets {
        order: 4;
        margin-bottom: 0.5rem !important;
    }

    /* The div wrapping the "Become an Exhibitor" button */
    #section-curated-buyer .btn-sect {
        order: 5;
        width: 100%;
        display: flex;
        margin-bottom: 0rem;
        margin-top: 0rem;
        justify-content: center;
    }

    #section-curated-buyer .snapshot-btn {
        width: fit-content;
    }


    #section-media .row {
        display: flex;
        flex-direction: column;
        padding: 0 var(--section-px);
        /* Replace column padding */
    }

    /* Unwrap the columns to allow interleaving */
    #section-media .about-content-col,
    #section-media .about-content,
    #section-media .about-img-col {
        display: contents !important;
    }

    /* Override Bootstrap column ordering */
    #section-media .col-lg-6 {
        order: unset !important;
    }

    /* Target specific children */
    #section-media .about-title {
        order: 1;
        text-align: center;
    }

    #section-media .about-img {
        order: 2;
        margin-left: calc(0px - var(--section-px));
        margin-right: calc(0px - var(--section-px));
        margin-bottom: 1rem;
        width: calc(100% + 2 * var(--section-px));
        height: auto;
    }

    #section-media .about-lead {
        order: 3;
        margin-bottom: 1rem;
    }

    #section-media .about-bullets {
        order: 4;
        /* Space at bottom of section */
    }


    .about-bullets li {
        font-size: clamp(1rem, 1.1vw, 0.98rem);
    }

    .snapshot-stat-label {
        line-height: 1.3;
        /* match hero-stat-label */
        display: block;
    }



    /* Strip all padding from section so bullets-row is truly full-bleed */
    .exhibitor-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }



    /* Column 2: darker bg, extra indent for nested pavilion look */
    .exhibitor-section .col-md-4:nth-child(2) {
        padding-left: calc(var(--section-px) + 1.5rem) !important;
    }

    .about-section .about-row::after {
        content: none;
        display: none;
    }

    :root {
        --section-px: 30px;
    }

    #section-hero .section-hero-subtitle-img {
        margin-bottom: 2rem;
        margin-top: 5rem;
    }

    #section-commercial-snapshot .snapshot-content.px-40 {}

    .snapshot-img-strip::before {
        content: none;
        display: none;
    }

    .snapshot-img-strip {
        margin-top: 10px;
    }

    #section-commercial-snapshot .snapshot-stats-row {
        margin-bottom: 0;
    }

    #section-visitor-profile .about-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        display: block;
    }

    #section-exhibitor-profile .px-40 {
        padding: 0px;
    }

    #section-exhibitor-profile h2,
    #section-exhibitor-profile h3 {
        padding: 0px 30px;
        margin-bottom: 0;
    }

    #section-exhibitor-profile {}

    ul li {
        margin-bottom: 0.2rem !important;
    }

    .footer-col-contact {
        padding-left: 0px !important;
        padding-right: 0px !important;
        padding-top: 15px;
    }

    .mobile-break {
        display: block;
    }

    #section-conference .snapshot-btn,
    #section-call-for-papers .snapshot-btn,
    #section-sponsorship .snapshot-btn {
        width: fit-content;
        min-width: 200px;
        max-width: 100%;
    }
}

/* ── Call for Papers & Sponsorship: Two-column bullet grid ────── */
/* Used inside .about-content-col to display two bullet lists side-by-side */
.cfp-bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

@media (max-width: 575.98px) {
    .cfp-bullets-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem 0;
    }
}

/* Caption text below CTAs */
.cta-subtext {
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-weight: 400;
    white-space: normal !important;
    /* Override style.css .d-flex white-space: nowrap rule */
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Conference Section Design Adjustments ───────────────────── */


#section-conference .conference-top-left {
    background: #101435 !important;
    padding-top: 0 !important;
    padding-bottom: clamp(1rem, 1.5vw, 1.5rem) !important;
    padding-left: var(--section-px) !important;
    padding-right: var(--section-px) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
}

#section-conference .conference-top-right {
    background: #101435 !important;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#section-conference .conference-top-right .conference-img-wrap {
    height: 100%;
    width: 100%;
}

#section-conference .conference-top-right .conference-img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#section-conference .conference-bottom-left {
    background: #101435 !important;
    padding-top: clamp(1rem, 1.5vw, 1.5rem) !important;
    padding-bottom: clamp(2rem, 3.5vw, 3rem) !important;
    padding-left: var(--section-px) !important;
    padding-right: var(--section-px) !important;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
}

#section-conference .conference-bottom-right {
    background: #101435 !important;
    padding-top: clamp(1rem, 1.5vw, 1.5rem) !important;
    padding-bottom: clamp(2rem, 3.5vw, 3rem) !important;
    padding-left: var(--section-px) !important;
    padding-right: var(--section-px) !important;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
}

#section-conference .conference-cta-wrap {
    padding: 0 !important;
    margin-top: 0 !important;
}

.conference-right-col {
    background: #101435;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 !important;
    overflow: hidden;
}

.conference-img-wrap {
    width: 100%;
    position: relative;
}

.conference-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.conference-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to left, transparent 65%, rgba(16, 20, 53, 0.5) 85%, #101435 100%);
}

.conference-cta-wrap {
    width: 100%;
    margin-top: auto;
    padding-bottom: clamp(1.5rem, 3vw, 1.5rem) !important;
    padding-left: var(--section-px);
    padding-right: var(--section-px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}



/* Responsive Overrides for Mobile Stack */
@media (max-width: 991.98px) {
    #section-conference .wow {
        visibility: visible !important;
        animation: none !important;
        opacity: 1 !important;
    }

    #section-conference .row {
        display: flex;
        flex-direction: column;
        padding: 0 var(--section-px);
    }

    #section-conference .about-content-col,
    #section-conference .about-content,
    #section-conference .conference-right-col {
        display: contents !important;
    }

    #section-conference .col-lg-6 {
        order: unset !important;
    }

    #section-conference .about-title {
        order: 1;
        text-align: left !important;
    }

    #section-conference .about-lead {
        order: 2;
        margin-bottom: 1.5rem;
    }

    #section-conference .conference-top-right .conference-img-wrap {
        order: 3 !important;
        margin-left: calc(0px - var(--section-px)) !important;
        margin-right: calc(0px - var(--section-px)) !important;
        margin-bottom: 0.5rem !important;
        width: calc(100% + 2 * var(--section-px)) !important;
        height: auto !important;
        position: relative !important;
        display: block !important;
    }

    #section-conference .conference-top-right .conference-img-wrap img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    #section-conference .conference-top-right .conference-img-wrap::after {
        display: none !important;
    }

    #section-conference .conference-top-left .visitor-subtitle {
        display: none !important;
    }

    #section-conference .conference-top-left .about-bullets {
        display: none !important;
    }

    #section-conference .conference-bottom-left .visitor-subtitle {
        order: 6;
        margin-top: 0.7rem !important;
    }

    #section-conference .conference-bottom-left .about-bullets {
        order: 7;
    }

    #section-conference .conference-cta-wrap {
        order: 8;
        padding: 0 !important;
        width: 100%;
        margin-top: 1rem;
    }

    #section-conference .conference-btns-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    #section-conference .conference-btns-row .snapshot-btn {
        flex: 1 1 0% !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 0.65rem 0.25rem !important;
        font-size: clamp(11px, 3.2vw, 13px) !important;
        letter-spacing: 0.02em !important;
        text-align: center !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }
}

/* ── Call for Papers Section Design Adjustments ───────────────── */

/* Top row: image + text — contained within the container */
#section-call-for-papers .cfp-top-row {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    align-items: flex-start !important;
    /* Top-align image with heading */
}

/* Contained image column — flush left, fades into bg on right */
#section-call-for-papers .cfp-img-col {
    display: flex;
    align-items: flex-start;
    padding-left: 0 !important;
    /* flush to container edge */
}

#section-call-for-papers .cfp-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* No border-radius or box-shadow — seamless fade replaces hard edges */
}

/* Right-side fade: blends image into dark background toward the text column */
#section-call-for-papers .cfp-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to right,
            transparent 45%,
            rgba(16, 20, 53, 0.35) 68%,
            rgba(16, 20, 53, 0.80) 85%,
            #101435 100%);
}

#section-call-for-papers .cfp-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content column — top-aligned with image */
#section-call-for-papers .cfp-content-col {
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: 0;
    align-self: flex-start;
}

/* Bold first paragraph (Image 2 style) */
.cfp-lead-bold {
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.65;
}

/* Regular second paragraph */
.cfp-lead-regular {
    font-size: clamp(0.85rem, 1.05vw, 0.97rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

/* Lists area: tight top padding to close the gap */
#section-call-for-papers .cfp-lists-row {
    padding-top: 0;
    padding-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

/* ── CFP Bullet style — light · dot to match Image 2 ─────────── */
.cfp-bullets {
    padding: 0;
    margin: 0;
}

.cfp-bullets li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.35em;
    font-size: clamp(0.84rem, 1vw, 0.94rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.5;
    list-style: none;
}

.cfp-bullets li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: -0.05em;
    font-size: 1.3em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.5;
}

/* Submit a Paper & Sponsorship buttons — slightly smaller to match designs */
#section-call-for-papers .snapshot-btn,
#section-sponsorship .snapshot-btn {
    min-width: 200px;
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    padding: 0.5rem 1.75rem;
    text-transform: none;
}

#section-call-for-papers .btn-sect,
#section-sponsorship .btn-sect {
    margin-top: 0.25rem;
}

/* ── CFP Mobile ────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    #section-call-for-papers .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #section-call-for-papers .cfp-top-row {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 var(--section-px) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #section-call-for-papers .cfp-content-col,
    #section-call-for-papers .cfp-content-col .about-content {
        display: contents !important;
    }

    #section-call-for-papers .about-title {
        order: 1 !important;
        margin-top: 2.5rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
    }

    #section-call-for-papers .cfp-lead-bold {
        order: 2 !important;
        margin-bottom: 1.5rem !important;
    }

    #section-call-for-papers .cfp-img-col {
        display: contents !important;
    }

    #section-call-for-papers .cfp-img-wrap {
        order: 3 !important;
        margin-left: calc(0px - var(--section-px)) !important;
        margin-right: calc(0px - var(--section-px)) !important;
        margin-bottom: 0.5rem !important;
        width: calc(100% + 2 * var(--section-px)) !important;
        height: auto !important;
        position: relative !important;
        display: block !important;
    }

    #section-call-for-papers .cfp-img-wrap img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    #section-call-for-papers .cfp-img-wrap::after {
        display: none !important;
    }

    #section-call-for-papers .cfp-lead-regular {
        order: 4 !important;
        margin-top: 0.7rem !important;
        margin-bottom: 0rem !important;
    }

    #section-call-for-papers .cfp-btns-row {
        order: 5 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        padding: 0 !important;
        margin-top: 1rem !important;
        margin-bottom: 0rem !important;
    }

    #section-call-for-papers .cfp-btns-row .snapshot-btn {
        flex: 1 1 0% !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 0.65rem 0.25rem !important;
        font-size: clamp(11px, 3.2vw, 13px) !important;
        letter-spacing: 0.02em !important;
        text-align: center !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }

    #section-call-for-papers .cfp-lists-row {
        display: none !important;
    }

    #section-call-for-papers .wow {
        visibility: visible !important;
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ── Sponsorship Options Section Design Adjustments ─────────────── */

/* Top row: image + text — contained within the container */
#section-sponsorship .spons-top-row {
    align-items: flex-start !important;
    /* Top-align image with heading */
}

/* Contained image column — flush right, fades into bg on left */
#section-sponsorship .spons-img-col {
    padding-right: 0 !important;
    /* flush to right container edge */
}

/* Why Sponsor wrapper — add padding-right to match container padding */
#section-sponsorship .spons-why {
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
}

#section-sponsorship .spons-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* No border-radius or box-shadow — seamless fade replaces hard edges */
}

/* Left-side fade: blends image into dark background toward the text column */
#section-sponsorship .spons-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to right,
            #101435 0%,
            rgba(16, 20, 53, 0.80) 15%,
            rgba(16, 20, 53, 0.35) 32%,
            transparent 55%);
}

#section-sponsorship .spons-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content column — top-aligned with image */
#section-sponsorship .spons-content-col {
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: 0;
    align-self: flex-start;
}

/* ── Sponsorship Mobile ────────────────────────────────────────── */
@media (max-width: 991.98px) {
    #section-sponsorship .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #section-sponsorship .spons-top-row {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 var(--section-px) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #section-sponsorship .spons-content-col {
        display: contents !important;
    }

    #section-sponsorship .spons-intro-content {
        order: 1 !important;
    }

    #section-sponsorship .about-title {
        text-align: left !important;
    }

    #section-sponsorship .spons-opportunities {
        display: none !important;
    }

    #section-sponsorship .spons-img-col {
        display: contents !important;
    }

    #section-sponsorship .spons-img-wrap {
        order: 2 !important;
        margin-left: calc(0px - var(--section-px)) !important;
        margin-right: calc(0px - var(--section-px)) !important;
        margin-bottom: 0.5rem !important;
        width: calc(100% + 2 * var(--section-px)) !important;
        height: auto !important;
        position: relative !important;
        display: block !important;
    }

    #section-sponsorship .spons-img-wrap img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    #section-sponsorship .spons-img-wrap::after {
        display: none !important;
    }

    #section-sponsorship .spons-why {
        order: 3 !important;
        padding-right: 0 !important;
        margin-top: 0.50rem !important;
    }

    #section-sponsorship .spons-btns-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        padding: 0 !important;
        margin-top: 1rem !important;
        margin-bottom: 0rem !important;
    }

    #section-sponsorship .spons-btns-row .snapshot-btn {
        flex: 1 1 0% !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 0.65rem 0.25rem !important;
        font-size: clamp(11px, 3.2vw, 13px) !important;
        letter-spacing: 0.02em !important;
        text-align: center !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }

    #section-sponsorship .wow {
        visibility: visible !important;
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ── Slanted Marquee Height & Font Size Reduction ── */
.de-marquee-list-1 .fs-60,
.de-marquee-list-2 .fs-60 {
    font-size: 20px !important;
}

.bg-color,
.bg-color-2,
.bg-color.py-4,
.bg-color-2.py-4 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
}

.mt-min-20 {
    margin-top: -11px !important;
}

/* Offset for sections linked via anchors to prevent them from being cut off by the header */
#section-sponsorship,
#section-why-attend,
#section-buyer,
#section-venue {
    scroll-margin-top: 50px;
}

/* ── Section Divider with Radial Gradient Glow ── */
.section-divider {
    display: block;
    width: 276px;
    height: 6px;
    background: url('../images/divider.svg') no-repeat center center;
    background-size: contain;
    border: none;
    margin: 2rem auto;
    padding: 0;
    position: relative;
    z-index: 10;
}

/* ── Spacing Overrides around Dividers for Consistent Tight Layout ── */
#section-conference .conference-bottom-left,
#section-conference .conference-bottom-right {
    padding-bottom: 0.5rem !important;
}

#section-call-for-papers .cfp-top-row {
    padding-top: 0rem !important;
}

@media (max-width: 991.98px) {
    #section-call-for-papers .about-title {
        margin-top: 0rem !important;
    }
}

/* ── Redesigned Layout-Only Footer Adjustments ── */
.footer-row-top .footer-organizer-label {
    margin-top: 4px !important;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-align: left !important;
}

.border-top-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
    .footer-row-top {
        margin-bottom: 2rem !important;
    }

    .footer-row-top>div {
        margin-bottom: 1.5rem;
    }

    .footer-sales-block {
        margin-top: 1rem !important;
    }

    footer .px-40 {
        margin-top: 0.5rem !important;
    }
}

/* ── Modern Responsive Header & Back Button Styles (Sponsor & Exhibitor Page) ── */
.sponsor-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsor-header-logo {
    max-height: 60px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-back i {
    font-size: 11px;
    color: #00d4c8;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-back:hover {
    background: rgba(0, 212, 200, 0.08);
    border-color: rgba(0, 212, 200, 0.35);
    box-shadow: 0 4px 20px rgba(0, 212, 200, 0.15);
    transform: translateY(-1px);
}

.btn-back:hover i {
    transform: translateX(-4px);
}

.about-section .about-content-col .about-bullets {
    margin-bottom: 1rem !important;
}

/* Mobile-only optimizations */
@media (max-width: 767.98px) {
    #section-visitor-profile {
        margin-top: 0.50rem;
    }

    .sponsor-header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        padding-bottom: 1.25rem !important;
    }

    .sponsor-header-logo {
        max-width: 200px !important;
        max-height: 46px !important;
        height: auto;
        object-fit: contain;
    }

    .btn-back {
        padding: 0 !important;
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important;
        gap: 0 !important;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .btn-back span {
        display: none !important;
    }

    .btn-back i {
        font-size: 13px !important;
        margin: 0 !important;
        transform: none !important;
    }

    .btn-back:hover i {
        transform: scale(1.1) !important;
    }
}

/* Pure CSS Scroll Fade-In Animations */
.animate-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.animate-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   EXHIBITOR PAGE — Google Form Iframe
   ═══════════════════════════════════════════════════════ */

/* Iframe fills its container fully */
.exhibitor-form-iframe {
    width: 100%;
    height: 1800px;
    border: none;
    background: #ffffff;
    border-radius: 6px;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Scrollable window — vh-based so it fits any screen */
.exhibitor-iframe-container {
    width: 100%;
    height: calc(100vh - 160px);
    min-height: 500px;
    border-radius: 6px;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
}

/* ── Premium custom scrollbar ── */
.exhibitor-iframe-container::-webkit-scrollbar {
    width: 6px;
}

.exhibitor-iframe-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.exhibitor-iframe-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4c8 0%, #0094a5 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 200, 0.2);
}

.exhibitor-iframe-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00ffe8 0%, #00b8cc 100%);
}

/* Firefox */
}

/* ═══════════════════════════════════════════════════════
   PORTAL SECURE SUBMISSION BUTTON
   ═══════════════════════════════════════════════════════ */
.btn-portal-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #00d4c8 0%, #0094a5 100%);
    color: #0b0f19 !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.8px;
    padding: 14px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 200, 0.2);
    text-decoration: none !important;
}

.btn-portal-action:hover {
    background: linear-gradient(90deg, #00ffe8 0%, #00b4c8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 232, 0.4);
    color: #0b0f19 !important;
}

.btn-portal-action:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 212, 200, 0.2);
}

.teQAzf {
    max-width: 100vw !important;
}