/* from <style> block 1, originally near line 42 */
        #why .row {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
        }

        #why [class*="col-"] {
            display: flex;
            flex-direction: column;
        }

        #why .services-one__single {
            display: flex;
            flex-direction: column;
            flex: 1;
            height: 100%;
        }

        #why .services-one__text {
            flex: 1;
        }

        /* All 5 cards in a single row on large screens */
        @media (min-width: 992px) {
            #why .row [class*="col-"] {
                flex: 0 0 20%;
                max-width: 20%;
            }
        }

/* from <style> block 2, originally near line 176 */
        /* "How it Works?" — scoped padding & 4-step grid that breathes properly.
           The default .event-one__points was built for 2 items (max-width:460px
           + flex space-between). We override to a clean 4-column grid here. */
        #how-it-works {
            padding-top: 70px;
            /* breathing room from sliding marquee above */
            padding-bottom: 120px;
        }

        #how-it-works .event-one__inner {
            padding: 60px 60px 70px;
            /* slight extra bottom for the image */
        }

        #how-it-works .event-one__top {
            gap: 24px;
            padding-bottom: 18px;
            margin-bottom: 10px;
            border-bottom: 1px dashed rgba(255, 255, 255, .10);
        }

        #how-it-works .event-one__points {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px 26px;
            margin-top: 44px;
            margin-bottom: 56px;
        }

        #how-it-works .event-one__points li {
            max-width: none;
            align-items: flex-start;
            gap: 18px;
            padding: 22px 22px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 16px;
            transition: all .35s ease;
            min-height: 100%;
        }

        #how-it-works .event-one__points li:hover {
            background: linear-gradient(135deg, rgba(178, 13, 93, .18) 0%, rgba(74, 10, 180, .18) 100%);
            border-color: rgba(255, 210, 154, .30);
            transform: translateY(-4px);
        }

        #how-it-works .event-one__points li .icon {
            flex: 0 0 60px;
            width: 60px;
            height: 60px;
            max-width: 60px;
        }

        #how-it-works .event-one__points li .icon span {
            font-size: 32px;
        }

        #how-it-works .event-one__points li .content h4 {
            font-size: 18px;
            line-height: 22px;
            margin-bottom: 6px;
        }

        #how-it-works .event-one__points li .content p {
            font-size: 14px;
            line-height: 22px;
            color: rgba(255, 255, 255, .78);
            margin: 0;
        }

        #how-it-works .event-one__img-box {
            margin-top: 14px;
            border-radius: 16px;
            overflow: hidden;
        }

        #how-it-works .event-one__img-box img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 16px;
        }

        /* Responsive breakpoints */
        @media (max-width: 1199.98px) {
            #how-it-works .event-one__points {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            #how-it-works .event-one__img-box img {
                height: 230px;
            }
        }

        @media (max-width: 991.98px) {
            #how-it-works .event-one__inner {
                padding: 32px 24px 40px;
            }

            #how-it-works .event-one__top {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            #how-it-works .event-one__img-box img {
                height: 200px;
            }
        }

        @media (max-width: 575px) {
            #how-it-works .event-one__points {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-top: 24px;
                margin-bottom: 28px;
            }

            #how-it-works .event-one__inner {
                padding: 24px 18px 30px;
            }

            #how-it-works .event-one__img-box img {
                height: 150px;
            }
        }

/* from <style> block 3, originally near line 361 */
        #speakers .team-one__img {
            height: 380px;
        }

        #speakers .team-one__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }

        @media (max-width: 1399.98px) {
            #speakers .team-one__img {
                height: 340px;
            }
        }

        @media (max-width: 1199.98px) {
            #speakers .team-one__img {
                height: 300px;
            }
        }

        @media (max-width: 991.98px) {
            #speakers .team-one__img {
                height: 320px;
            }
        }

        @media (max-width: 767.98px) {
            #speakers .team-one__img {
                height: 280px;
            }
        }

        @media (max-width: 575px) {
            #speakers .team-one__img {
                height: 240px;
            }
        }

/* from <style> block 4, originally near line 450 */
        .ed-date-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .ed-date-card {
            position: relative;
            padding: 22px 20px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .10);
            overflow: hidden;
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
        }

        .ed-date-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s ease;
        }

        .ed-date-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px -10px rgba(178, 13, 93, .3);
            border-color: rgba(255, 210, 154, .3);
        }

        .ed-date-card:hover::before {
            transform: scaleX(1);
        }

        .ed-date-card__date {
            font-size: 22px;
            font-weight: 800;
            color: #ffd29a;
            line-height: 1.1;
            margin-bottom: 8px;
            letter-spacing: -.3px;
        }

        .ed-date-card__label {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .78);
            line-height: 1.4;
            letter-spacing: .2px;
        }

        @media (max-width: 991px) {
            .ed-date-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .ed-date-card {
                padding: 18px 16px;
            }

            .ed-date-card__date {
                font-size: 20px;
            }
        }

        @media (max-width: 575px) {
            .ed-date-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .ed-date-card {
                padding: 16px 14px;
            }

            .ed-date-card__date {
                font-size: 18px;
            }

            .ed-date-card__label {
                font-size: 12px;
            }
        }

        /* Very small phones — 2-up gets cramped, drop to a single column */
        @media (max-width: 400px) {
            .ed-date-grid {
                grid-template-columns: 1fr;
            }
        }

/* from <style> block 5, originally near line 601 */
        #who-home.feature-one {
            padding-top: 100px;
            padding-bottom: 100px;
        }

        /* 4-per-row tight grid */
        #who-home .wcp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 0;
        }

        /* Card */
        .wcp-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 14px;
            padding: 18px 18px;
            border-radius: 14px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .09);
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
            cursor: default;
        }

        .wcp-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px -10px rgba(178, 13, 93, .28);
            border-color: rgba(255, 210, 154, .28);
            background: rgba(255, 255, 255, .07);
        }

        /* Icon circle */
        .wcp-card__icon {
            flex-shrink: 0;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(178, 13, 93, .22) 0%, rgba(74, 10, 180, .22) 100%);
            border: 1px solid rgba(255, 210, 154, .18);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #ffd29a;
            transition: background .3s ease, transform .3s ease;
        }

        .wcp-card:hover .wcp-card__icon {
            background: linear-gradient(135deg, rgba(178, 13, 93, .45) 0%, rgba(74, 10, 180, .45) 100%);
            transform: rotate(-6deg) scale(1.08);
        }

        /* Title */
        .wcp-card__title {
            font-size: 13.5px;
            font-weight: 700;
            color: rgba(255, 255, 255, .88);
            line-height: 1.35;
            letter-spacing: .15px;
            margin: 0;
        }

        @media (max-width: 1199.98px) {
            #who-home .wcp-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 767.98px) {
            #who-home.feature-one {
                padding-top: 48px;
                padding-bottom: 48px;
            }

            #who-home .wcp-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .wcp-card {
                padding: 14px 14px;
                gap: 12px;
            }

            .wcp-card__icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .wcp-card__title {
                font-size: 13px;
            }
        }

        @media (max-width: 400px) {
            #who-home .wcp-grid {
                grid-template-columns: 1fr;
            }
        }

/* from <style> block 6, originally near line 736 */
        #dates.schedule-one {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        #dates .schedule-one__inner {
            padding-top: 0;
            position: relative;
        }

        /* Section title override */
        #dates .section-title {
            position: static !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            text-align: center !important;
            margin: 0 auto 52px !important;
            z-index: auto !important;
            max-width: 720px;
            width: 100%;
            display: block;
        }

        #dates .section-title__tagline-box {
            display: inline-flex !important;
            justify-content: center;
            margin: 0 auto 14px;
        }

        #dates .section-title__title {
            margin: 0;
        }

        /* ── 4-card grid ── */
        .db-date-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* ── Individual card ── */
        .db-date-card {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 36px 24px 28px;
            border-radius: 20px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .10);
            overflow: hidden;
            transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
        }

        .db-date-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(178, 13, 93, .10) 0%, rgba(74, 10, 180, .10) 100%);
            opacity: 0;
            transition: opacity .35s ease;
        }

        .db-date-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px -12px rgba(178, 13, 93, .35);
            border-color: rgba(255, 210, 154, .35);
        }

        .db-date-card:hover::before {
            opacity: 1;
        }

        /* Top accent line */
        .db-date-card__accent {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 3px;
            border-radius: 0 0 6px 6px;
            background: linear-gradient(90deg, #B20D5D 0%, #4A0AB4 100%);
            transition: transform .35s ease;
        }

        .db-date-card:hover .db-date-card__accent {
            transform: translateX(-50%) scaleX(1);
        }

        /* Calendar icon */
        .db-date-card__icon {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(178, 13, 93, .25) 0%, rgba(74, 10, 180, .25) 100%);
            border: 1px solid rgba(255, 210, 154, .20);
            margin-bottom: 18px;
            font-size: 20px;
            color: #ffd29a;
            position: relative;
            z-index: 1;
        }

        /* The big date */
        .db-date-card__date {
            font-size: 28px;
            font-weight: 800;
            color: #ffd29a;
            line-height: 1.1;
            letter-spacing: -.5px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        /* Event title */
        .db-date-card__title {
            font-size: 15px;
            font-weight: 700;
            color: rgba(255, 255, 255, .92);
            line-height: 1.45;
            letter-spacing: .2px;
            position: relative;
            z-index: 1;
        }

        /* Number badge in corner */
        .db-date-card__num {
            position: absolute;
            bottom: 14px;
            right: 16px;
            font-size: 52px;
            font-weight: 900;
            line-height: 1;
            color: rgba(255, 255, 255, .04);
            pointer-events: none;
            user-select: none;
        }

        @media (max-width: 991.98px) {
            #dates.schedule-one {
                padding-top: 48px;
                padding-bottom: 48px;
            }

            .db-date-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .db-date-card__date {
                font-size: 24px;
            }
        }

        @media (max-width: 575px) {
            #dates.schedule-one {
                padding-top: 40px;
                padding-bottom: 40px;
            }

            #dates .section-title {
                margin-bottom: 32px !important;
            }

            .db-date-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .db-date-card {
                padding: 28px 20px 22px;
                flex-direction: row;
                text-align: left;
                gap: 16px;
            }

            .db-date-card__icon {
                margin-bottom: 0;
                flex-shrink: 0;
            }

            .db-date-card__num {
                display: none;
            }

            .db-date-card__accent {
                width: 80%;
            }
        }

/* from <style> block 7, originally near line 991 */
        /* ── Sponsor card carousel ────────────────────────────────── */
        #sponsors .brand-one__inner {
            padding: 12px 0 4px;
        }

        #sponsors .sponsor-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 22px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 140px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
            border: 2px solid transparent;
            transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
            cursor: default;
        }

        #sponsors .sponsor-card:hover {
            transform: translateY(-7px) scale(1.02);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
            border-color: var(--eventflow-base, #B20D5D);
        }

        /* Fixed image area — all logos same 160×80 box */
        #sponsors .sponsor-card__img-wrap {
            width: 160px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        #sponsors .sponsor-card__img-wrap img {
            max-width: 160px;
            max-height: 80px;
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            filter: grayscale(30%);
            transition: filter 0.32s ease, transform 0.32s ease;
        }

        #sponsors .sponsor-card:hover .sponsor-card__img-wrap img {
            filter: grayscale(0%);
            transform: scale(1.07);
        }

        /* Brand name label below logo */
        #sponsors .sponsor-card__name {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #888;
            transition: color 0.32s ease;
            white-space: nowrap;
        }

        #sponsors .sponsor-card:hover .sponsor-card__name {
            color: var(--eventflow-base, #B20D5D);
        }

/* from <style> block 8, originally near line 1129 */
        .db-cta {
            position: relative;
            padding: 80px 0;
            background: linear-gradient(120deg, #2a0a6e 0%, #4A0AB4 40%, #B20D5D 100%);
            color: #fff;
            overflow: hidden;
        }

        /* Subtle radial glow behind the stats */
        .db-cta::after {
            content: "";
            position: absolute;
            top: -40%;
            right: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 210, 154, .08) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Single-column, centered layout */
        .db-cta__row {
            display: flex;
            justify-content: center;
        }

        .db-cta__left {
            max-width: 640px;
            text-align: center;
        }

        /* Title, text, button */
        .db-cta__title {
            font-size: 38px;
            line-height: 1.2;
            font-weight: 800;
            color: #fff;
            margin: 0 0 14px;
        }

        .db-cta__title span {
            color: #ffd29a;
        }

        .db-cta__text {
            color: rgba(255, 255, 255, .88);
            font-size: 16px;
            line-height: 1.7;
            margin: 0 0 28px;
        }

        .db-cta__btn-box {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .db-cta__btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .db-cta__btn--dark {
            background: rgba(0, 0, 0, .45);
            border: 1px solid rgba(255, 255, 255, .15);
        }

        .db-cta__btn--dark:hover {
            background: rgba(0, 0, 0, .7);
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .db-cta__title {
                font-size: 32px;
            }
        }

        @media (max-width: 991.98px) {
            .db-cta {
                padding: 60px 0;
            }
        }

        @media (max-width: 575px) {
            .db-cta {
                padding: 44px 0;
            }

            .db-cta__title {
                font-size: 26px;
            }
        }
