﻿.youtube-modal-content{
    display:none;
}

* {
    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;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: #000000;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.scroll-heading{
    text-align:center;
    font-size: 14px;
    font-weight:800;
    color:#000000;
    width:100%;
}

/* ========== Header ========== */
#siteHeader {

    padding: 12px;
/* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    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;
   
    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: linear-gradient(180deg, #fdf3d4 0%, #fdf3d4 44%, #dce7ff 100%);
    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: linear-gradient(90deg, #d8d8d8 0%, #7a2cbf 50%, #113a8f 100%);
    color: #ffffff;
    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: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
    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: auto;
    min-height: 420px;
    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: #f9de8b;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 20px;
    margin-bottom: 5px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
    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, #d4af37 0%, #6a1b9a 55%, #0a1f5d 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;
    background: linear-gradient(180deg, #fdf3d4 0%, #fdf3d4 44%, #dce7ffba 100%);
}

.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 64%, rgba(236, 245, 255, 0.82) 86%, rgba(246, 242, 255, 1) 100%),
        radial-gradient(circle at 18% 25%, rgba(122, 44, 191, 0.34) 0%, transparent 45%),
        radial-gradient(circle at 82% 18%, rgba(17, 58, 143, 0.34) 0%, transparent 45%),
        radial-gradient(circle at 50% 88%, rgba(244, 208, 111, 0.28) 0%, transparent 45%);
    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:#ffe8a6;
    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:#000000;
    font-size:17px;
    font-weight:800;
    text-align:center;
}

.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: #000000;
}

.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: rgba(17, 21, 49, 0.88);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    color: #ffffff;
    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, #F44336 0%, #F44336 60%, #F44336 100%);
    color: #f9de8b;
    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 {
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
}

.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: #111827;
    padding: 9px;
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    min-height: 30px;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.5), 0 2px 5px rgba(0, 168, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    will-change: transform;
    backface-visibility: hidden;
    font-size: 12px;
}

.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: #000000;
    text-align: center;
    text-transform: uppercase;
}

.partner-box > div {
    width: 100%;
    color: #000000;
    font-weight: 600;
    text-align: center;
}

.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: 0 0 30px rgba(106, 27, 154, 0.28), 0 10px 40px rgba(10, 31, 93, 0.22);
}

/* Remove original scrollbar styles */
.partnerwrap::-webkit-scrollbar {
    display: none;
}

.partnerwrap {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partner-box img {
    padding: 5px;
    width: 100px;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
    backface-visibility: hidden;
}

.partner-box:hover img {
    transform: scale(1.03);
}

.container,
.row,
.hero-wrap,
.program-wrapper,
.speaker-wrapper,
.contact-wrapper {
    width: 100%;
    max-width: 100%;
}

img,
video,
canvas,
table {
    max-width: 100%;
}

.program-table,
.program-table tbody,
.program-table tbody tr,
.program-table tbody td {
    max-width: 100%;
}


/* Do not touch anything above this */

/* ========== About Section ========== */
#about_US {
    background: linear-gradient(180deg, #f6f2ff 0%, #f2f8ff 18%, #ffffff 52%);
    padding: 0px 20px 50px;
    margin-top: 0;
    margin-bottom: 0px;
    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: none;
    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: #120f20;
}

.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: rgba(255, 255, 255, 0.94);
    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(115deg, #ffffff 0%, #ffffff 52%, #ffffff 100%);
    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;
    -webkit-background-clip: text;
    background-clip: text;
    color: #f9de8b;
    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: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
    border-radius: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #000000;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.35);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 8px 22px rgba(15, 11, 29, 0.16);
    gap: 12px;
}

.focus::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgb(100 52 129 / 10%) 70%, rgba(10, 31, 93, 0.12) 100%);
}

.focus:hover {
    box-shadow: 0 14px 28px rgba(15, 11, 29, 0.24);
    border-color: rgba(106, 27, 154, 0.55);
    color: #1b1338;
}

.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, #d4af37 0%, #6a1b9a 65%, #0a1f5d 100%);
    box-shadow: 0 6px 14px rgba(106, 27, 154, 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: #d4af37;
}

.focus:nth-child(even) {
    border-color: rgba(106, 27, 154, 0.34);
}

.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: linear-gradient(135deg, #f8f0ff 0%, #edf2ff 52%, #ffffff 100%);
    position: relative;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #6a1b9a, #0a1f5d);
    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, #d4af37 0%, #6a1b9a 55%, #0a1f5d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.program-divider {
    display: none;
}

.program-table thead {
    display: none;
}

.program-table h2 {
    color:#000000;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.program-table tbody {
    display: block;
    width: 100%;
}


.program-table tbody tr {
    display: block;
    margin-bottom: 20px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(106, 27, 154, 0.14);
    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, #d4af37, #6a1b9a, #0a1f5d);
    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: #000000;
    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: #0a1f5d;
    text-decoration: none;
}

.program-video-link img {
    width: 18px;
    height: auto;
}


/* ========== Speakers Section ========== */
.speaker-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f0ff 0%, #edf2ff 52%, #ffffff 100%);
    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, #0a1f5d 0%, #6a1b9a 46%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    position: relative;
}

.speaker-divider {
    display: none;
}

.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: 290px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(106, 27, 154, 0.2);
    box-shadow: 0 16px 34px rgba(10, 31, 93, 0.2);
    transition: .3s ease;
}

.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(106, 27, 154, 0.28), 0 10px 40px rgba(10, 31, 93, 0.22);
}

.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: #0a1f5d;
    margin-bottom: 6px;
}

.speaker-role {
    font-size: 16px;
    line-height: 1.6;
    color: #4b1d52;
}

.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: #0a1f5d;
    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;
    background: linear-gradient(135deg, #f5d77f 0%, #d4af37 45%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-divider {
    display: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.contact-card {
    border-radius: 15px;
    padding: 18px;
    background: #111a45;
    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: #d4af37;
    margin-bottom: 10px;
}

.contact-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-icon {
    font-size: 17px;
    color: #f5d77f;
    min-width: 16px;
}

.contact-link {
    font-size: 17.5px;
    color: #ffffff;
    text-decoration: none;
    transition: .2s ease;
}

.contact-extra-note {
    margin-top: 22px;
    text-align: center;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.5;
}

.contact-extra-note a {
    color: #f5d77f;
    font-weight: 700;
    text-decoration: none;
}

.contact-extra-note a:hover {
    text-decoration: underline;
}

.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 */

/* Mobile Color Parity (match desktop) */
body {
    background: linear-gradient(160deg, #ce94df 0%, #5949a5 100%);
    color: #ffffff;
}

#siteHeader {
    background: linear-gradient(159deg, #fdf3d4 0%, #fdf3d4 44%, #dce7ffba 100%);
    box-shadow: 0 5px 30px rgb(255 255 255 / 10%);
}

#siteHeader.scrolled {
    background: linear-gradient(180deg, #fdf3d4 0%, #fdf3d4 44%, #dce7ff 100%) !important;
    box-shadow: 0 10px 40px rgb(142 142 142 / 15%) !important;
}

#siteHeader::after {
    background: transparent;
}

#siteHeader.scrolled::after {
    opacity: 0 !important;
    animation: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
}

.edition-arc-pro h5 {
    background: linear-gradient(90deg, #d8d8d8 0%, #7a2cbf 50%, #113a8f 100%);
    color: #ffffff;
}

nav a {
    color: #F44336;
}

nav a::after {
    background: linear-gradient(90deg, #d4af37 0%, #6a1b9a 55%, #0a1f5d 100%);
}

.hero_section::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 64%, rgba(236, 245, 255, 0.82) 86%, rgba(246, 242, 255, 1) 100%),
        radial-gradient(circle at 18% 25%, rgba(122, 44, 191, 0.34) 0%, transparent 45%),
        radial-gradient(circle at 82% 18%, rgba(17, 58, 143, 0.34) 0%, transparent 45%),
        radial-gradient(circle at 50% 88%, rgba(244, 208, 111, 0.28) 0%, transparent 45%);
}

.logo-sponsors2 {
    color: #ffe8a6;
}

.moto-wrap {
    color: #000000;
}

.date p {
    background: rgba(17, 21, 49, 0.88);
    color: #ffffff;
}

.date a,
.datereg a {
    color: #f9de8b;
}

.partner-section {
    background: rgba(255, 255, 255, 0.95);
}

.partner-box {
    background: #ffffff;
    color: #111827;
}

#about_US {
    background: linear-gradient(180deg, #fdf3d4 0%, #efe1ff 44%, #dce7ff 100%);
}

.center-text {
    background: linear-gradient(135deg, #f4d06f 0%, #7a2cbf 48%, #113a8f 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.key-focus {
    background: linear-gradient(115deg, #ffffff 0%, #ffffff 52%, #ffffff 100%);
}

.centertext-key-focus {
        background: linear-gradient(135deg, #6a1b9a 0%, #6a1b9a 60%, #6a1b9a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.focus {
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
    color: #000000;
}

.focus:nth-child(even) {
    border-color: rgba(106, 27, 154, 0.34);
}

.focus-icon {
    background: linear-gradient(135deg, #d4af37 0%, #6a1b9a 65%, #0a1f5d 100%);
}

.program-section {
    background: linear-gradient(135deg, #f8f0ff 0%, #edf2ff 52%, #ffffff 100%);
}

.program-title {
    background: linear-gradient(135deg, #d4af37 0%, #6a1b9a 55%, #0a1f5d 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.program-time-col,
.program-table tbody td:first-child {
    background: linear-gradient(135deg, #6331dd, #4b6de3, #29c3eb);
}

.program-table tbody tr {
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(106, 27, 154, 0.14);
}

.program-table h2,
.program-speaker-list {
    color: #000000;
}

.program-table tbody td:first-child h3 {
    color: #ffffff;
}

.program-video-link a {
    color: #0a1f5d;
}

.speaker-section {
    background: linear-gradient(135deg, #f8f0ff 0%, #edf2ff 52%, #ffffff 100%);
}

.speaker-title {
    background: linear-gradient(135deg, #0a1f5d 0%, #6a1b9a 46%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.speaker-card {
    background: #ffffff;
    border: 1px solid rgba(106, 27, 154, 0.2);
    box-shadow: 0 16px 34px rgba(10, 31, 93, 0.2);
}

.speaker-name {
    color: #0a1f5d;
}

.speaker-role {
    color: #4b1d52;
}

.contact-section {
    background: #0a1f5d;
}

.contact-title {
    background: linear-gradient(135deg, #f5d77f 0%, #d4af37 45%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.contact-card {
    background: #111a45;
}

.contact-role {
    color: #d4af37;
}

.contact-name,
.contact-link,
.contact-extra-note {
    color: #ffffff;
}

.contact-icon,
.contact-extra-note a {
    color: #f5d77f;
}

/* Header scroll color lock */
#siteHeader.scrolled {
    background-color: #fdf3d4 !important;
    background-image: linear-gradient(180deg, #fdf3d4 0%, #fdf3d4 44%, #dce7ff 100%) !important;
}

#siteHeader.scrolled::after {
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
}

