﻿/* ─── ROOT VARIABLES ────────────────────────────────── */
:root {
    --black: #080808;
    --deep: #0f0f0f;
    --surface: #161616;
    --card: #1c1c1c;
    --orange: #F97316;
    --orange-dim: #c45a10;
    --orange-glow: rgba(249,115,22,0.15);
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --white: #2c2c2c;
    --muted: rgba(245,240,232,0.5);
    --border: rgba(201,168,76,0.2);
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: default;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 2px;
}

/* ─── HERO ──────────────────────────────────────────── */
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
    .nav-logo span:first-child {
        font-family: var(--font-display);
        font-size: 1.6rem;
        color: var(--orange);
        letter-spacing: .08em;
    }
    .nav-logo span:last-child {
        font-family: var(--font-serif);
        font-size: 0.7rem;
        color: var(--gold);
        letter-spacing: .25em;
        text-transform: uppercase;
    }

    .hero-tag span {
        font-size: 0.7rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--gold);
    }

    .hero-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 13rem);
    line-height: 0.88;
    letter-spacing: .03em;
    margin-bottom: 1rem;
    animation: fadeUp 0.9s 0.1s ease both;
}

    .hero-title .rise {
        color: var(--orange);
        display: inline-block;
    }

    .hero-title .up {
        color: var(--white);
        display: inline-block;
    }

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-by {
    font-size: 0.75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s 0.25s ease both;
}

.hero-desc {
    max-width: 560px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 3rem;
    animation: fadeUp 0.9s 0.3s ease both;
    margin:0 auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.4s ease both;
    justify-content: center;
}

.btn-primary {
    background: var(--orange);
    color: var(--black);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

    .btn-primary:hover {
        background: var(--gold);
        transform: translateY(-2px);
    }

.btn-outline {
    /* background: transparent;*/
    background: #00000082;
    color: wheat;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(245,240,232,0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s 0.6s ease both;
}

    .hero-scroll span {
        font-size: 0.65rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--muted);
    }

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    border-top: 1px solid var(--border);
    background: rgba(8,8,8,0.9);
    animation: fadeUp 0.9s 0.5s ease both;
}

.stat-item {
    flex: 1;
    padding: 1.2rem 2rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--orange);
    letter-spacing: .04em;
    display: block;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SECTION COMMONS ───────────────────────────────── */
/*section {
    padding: 7rem 4rem;
}*/

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 1rem;
}

    .section-tag::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--orange);
    }

.section-title {
    font-family: var(--font-display);
    font-size: 55px;
    letter-spacing: .04em;
    line-height: 50px;
    margin-bottom: 0px;
    color: #2c2c2c;
}

    .section-title em {
        font-style: normal;
        /* font-family: var(--font-serif); */
        color: var(--gold);
        font-size: 0.65em;
        display: inline-block;
        letter-spacing: .06em;
    }

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--orange);
    margin-bottom: 2rem;
}

/* ─── ABOUT ─────────────────────────────────────────── */
.about {
    background: var(--deep);
    position: relative;
    overflow: hidden;
    padding: 30px 0px;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

    .about-text p strong {
        color: var(--white);
        font-weight: 500;
    }

.about-mission {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

    .about-mission h4 {
        font-size: 0.7rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 0.6rem;
    }

    .about-mission p {
        font-family: var(--font-serif);
        font-size: 1.1rem;
        font-style: italic;
        color: var(--white) !important;
        line-height: 1.5;
        margin: 0 !important;
    }

.about-visual {
    position: relative;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

    .about-card::before {
        content: 'RISE UP';
        position: absolute;
        font-family: var(--font-display);
        font-size: 7rem;
        color: rgba(249,115,22,0.05);
        top: -1rem;
        right: -1rem;
        line-height: 1;
        pointer-events: none;
    }

.vision-title {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.vision-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--white);
    margin-bottom: 2rem;
}

.focus-areas {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted);
}

    .focus-item::before {
        content: '';
        width: 4px;
        height: 4px;
        background: var(--orange);
        border-radius: 50%;
        flex-shrink: 0;
    }

/* ─── HIGHLIGHTS ────────────────────────────────────── */









/* ─── HIGHLIGHTS ────────────────────────────────────── */
.highlights {
    background: var(--black);
    padding: 30px 0px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 1rem;
}

.highlight-card {
    background: var(--black);
    padding: 2rem 1.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

    .highlight-card:hover {
        background: var(--surface);
    }

        .highlight-card:hover .h-icon {
            color: var(--orange);
        }

.h-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
    color: var(--gold);
}

.h-title {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--white);
    line-height: 1.4;
}



/* ─── EXHIBITORS ────────────────────────────────────── */
.exhibitors {
    background: var(--black);
    padding:30px 0px;
}

.exhibit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
}
.who-can {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
    grid-template-columns: repeat(2,1fr);
}

.who-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s;
}

    .who-item:hover {
        border-color: var(--orange);
        color: var(--white);
    }

    .who-item::before {
        content: '→';
        color: var(--orange);
        font-size: 0.8rem;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.benefit-item {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.2rem;
    border-radius: 2px;
}

    .benefit-item h4 {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--orange);
        letter-spacing: .05em;
        margin-bottom: 0.3rem;
    }

    .benefit-item p {
        font-size: 0.78rem;
        color: var(--muted);
        line-height: 1.5;
    }

.stall-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
}

.stall-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--muted);
    transition: all 0.3s;
}

    .stall-tag:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

/* ─── SPONSORSHIP ───────────────────────────────────── */
.sponsorship {
    background: var(--deep);
    position: relative;
    overflow: hidden;
    padding:30px 0px;
}

.sponsorship-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.sponsor-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.2rem 1rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

    .tier-card.featured {
        border-color: var(--orange);
        background: var(--surface);
    }

        .tier-card.featured::before {
            content: 'PREMIUM';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: var(--black);
            font-size: 0.55rem;
            letter-spacing: .15em;
            padding: 2px 8px;
            font-weight: 700;
        }

    .tier-card:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.tier-name {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
}

.sponsor-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.sp-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--muted);
}

    .sp-benefit::before {
        content: '✦';
        color: var(--gold);
        font-size: 0.7rem;
        padding-top: 3px;
        flex-shrink: 0;
    }

/* ─── SPEAKERS ──────────────────────────────────────── */
.speakers {
    background: var(--black);
    padding:30px 0px;
}

.speakers-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0;
}

.domain-tag {
    font-size: 0.78rem;
    padding: 8px 16px;
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 2px;
    transition: all 0.3s;
}

    .domain-tag:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: var(--black);
    }

.speaker-cta {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

    .speaker-cta h3 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-style: italic;
        color: var(--white);
    }

    .speaker-cta p {
        font-size: 0.88rem;
        color: var(--muted);
        margin-top: 0.4rem;
    }

/* ─── FAQ ───────────────────────────────────────────── */
.faq {
    background: #fdf5ee;
    padding: 30px 0px;
    background-image: url('../img/bg/faq.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 2.5rem;
}

.faq-item {
    background: var(--deep);
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

    .faq-item:hover {
        background: var(--surface);
    }

.faq-q {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom:0;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

    .faq-q::after {
        content: '+';
        color: var(--orange);
        font-size: 1.2rem;
        flex-shrink: 0;
        transition: transform 0.3s;
    }

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ─── ORGANISERS ────────────────────────────────────── */
.organisers {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding:30px 0px;
}

.org-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.org-brand {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: .06em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1rem;
}

    .org-brand span {
        color: var(--orange);
    }

.org-tagline {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.org-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
}

.core-focus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 2rem;
}

.cf-item {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    border-left: 2px solid var(--orange);
    transition: color 0.3s;
}

    .cf-item:hover {
        color: var(--white);
    }

/* ─── CONTACT ───────────────────────────────────────── */
.contact {
    background: var(--deep);
    padding:30px 0px;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

    .c-item:hover {
        border-color: var(--orange);
    }

.c-icon {
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .form-field label {
        font-size: 0.7rem;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .form-field input, .form-field select, .form-field textarea {
        background: var(--surface);
        border: 1px solid var(--border);
        color: var(--white);
        padding: 0.9rem 1rem;
        font-family: var(--font-body);
        font-size: 0.9rem;
        border-radius: 2px;
        outline: none;
        transition: border-color 0.3s;
    }

        .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
            border-color: var(--orange);
        }

    .form-field textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-field select option {
        background: var(--surface);
    }

/* ─── ORANGE BAND SECTION ───────────────────────────── */
.orange-band {
    background: #000000;
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.ob-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #ffffff;
    letter-spacing: .04em;
}

.ob-sub {
    font-size: 0.88rem;
    color: rgb(255 255 255 / 70%);
    margin-top: 0.3rem;
}

.btn-dark {
    background: #fff;
    color: #000000;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

    .btn-dark:hover {
        background: #FF9933;
        color: #fff;
        /*border: 2px solid;*/
    }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
    nav {
        padding: 0;
    }
    .nav-links {
        display: none;
    }

    section {
        padding: 0;
    }/**mycss19**/
    .hero {
        padding: 0rem 2rem 1rem;
    }

    .about-inner, .exhibit-inner, .sponsorship-inner, .org-inner, .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats-bar {
        position: relative;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-tiers {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .orange-band {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

/*--------------about-----------------------*/

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #fdf5ee;
    --orange: #d4622a;
    --orange-light: #e8845a;
    --dark: #1e1e2e;
    --mid: #3a3a4a;
    --light-border: #e8d5c4;
    --card-bg: #fff9f4;
}

body {
    font-family: 'DM Sans', sans-serif;
    
    overflow-x: hidden;
}

/* ── HERO SECTION ─────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*min-height: 100vh;*/
    position: relative;
    overflow: hidden;
    background: var(--cream);
    color: var(--dark);
}

/* left panel */
.hero__left {
    padding: 0px 20px 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    z-index: 2;
    position: relative;
    margin-right: -130px;
    margin-top: 40px;
    margin-bottom: 40px;
}

   /* .hero__left::after {
        content: '';
        position: absolute;
        right: -80px;
        top: 10%;
        width: 80px;
        height: 80%;
        background: var(--cream);
        border-radius:0;
        z-index: 3;
    }*/

.about-label {
    font-size: 11px;
    letter-spacing: 0.35em;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.title-rise {
    color: var(--dark);
}

.title-up {
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

    .title-up .arrow {
        display: inline-block;
        width: 0.55em;
        height: 0.7em;
        position: relative;
        margin-left: 2px;
    }

        .title-up .arrow::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 3px;
            height: 80%;
            background: var(--orange);
            border-radius: 2px;
        }

        .title-up .arrow::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-bottom: 12px solid var(--orange);
        }

.hero__byline {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 300;
    color: var(--mid);
    margin-top: 6px;
    margin-bottom: 15px;
}

.hero__desc {
    font-size: 14px;
    line-height: 20px;
    color: #555;
    /* max-width: 530px; */
    margin-bottom: 10px;
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--orange);
    margin-bottom: 15px;
    border-radius: 2px;
}

/* bridge box */
.bridge-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--light-border);
    border-radius: 16px;
    padding: 24px 28px;
    max-width: 480px;
}

.bridge-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bridge-icon svg {
        width: 30px;
        height: 30px;
        fill: none;
        stroke: white;
        stroke-width: 2;
    }

.bridge-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--mid);
}

    .bridge-text strong {
        color: var(--dark);
        font-weight: 600;
        font-size: 15.5px;
    }

    .bridge-text span.accent {
        color: var(--orange);
        font-weight: 600;
    }

/* right panel – city image */
.hero__right {
    position: relative;
    overflow: hidden;
}

    .hero__right::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--cream) 0%, transparent 35%);
        z-index: 1;
        pointer-events: none;
    }

    .hero__right img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* curved overlay on the image */
.curve-mask {
    position: absolute;
    left: -2px;
    top: 0;
    height: 100%;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}

    .curve-mask svg {
        width: 100%;
        height: 100%;
    }

/* outer arc border */
.arc-border {
    position: absolute;
    inset: 5px;
    border: 2px solid rgba(212,98,42,0.3);
    border-radius: 0 50% 50% 0 / 0 40% 40% 0;
    z-index: 1;
    pointer-events: none;
}

/* ── AUDIENCE GRID ───────────────────────────────── */
.audience {
    background: var(--cream);
    padding: 20px 60px 10px;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.audience__grid--bottom {
    grid-template-columns: repeat(4, 1fr);
    max-width: calc(4 * (1fr) + 3*16px);
}

.audience-card {
    background: white;
    border: 1.5px solid var(--light-border);
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .audience-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(212,98,42,0.12);
        border-color: var(--orange-light);
    }

    .audience-card svg {
        width: 48px;
        height: 48px;
        stroke: var(--orange);
        fill: none;
        stroke-width: 1.5;
        margin-bottom: 12px;
    }

.audience-card__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
}

/* ── FOOTER BAR ───────────────────────────────────── */
.footer-bar {
    background: white;
    border-top: 1.5px solid var(--light-border);
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    position: relative;
    transition: background 0.2s;
}

    .footer-item:hover {
        background: var(--cream);
    }

    .footer-item + .footer-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--light-border);
    }

.footer-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer-icon svg {
        width: 20px;
        height: 20px;
        stroke: white;
        fill: none;
        stroke-width: 1.8;
    }

.footer-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.3;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__left {
        padding: 50px 40px;
    }


        .hero__left::after {
            display: none;
        }

    .hero__right {
        height: 420px;
    }

    .curve-mask, .arc-border {
        display: none;
    }

    .audience {
        padding: 40px 40px 40px;
    }

    .audience__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .audience__grid--bottom {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__left {
        margin-right: 0px;
    }

    @media (max-width: 768px) {
        .hero__left {
            padding: 0px 0px;
        }

        .bridge-box {
            flex-direction: column;
            gap: 14px;
        }

        .audience {
            padding: 32px 24px;
        }

        .audience__grid,
        .audience__grid--bottom {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .footer-bar {
            flex-wrap: wrap;
        }

        .footer-item {
            flex: 1 1 calc(50% - 0px);
            border-top: 1px solid var(--light-border);
        }

            .footer-item + .footer-item::before {
                display: none;
            }
    }

    @media (max-width: 480px) {
        .audience__grid,
        .audience__grid--bottom {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-item {
            flex: 1 1 100%;
        }

        .hero__right {
            height: 280px;
            display: none;
        }
    }

    /*----------sheddfgsdg------------------------------------*/
    /* =========================
   SECTION
========================= */

    .schedule-section {
        position: relative;
        /* min-height: 100vh; */
        padding: 30px 15px;
        overflow: hidden;
    }

    /* =========================
   DYNAMIC BACKGROUND
========================= */

    .bg-layer {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: 0.7s ease;
        z-index: 1;
        transform: scale(1.05);
    }

        .bg-layer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgb(10 10 25 / 32%);
            /* backdrop-filter: blur(4px); */
        }

        /* Gradient Effect */

        .bg-layer::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(255,60,106,0.20), transparent 35%), radial-gradient(circle at bottom right, rgba(0,212,255,0.16), transparent 35%);
        }

    /* =========================
   CONTAINER
========================= */

    .container {
        width: 100%;
        max-width: 1200px;
        margin: auto;
        position: relative;
        z-index: 5;
    }
    /*=====================================
VERTICAL TEXT
=====================================*/

    .vertical-region {
        position: absolute;
        left: 25px;
        top: 45%;
        transform: translateY(-50%) rotate(180deg);
        writing-mode: vertical-rl;
        font-size: 35px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 10px;
        color: rgba(255,255,255,0.05);
        z-index: 2;
        pointer-events: none;
        transition: 0.4s ease;
    }

    /* =========================
   HEADER
========================= */

    .section-header {
        text-align: center;
    }


        .section-header h2 {
            color: #fff !important;
            padding-bottom: 20px;
        }

        .section-header .section-tag {
            color: #fff;
        }

    /* =========================
   TABS
========================= */

    .day-tabs {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        overflow: hidden;
        border-radius: 22px 22px 0 0;
    }

    .day-tab {
        position: relative;
        background: rgba(255,255,255,0.07);
        padding: 0px 15px;
        text-align: center;
        cursor: pointer;
        transition: 0.4s;
        border-right: 1px solid rgba(255,255,255,0.06);
        overflow: hidden;
    }

        .day-tab:last-child {
            border-right: none;
        }

        /* Shine Effect */

        .day-tab::before {
            content: '';
            position: absolute;
            top: -120%;
            left: -120%;
            width: 220%;
            height: 220%;
            /*background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.12), transparent );*/
            transform: rotate(25deg);
            transition: 0.8s;
        }

        .day-tab:hover::before {
            top: 100%;
            left: 100%;
        }

        /* Hover */

        .day-tab:hover {
            background: rgba(255,255,255,0.12);
        }

        /* Active */

        .day-tab.active {
            background: var(--gold);
        }

            .day-tab.active::after {
                content: '';
                position: absolute;
                left: 50%;
                bottom: 0;
                transform: translateX(-50%);
                width: 60%;
                height: 4px;
                border-radius: 50px;
                background: #fff;
            }

        /* Tab Text */

        .day-tab h3 {
            font-size: 25px;
            font-weight: 600;
            margin-bottom: 0px;
            color: #fff;
            font-family: "Lora", serif;
            margin-top: 0px;
        }

            .day-tab h3 span {
                color: var(--gold);
            }

        .day-tab.active h3 span {
            color: #fff;
        }

        .day-tab p {
            font-size: 14px;
            color: #ffffff;
            padding: 0px !important;
            margin-bottom: 10px;
            line-height: 10px;
        }

    /* =========================
   CONTENT BOX
========================= */

    .schedule-content {
        background: rgba(255,255,255,0.06);
        backdrop-filter: blur(2px);
        border-radius: 0 0 22px 22px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.08);
    }

    /* =========================
   DAY CONTENT
========================= */

    .schedule-day {
        display: none;
        animation: fadeUp .5s ease;
    }

        .schedule-day.active {
            display: block;
        }

    @keyframes fadeUp {

        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* =========================
   ITEM
========================= */

    .schedule-item {
        position: relative;
        display: grid;
        grid-template-columns: 220px 1fr;
        align-items: center;
        gap: 35px;
        padding: 5px 35px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: 0.4s;
    }

        .schedule-item:last-child {
            border-bottom: none;
        }

        /* Hover */

        .schedule-item:hover {
            background: rgba(255,255,255,0.08);
            transform: translateX(8px);
        }

        /* Left Border */

        .schedule-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: var(--gold);
            opacity: 0;
            transition: 0.4s;
        }

        .schedule-item:hover::before {
            opacity: 1;
        }

    /* =========================
   TIME
========================= */

    .time {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: max-content;
        padding: 10px 24px;
        border-radius: 60px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.08);
        font-size: 14px;
        font-weight: 500;
        transition: 0.4s;
        color: #fff;
    }

    .schedule-item:hover .time {
        background: var(--gold);
        border-color: transparent;
    }

    /* =========================
   CONTENT
========================= */

    .content h3 {
        transition: 0.4s;
        color: #fff;
        font-size: 22px;
        line-height: 22px;
        font-weight: 400;
        margin-bottom: 5px;
        padding-top: 0px;
        font-family: "Playfair Display", serif;
    }

    .content p {
        color: #e9dfdf;
        line-height: 14px;
        font-size: 14px;
        max-width: 700px;
        margin-bottom: 5px;
        font-family: "Poppins", sans-serif;
        padding-top: 5px;
    }

    /* Hover */

    .schedule-item:hover .content h3 {
        color: #ffda75;
    }

    /* =========================
   RESPONSIVE
========================= */

    @media(max-width:991px) {

        .section-header h2 {
            font-size: 44px;
        }

        .schedule-item {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 22px;
        }

        .time {
            margin: auto;
        }

        .content h3 {
            font-size: 24px;
        }
    }

    @media(max-width:767px) {

        .schedule-section {
            padding: 70px 12px;
        }

        .section-header {
            margin-bottom: 40px;
        }

            .section-header h2 {
                font-size: 34px;
            }

            .section-header p {
                font-size: 14px;
            }

        .day-tabs {
            grid-template-columns: 1fr;
        }

        .day-tab {
            padding: 22px 10px;
        }

            .day-tab h3 {
                font-size: 26px;
            }

        .schedule-item {
            padding: 25px 18px;
        }

        .content h3 {
            font-size: 21px;
        }

        .content p {
            font-size: 14px;
            line-height: 1.7;
        }
    }

    @media(max-width:480px) {

        .section-header h2 {
            font-size: 28px;
        }

        .content h3 {
            font-size: 18px;
        }

        .time {
            font-size: 13px;
            padding: 12px 18px;
        }
    }

   