:root {
    --red: #C8102E;
    --red-dark: #A00D25;
    --red-light: #F5E6E9;
    --red-mid: #FBECEE;
    --charcoal: #1A1A1A;
    --body: #3D3D3D;
    --muted: #7A7A7A;
    --border: #E5E5E5;
    --bg: #FFFFFF;
    --bg-off: #F9F7F7;
    --bg-section: #F4F1F1;
    --gold: #B8862A;
    --gold-light: #F5EDD8;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x:auto;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header.header {
    padding: 20px 0;
    position: relative;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-badge {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 15px;
    color: white;
}

.nav-logo-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.nav-logo-sub {
    font-size: 9.5px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
    .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 15px;
        font-weight: 300;
        transition: color .18s;
        line-height: 14px;
        font-family: "Poppins", sans-serif;
    }
    .nav-links a:hover {
            color: var(--charcoal);
        }

.nav-cta {
    background: var(--red);
    color: white !important;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s;
    box-shadow: 0 2px 12px rgba(200,16,46,.25);
}

    .nav-cta:hover {
        background: var(--red-dark) !important;
    }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: #ce2231;
    height: 45px;
    width: 45px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffff;
        border-radius: 2px;
    }

/* HERO */
.hero {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 190px;
}
.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 46%;
    background: linear-gradient(155deg, var(--red-mid) 0%, var(--red-light) 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,134,42,.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
}
.hero-content .hero-left {
    width: 70%;
}
.hero-content .hero-right {
    width: 30%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-light);
    border: 1.5px solid rgba(200,16,46,.2);
    color: var(--red);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 10.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
}

    .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
        animation: pulse 2s infinite;
        flex-shrink: 0;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(1.5)
    }
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    font-weight: 900;
    line-height: 65px;
    color: #1c1b17;
    margin-bottom: 20px;
}
    .hero-title em {
        font-style: italic;
        color: var(--red);
    }

.hero-tagline {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
}

    .hero-tagline span {
        flex: 0 0 22px;
        height: 1px;
        background: var(--gold);
        opacity: .5;
        display: block;
    }
.hero-subtitle {
    font-size: 20px;
    line-height: 30px;
    color: #1c1b17;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 36px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--body);
    font-weight: 500;
}
    .hero-meta-item .icon {
        width: 40px;
        height: 40px;
        border-radius: 7px;
        background: #c8102e;
        border: 1px solid rgba(200,16,46,.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
    }
.icon img {
    height: 25px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(152deg) brightness(103%) contrast(103%);
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(200,16,46,.4);
    }

.btn-outline {
    background: white;
    color: var(--charcoal);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: border-color .18s, transform .15s;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: var(--charcoal);
        transform: translateY(-2px);
    }

/* COUNTDOWN */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.countdown-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
    border-top: 5px solid #c8102e;
}
.countdown-label {
    font-size: 9.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
    font-weight: 700;
}

.countdown-grid {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.countdown-num {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #c8102e;
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 70px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.countdown-unit-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.countdown-sep {
    font-size: 30px;
    color: var(--red);
    align-self: flex-start;
    padding-top: 10px;
    font-weight: 700;
    line-height: 1;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

.stat-item {
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
}

.stat-desc {
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 700;
}

/* SHARED SECTION */
.sw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 48px;
}

.section-label {
    font-size: 10.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 18px;
}

    .section-title em {
        font-style: italic;
        color: var(--red);
    }

.section-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 580px;
}

.divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.divider-gem {
    font-size: 13px;
    color: var(--red);
    opacity: .45;
}

/* WHY ATTEND */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 17px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--border);
    transition: border-color .2s, box-shadow .2s, transform .15s;
}

    .benefit-item:hover {
        border-color: rgba(200,16,46,.25);
        box-shadow: 0 4px 18px rgba(200,16,46,.08);
        transform: translateX(4px);
    }

.benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--red-light);
    border: 1px solid rgba(200,16,46,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.benefit-text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
}

    .benefit-text strong {
        color: var(--charcoal);
        display: block;
        margin-bottom: 2px;
        font-size: 13.5px;
        font-weight: 600;
    }

.image-frame {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--gold-light) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 56px rgba(0,0,0,.09);
}

.image-frame-inner {
    text-align: center;
    padding: 36px;
}

    .image-frame-inner .big-icon {
        font-size: 72px;
        display: block;
        margin-bottom: 14px;
    }

    .image-frame-inner p {
        font-size: 15px;
        font-weight: 600;
        color: var(--charcoal);
    }

    .image-frame-inner small {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-top: 6px;
    }

.fdot {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

    .fdot.tl {
        top: -28px;
        left: -28px;
        background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 70%);
    }

    .fdot.br {
        bottom: -28px;
        right: -28px;
        background: radial-gradient(circle, rgba(184,134,42,.12) 0%, transparent 70%);
    }

/* SPEAKERS */
.bg-section {
    background: var(--bg-section);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.speaker-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

    .speaker-card:hover {
        border-color: rgba(200,16,46,.3);
        box-shadow: 0 8px 32px rgba(200,16,46,.1);
        transform: translateY(-4px);
    }

.speaker-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: 2px solid var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.speaker-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.speaker-role {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
    font-weight: 700;
}

.speaker-bio {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--muted);
}

/* HIGHLIGHTS */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    border: 1px solid var(--border);
    padding: 26px 18px;
    border-radius: 12px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

    .highlight-card:hover {
        border-color: rgba(200,16,46,.25);
        box-shadow: 0 6px 28px rgba(200,16,46,.08);
        transform: translateY(-4px);
    }

.highlight-icon {
    font-size: 26px;
    margin-bottom: 12px;
    display: block;
}

.highlight-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.highlight-desc {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* EXPERIENCES */
.experience-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.exp-chip {
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--body);
    font-weight: 500;
    transition: border-color .18s, background .18s;
}

    .exp-chip:hover {
        border-color: var(--red);
        background: var(--red-mid);
    }

    .exp-chip .ci {
        font-size: 17px;
    }

/* CTA BAND */
.cta-band {
    padding: 0 48px 80px;
}

.cta-inner {
    background: var(--red);
    border-radius: 20px;
    padding: 60px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(200,16,46,.3);
}

    .cta-inner::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        pointer-events: none;
    }

    .cta-inner::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(0,0,0,.09);
        pointer-events: none;
    }

.cta-elabel {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    line-height: 1.15;
}

.cta-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.75);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--red);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .18s, transform .15s;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    display: block;
    text-align: center;
}

    .btn-white:hover {
        background: var(--bg-off);
        transform: translateY(-2px);
    }

.btn-ghost {
    background: rgba(255,255,255,.12);
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: background .18s, border-color .18s, transform .15s;
    display: block;
    text-align: center;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.22);
        border-color: rgba(255,255,255,.6);
        transform: translateY(-2px);
    }

/* FOOTER */
.footer-wrap {
    border-top: 1px solid var(--border);
    background: var(--bg-off);
    padding: 36px 48px;
}

footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--muted);
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 13px;
    color: white;
}
.footer-tagline {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    font-size: 13.5px;
    font-style: italic;
}

.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}
.header.fixed-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 0 20px 0 #0000001a;
    background: #fff;
}
.nav-links a:hover {
    color: #d12031;
}
/* Bottom Wave */
.bottom-wave {
    position: absolute;
    bottom: -31px;
    left: 0;
    width: 100%;
    transform: rotatey(180deg);
}
.herosectionbanner::before, .herosectionbanner::after {
    content: "";
    background-image: url('../img/bannerbottomdsgn.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    width: 100%;
    height: 220px;
    left: 0;
    bottom: 6px;
}

.herosectionbanner::after {
    background-image: url('../img/bannertop.png');
    bottom: auto;
    top: 0;
    height: 60px;
}
.commonbtndsgn a {
    font-size: 15px;
    line-height: 45px;
    padding: 0 20px;
    text-decoration: none;
    background: transparent;
    color: #c8102e;
    border: 1px solid;
    border-radius: 10px;
    text-transform: capitalize;
    position: relative;
}
/*    .commonbtndsgn a::before {
        content: "";
        background-image: url('../img/arrow.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        height: 40px;
        width: 40px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }*/
    .commonbtndsgn a:hover {
        background: #c8102e;
        color: #fff;
    }
a.nav-logo {
    display: inline-block;
    max-width: 260px;
}
    a.nav-logo img {
        width: 100%;
    }
.hero-subtitle span {
    color: #c8102e;
    font-weight: 600;
}
    /*font-family: "Poppins", sans-serif;     font-family: "Oswald", sans-serif; #d12031, #1c1b17*/
html {
    height: 3000px;
}