:root {
    /*=== Header ===*/
    --HeaderBackgroundColor: #ffffff00;
    --HeaderOnScrollBackgroundColor: #FFFFFF;
    --editionBatchColor: linear-gradient(90deg, #642fdd, #3d75e7, #25cfed);
    --editionBatchTextColor: #ffffff;
    --headTextColor: #000000;

    /*=== Hero ===*/
    --backgroundHero: radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(0, 210, 211, 0.15) 0%, transparent 50%);
    --presentsTextColor: #000000;
    --mottoTextColor: #000000;
    --dateAndTimeBackgroundColor: #ffffff;
    --DateAndPlaceIconColor: #000000;
    --DateAndPlaceTextColor: #000000;
    --registerButton: #000000;
    --registerButtonHover: #17529b;
    --registerButtonTextColor: #ffffff;

    /*=== Partners ===*/
    --partnersBackground: rgba(255, 255, 255, 0.7);
    --partnersBoxColor: rgba(255, 255, 255, 0.9);
    --partnersTextColor: #000000;

    /*=== Overview ===*/
    --OverviewTextColor: #000000;
    --OverviewBoxTextColor: #000000;
    --OverviewBoxHeadTextColor: #1fc9ad;
    --OverviewBoxColor: rgba(255, 255, 255, 0.9);
    --overviewBackgroundColor: #ffffff00;

    /*=== Key Focus ===*/
    --backgroundFocus: linear-gradient(135deg, rgba(248, 249, 255, .9), rgba(240, 242, 255, .9));
    --focusBoxColor: rgba(255, 255, 255, 0.9);
    --focusTextColor: #17529b;
    --onHoverFocusTextColor: #000000;
    --onHoverFocusIconColour: #1fc9ad;

    /*=== Table ===*/
    --TableBackground: rgba(255, 255, 255, 0.9);
    --tableHeaderColor: linear-gradient(135deg, #0c13db, #1fc9ad);
    --tableHeadTextColor: #ffffff;
    --tableRowColor: #ffffff;
    --tableTimeColor: #17529b;
    --tableProgramTitleTextColor: #000000;
    --tableProgramSubTitleTextColor: #0069ff;
    --videoLinktextColor: #475569;

    /*=== Speakers ===*/
    --speakersBackground: #ffffff;
    --speakerCardColor: #ffffff;
    --speakerNameTextColour: #17529b;
    --speakerRoleTextColor: #475569;

    /*=== Contacts ===*/
    --contactBackground: #17529b;
    --contactCardColor: #17529b;
    --contactTitleColor: #ffffff;
    --contactNameColor: #ffffff;
    --contactRoleColor: #2ed0d4;
    --contactInfoColor: #ffffff;
    --contactIconColor: #1fc9ad;

    /*=== Universal ===*/
    --transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
    --shadow-hover: 0 0 30px rgba(0, 168, 255, 0.5), 0 10px 40px rgba(0, 168, 255, 0.3);
    /* --gradient-Animation: linear-gradient(135deg, #a279ff, #ffffff); */
    --ContentHeadTextColor: linear-gradient(135deg, #2ed0d4, #53ec6e);
    --heroDividerGradient: linear-gradient(90deg, #6c5ce7 0%, #642fdd 28%, #4187e6 62%, #25cfed 100%);
    --heroToWhiteDivider: linear-gradient(90deg, rgba(0, 168, 255, 0.55) 0%, rgba(108, 92, 231, 0.55) 38%, rgba(0, 210, 211, 0.55) 72%, #ffffff 100%);
    --sectionDividerGradient: linear-gradient(90deg, #642fdd 0%, #4187e6 45%, #25cfed 75%, #53ec6e 100%);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--backgroundTwo);
    color: var(--DefaultextColor);
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch; 
}

/* ========== Header ========== */
#siteHeader {
    padding: 12px;
/* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--HeaderBackgroundColor);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.1);
}

#siteHeader::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--backgroundHero);
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transform: translateY(2px) scaleX(0);
    transform-origin: left center;
    filter: blur(7px);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

#siteHeader.scrolled::after {
    opacity: 0.98;
    transform: translateY(0) scaleX(1);
    filter: blur(0);
    box-shadow: 0 0 10px rgba(65, 135, 230, 0.45), 0 0 24px rgba(37, 207, 237, 0.35), 0 0 34px rgba(100, 47, 221, 0.25);
    animation: dividerSweep 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

#siteHeader.scrolled {
    background: var(--HeaderOnScrollBackgroundColor);
    box-shadow: 0 10px 40px rgba(0, 168, 255, 0.15);
    padding: 10px 0;
}



.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Edition Button */
.edition-arc-pro h5 {
    position: relative;
    background: var(--editionBatchColor);
    color: var(--editionBatchTextColor);
    font-size: 17px;
    font-weight: 800;
    padding: 12px 50px;
    border-radius: 50px;
    overflow: hidden;
}

.edition-arc-pro h5::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, #ffffff, transparent) top / 40px 2px no-repeat,
        linear-gradient(180deg, transparent, #ffffff, transparent) right / 2px 40px no-repeat,
        linear-gradient(270deg, transparent, #ffffff, transparent) bottom / 40px 2px no-repeat,
        linear-gradient(0deg, transparent, #ffffff, transparent) left / 2px 40px no-repeat;
    animation: borderTrip 4s linear infinite;
}

@keyframes borderTrip {
    0% {
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
    }
    50% {
        background-position: 100% 0%, 100% 100%, 0% 100%, 0% 0%;
    }
    100% {
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
    }
}

/* Burger Menu */
.burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 255, 0.2);
    min-height: 44px; /* Minimum touch target */
    min-width: 44px;
    justify-content: center;
}

.burger span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: left center;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg);
    background: #ffffff;
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg);
    background: #ffffff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 250px;
    height: 350px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    gap: 10px;
    display: none; 
    z-index: 1000;
}

nav.open {
    display: flex;
    right: 0;
}

nav a {
    text-decoration: none;
    color: var(--headTextColor);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 20px;
    margin-bottom: 5px;
    transition: var(--transition);
    position: relative;
    min-height: 44px; 
    display: flex;
    align-items: center;
}

nav a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #642fdd 0%, #4187e6 55%, #25cfed 100%);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

nav a:hover::after,
nav a:focus-visible::after,
nav a:active::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Hero section */
.hero_section {
    width: 100%;
    padding: 20px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--backgroundHero);
    animation: hologramShift 2s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes hologramShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(1deg); }
}



.hero-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-sponsors2 {
    color:var(--presentsTextColor);
    text-align: center;
    margin-bottom: 40px;
    animation: glitchAppear 1s ease-out;
}

.logo-sponsors2 img {
     width: 150px;
    filter: drop-shadow(0 10px 30px rgba(0, 168, 255, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.logo-sponsors2 p{
    color:black;
    font-size:17px;
    font-weight:600;
}

.logo-moto-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 100%;
}

.logo-wrap {
    display: flex;
    justify-content: flex-end;
}

.logo-wrap img {
    max-width: 150px;
    height: auto;
}

/* Divider */
.divider {
width: 8px;
    height: 80px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
}

/* Motto */
.moto-wrap {
    
    font-size: 12px;
    font-weight: 1000;
    white-space: normal;
    text-align: left;
    color: var(--mottoTextColor);
}

.date, .datereg {
    text-align: center;
    margin: 40px 0;
}

.date p {
    margin: 20px 0;
    width: 81%;
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    background: var(--dateAndTimeBackgroundColor);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    color: var(--DateAndPlaceTextColor);
    border: 1px solid rgba(0, 168, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 168, 255, 0.15);
    animation: slideUp 1s ease-out 0.5s both;
}


.date p i {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    box-shadow: 0 6px 14px rgba(65, 135, 230, 0.25);

}

.date a, .datereg a {
    width: 90%;
    max-width: 300px;
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 20px;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
 background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    color: var(--registerButtonTextColor);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    min-height: 44px; 
    will-change: transform;
    backface-visibility: hidden;
}

.datereg a:hover {
    background: linear-gradient(135deg, #17529b 0%, #1f6ec5 60%, #25cfed 100%);
}

/* ========== Partners Section ========== */
.partner-section {
    margin-top: 0px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
        border-radius: 20px;
    background: var(--partnersBackground);
}

.partner-section::before {
    content: none;
    animation: none;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.partnerwrap-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 600px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000000 20%,
        #000000 80%,
        transparent
    );
}

.partnerwrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    animation: scrollVertical 40s linear infinite;
}

.partnerwrap.scrollable {
    animation: scrollVertical 40s linear infinite;
}

.partnerwrap.paused {
    animation-play-state: paused;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 10px));
    }
}

/* faster/slower speeds */
.partnerwrap.fast {
    animation-duration: 30s;
}

.partnerwrap.slow {
    animation-duration: 50s;
}

.partner-box {
    color: var(--partnersTextColor);
    padding: 9px;
    background: var(--partnersBoxColor);
    border-radius: 5px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    min-height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    will-change: transform;
    backface-visibility: hidden;
font-size:15px;
}

.partner-text-only {
    min-height: 120px;
    justify-content: center;
    border: 1px dashed rgba(100, 47, 221, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #f4f1ff 55%, #eaf6ff 100%);
}

.partner-text-only .support-header {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(65, 135, 230, 0.28);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #4187e6;
    text-transform: uppercase;
}

.partner-text-only .support-subtext {
    font-size: 1.02rem;
    font-weight: 600;
    color: #642fdd;
}

.partner-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Remove original scrollbar styles */
.partnerwrap::-webkit-scrollbar {
    display: none;
}

.partnerwrap {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partner-box img {
    padding: 12px;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
    backface-visibility: hidden;

}

.partner-box:hover img {
    transform: scale(1.03);
}


/* Do not touch anything above this */

/* ========== About Section ========== */
#about_US {
    background: linear-gradient(180deg, #f6f2ff 0%, #f2f8ff 18%, #ffffff 52%);
    padding: 0px 20px;
    margin-top: 0;
        margin-bottom: 40px;
    position: relative;
}

.center-text {
    padding: 40px 0;
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-text::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    border-radius: 3px;
    filter: blur(3px);
}

.about_wrap {
    max-width: 100%;
    margin: 20px auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--OverviewTextColor);
}

.about_wrap p {
    text-align: justify;
    font-size: 17px;
    margin-bottom: 15px;
}

/* ========== About Cards ========== */
.card-overview {
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card-overview-content {
    width: 100%;
    background: var(--OverviewBoxColor);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    border: 1px solid rgba(0, 168, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-box {
    position: relative;
    z-index: 1;
    text-align: left;
}

.about-box p {
    text-align: justify;
    font-size: 16px;
    color: #1a1b20;
    line-height: 1.6;
}

.about-box h4 {
    color: #4187e6;
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0;
    border-bottom: none;
    padding-bottom: 10px;
    border-bottom: 2px solid #4187e6;
}

.overview-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    box-shadow: 0 6px 14px rgba(65, 135, 230, 0.25);
}

/* Overview Canvas for Mobile */
.overview-canvas-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 250px;
    border: 1px solid rgba(65, 135, 230, 0.35);
    background: radial-gradient(circle at 14% 20%, rgba(100, 47, 221, 0.22) 0%, rgba(100, 47, 221, 0) 48%),
                radial-gradient(circle at 86% 14%, rgba(65, 135, 230, 0.24) 0%, rgba(65, 135, 230, 0) 46%),
                linear-gradient(135deg, #f4f0ff 0%, #eaf3ff 60%, #e8f9ff 100%);
    box-shadow: inset 0 0 20px rgba(100, 47, 221, 0.1), 0 14px 30px rgba(65, 135, 230, 0.15);
    margin-bottom: 20px;
}

.overview-canvas-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.overview-canvas-glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.2) 0%, rgba(37, 207, 237, 0.12) 40%, rgba(83, 236, 110, 0.12) 100%);
}


/* ========== Focus Areas ========== */
.key-focus {
    margin: 0 auto;
    padding: 70px 0;
    background: linear-gradient(90deg, #effaff, #d2edfc, #ebe9fb);
    position: relative;
    overflow: hidden;
}

.key-focus::before {
    content: none;
}


@keyframes slideTriangles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.centertext-key-focus {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    position: relative;
}

.mbkey-focus {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    margin: 0 auto 40px;
    border-radius: 3px;
    filter: blur(2px);
}

.rowkey-focus-center {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
}

.focus-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}


.focus {
    width: 100%;
    min-height: 100px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #2196F3;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
    border: 1px solid rgba(65, 135, 230, 0.28);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 8px 22px rgba(65, 135, 230, 0.1);
    gap: 12px;
}

.focus::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    background: linear-gradient(135deg, rgba(100, 47, 221, 0.08) 0%, rgba(37, 207, 237, 0.08) 65%, rgba(83, 236, 110, 0.08) 100%);
}

.focus:hover {
    box-shadow: 0 14px 28px rgba(65, 135, 230, 0.18);
    border-color: rgba(100, 47, 221, 0.45);
    color: #2b2f77;
}

.focus:hover::before {
    opacity: 1;
}

.focus-icon,
.focus-text {
    position: relative;
    z-index: 1;
}

.focus-icon {
    width: 36px;
    height: 30px;
    min-width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 65%, #25cfed 100%);
    box-shadow: 0 6px 14px rgba(100, 47, 221, 0.24);
}

.focus-text {
        text-align: justify;
    display: block;
    padding-right: 18px;
}

.focus::after {
    content: '>';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: right 0.25s ease, opacity 0.25s ease;
    font-size: 1.2rem;
    color: #642fdd;
}

.focus:hover::after {
    opacity: 1;
    right: 10px;
}

/* Focus Canvas Stack */
.focus-canvas-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.focus-demo-image-wrap {
    background: white;
    border: 1px solid rgba(100, 47, 221, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(65, 135, 230, 0.12);
    min-height: 240px;
}

.focus-demo-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.focus-canvas-item {
    background: white;
    border: 1px solid rgba(100, 47, 221, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(65, 135, 230, 0.12);
    min-height: 150px;
}

.keyfocus-canvas {
    width: 100%;
    height: 150px;
    display: block;
}


/* ========== Program Section ========== */
.program-section {
    padding: 70px 0;
    background: var(--TableBackground);
    position: relative;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-Animation);
    animation: scanLine 4s linear infinite;
}

.program-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.program-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.program-divider {
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    margin: 0 auto 50px;
    border-radius: 3px;
    filter: blur(2px);
}

.program-table thead {
    display: none;
}

.program-table h2 {
    color:var(--tableProgramTitleTextColor);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.program-table tbody {
    display: block;
    width: 100%;
}


.program-table tbody tr {
    display: block;
    margin-bottom: 20px;
    background: var(--tableRowColor);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
}


.program-table tbody td {
    display: block;
    padding: 20px;
    text-align: left;
    width: 100%;
}

.program-time-col,
.program-table tbody td:first-child {
    width: 100%;
    white-space: normal;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    padding: 15px 20px;
}


.program-table tbody td:first-child h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.program-speaker-list {
    margin: 10px 0 10px 0;
    padding-left: 20px;
    color: var(--tableProgramTitleTextColor);
    font-size: 16px;
    line-height: 1.6;
}

.program-speaker-list li {
    margin-bottom: 8px;
}

.program-speaker-list .moderator-entry,
.program-speaker-list .speaker-entry {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.program-speaker-list .moderator-text,
.program-speaker-list .speaker-text {
    flex: 1;
}

.program-speaker-list .moderator-avatars,
.program-speaker-list .speaker-avatars {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    padding-top: 2px;
}

.program-speaker-list .moderator-avatar,
.program-speaker-list .speaker-avatar {
    width: 1em;
    height: 1em;
    min-width: 1em;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    border: 1px solid rgba(65, 135, 230, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform-origin: center;
    position: relative;
    z-index: 1;
}

.program-speaker-list .moderator-avatar:hover,
.program-speaker-list .speaker-avatar:hover {
    transform: scale(3.2);
    box-shadow: 0 10px 24px rgba(65, 135, 230, 0.45);
    z-index: 10;
}

.program-video-link {
    display: inline-block;
    margin-bottom: 12px;
}

.program-video-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--videoLinktextColor);
    text-decoration: none;
}

.program-video-link img {
    width: 18px;
    height: auto;
}


/* ========== Speakers Section ========== */
.speaker-section {
    padding: 50px 0;
    background-color: var(--speakersBackground);
    position: relative;
}

.speaker-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.speaker-header {
    text-align: center;
    margin-bottom: 40px;
}

.speaker-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    position: relative;
}

.speaker-divider {
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    margin: 0 auto 50px;
    border-radius: 3px;
    filter: blur(2px);
}

.speaker-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.speaker-featured {
    display: flex;
    justify-content: center;
    margin: 0 auto 28px;
}

.speaker-item {
    padding: 10px 0;
    flex: 0 1 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.speaker-card {
    width: 100%;
    max-width: 260px;
    background: var(--speakerCardColor);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(41, 212, 189, .18);
    box-shadow: 0 18px 40px rgb(10 87 145 / 31%);
    transition: .3s ease;
}

.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.speaker-image {
    width: 200px;
    height: 250px;
    margin: 0 auto 12px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.speaker-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--speakerNameTextColour);
    margin-bottom: 6px;
}

.speaker-role {
    font-size: 16px;
    line-height: 1.6;
    color: var(--speakerRoleTextColor);
}

.speaker-card-featured {
    max-width: 330px;
    padding: 14px;
}

.speaker-card-featured .speaker-image {
    width: 260px;
    height: 320px;
    margin: 0 auto 14px;
}

.speaker-card-featured .speaker-name {
    font-size: 20px;
}

.speaker-card-featured .speaker-role {
    font-size: 15px;
    line-height: 1.5;
}

/* ========== Contact Footer ========== */
.contact-section {
    padding: 70px 0 50px;
    background: var(--contactBackground);
    position: relative;
}

.contact-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: .5px;
    color: var(--contactTitleColor);
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-Animation);
    margin: 12px auto 0;
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.contact-card {
    border-radius: 15px;
    padding: 18px;
    background: var(--contactCardColor);
    box-shadow: none;
    border: none;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.contact-role {
    font-size: 16px;
    font-weight: 700;
    color: var(--contactRoleColor);
    margin-bottom: 10px;
}

.contact-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--contactNameColor);
    margin-bottom: 14px;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-icon {
    font-size: 17px;
    color: var(--contactIconColor);
    min-width: 16px;
}

.contact-link {
    font-size: 17.5px;
    color: var(--contactInfoColor);
    text-decoration: none;
    transition: .2s ease;
}

.contact-info:hover .contact-icon {
    transform: scale(1.1);
}

/* * Expected Outcome */ 
.outcome-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.outcome-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14d0be, #2ef7ea);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    color: #090808;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(44, 231, 241, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.outcome-circle::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    background: rgba(255, 255, 255, 0.08);
    top: -60%;
    left: -60%;
    transform: rotate(45deg);
    transition: 0.5s;
}

.outcome-circle:hover::after {
    top: -20%;
    left: -20%;
}

.outcome-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 45px rgba(33, 182, 182, 0.45);
}

.outcome-text {
    position: relative;
    z-index: 2;
}

/* Youtube */
