/* ========== 1. Global Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    position: relative;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    /* background: linear-gradient(160deg, #ce94df 0%, #5949a5 100%); */
    overflow-x: hidden;
}

.fa-regular, .fa-solid {
    color:#daba52;
}



        
/* ========== 2. Header & Navigation ========== */
#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px;
    background: #0e0b1700;
    box-shadow: 0 5px 30px rgb(255 255 255 / 10%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#siteHeader.scrolled {
    padding: 10px 0;
    background: linear-gradient(180deg, #fdf3d4 0%, #fdf3d4 44%, #dce7ff 100%);
    box-shadow: 0 10px 40px rgb(142 142 142 / 15%);
}

#siteHeader::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    filter: blur(7px);
    transform: translateY(2px) scaleX(0);
    transform-origin: left center;
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

#siteHeader.scrolled::after {
    opacity: 0.98;
    filter: blur(0);
    transform: translateY(0) scaleX(1);
    box-shadow: 0 0 10px rgb(218 205 108 / 45%), 0 0 24px rgb(255 255 255 / 35%), 0 0 34px rgb(236 215 8 / 25%);
    animation: dividerSweep 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 10px;
}

nav {
    display: flex;
    gap: 5px;
    position: relative;
}

nav a {
    position: relative;
    padding: 12px 24px;
    color: #F44336;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

nav a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #6a1b9a 55%, #0a1f5d 100%);
    border-radius: 999px;
    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;
}

/* ========== 3. Edition Button ========== */
.edition-arc-pro h5 {
    position: relative;
    padding: 12px 50px;
    background: linear-gradient(90deg, #d8d8d8 0%, #7a2cbf 50%, #113a8f 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    border-radius: 50px;
    overflow: hidden;
}

.edition-arc-pro h5::before {
    content: "";
    position: absolute;
    inset: 0;
    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;
    border-radius: 50px;
    pointer-events: none;
    animation: borderTrip 4s linear infinite;
}

.edition-arc-pro h5 * {
    position: relative;
    z-index: 2;
}

/* ========== 4. Hero Section ========== */
.hero_section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 5px 0 50px;
    /* background: linear-gradient(160deg, #d8b285 0%, #513ea9 100%); */
    background: linear-gradient(180deg, #fdf3d4 0%, #fdf3d4 44%, #dce7ff 100%);
    overflow: hidden;
}

.hero_section::before {
    content: '';
    position: absolute;
    inset: 0;
}

/* Shared Animated Underline (Hero, About, Focus, etc) */
.hero_section::after, #about_US::after, .key-focus::after, 
.program-section::after, .speaker-section::after, .contact-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #113a8f 0%, #7a2cbf 52%, #f4d06f 100%);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    filter: blur(7px);
    transform: translateY(2px) scaleX(0);
    transform-origin: left center;
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.scroll-heading {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    white-space: nowrap;
    margin-right: 20px;
    text-align: center;
    width: 100%;
}

.hero-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-sponsors2 {
    margin-bottom: 40px;
    color: #ffe8a6;
    text-align: center;
    animation: glitchAppear 1s ease-out;
}

.logo-sponsors2 img {
    width: 150px;
    filter: drop-shadow(0 10px 30px rgba(0, 168, 255, 0.3));
}

.logo-sponsors2 p {
    margin-top: 12px;
    color: #000000;
    font-size: 22px;
    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: 300px;
    height: auto;
}

.divider {
    width: 8px;
    height: 154px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
}

.moto-wrap {
    max-width: 300px;
    margin-left: 10px;
    color: #000000;
    font-size: 1.7rem;
    font-weight: 1000;
    line-height: 1.4;
    text-align: left;
}

.date, .datereg {
    margin: 40px 0;
    text-align: center;
}

.date p {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    max-width: 791px;
    padding: 19px 50px;
    background: rgba(17, 21, 49, 0.88);
    backdrop-filter: blur(20px);
    color: #ffffff;
    font-size: 1.4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 168, 255, 0.15);
    animation: slideUp 1s ease-out 0.5s both;
}

.date p i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(65, 135, 230, 0.25);
}

.date a, .datereg a {
    position: relative;
    display: inline-block;
    width: 300px;
    margin-top: 30px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #e01e39 0%, #e01e39 60%, #e01e39 100%);
    color: #f9de8b;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    animation: buttonGlow 2s infinite alternate;
}

.date a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.date a:hover, .datereg a:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 0 30px rgba(106, 27, 154, 0.28), 0 10px 40px rgba(10, 31, 93, 0.22);
}

.date a:hover::before {
    left: 100%;
}

.datereg a:hover {
    background: linear-gradient(135deg, #17529b 0%, #1f6ec5 60%, #25cfed 100%);
    animation-play-state: paused;
}

/* ========== 5. Partners Section ========== */
.partner-section {
    position: relative;
    margin-top: 80px;
    padding: 2px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    overflow: hidden;
}

.partnerwrap-wrapper {
    position: relative;
    max-height: 100vh;
    overflow: hidden;
}

.partnerwrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    animation: scrollVertical 40s linear infinite;
}

.partnerwrap::-webkit-scrollbar {
    display: none;
}

.partnerwrap.paused { animation-play-state: paused; }
.partnerwrap.fast { animation-duration: 30s; }
.partnerwrap.slow { animation-duration: 50s; }

.partner-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    padding: 30px;
    background: #ffffff;
    color: #111827;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 168, 255, 0.5), 0 10px 8px rgba(0, 168, 255, 0.3);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.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);
}

.partner-box img {
    width: 140px;
    margin-top: 12px;
    transition: transform 0.35s ease;
}

.partner-box:hover img { transform: scale(1.03); }

.partner-box > div {
    width: 100%;
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.partner-text-only {
    min-height: 120px;
    border: 1px dashed rgba(100, 47, 221, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #f4f1ff 55%, #eaf6ff 100%);
}

.partner-text-only .support-header {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 8px;
    color: #000000;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 2px solid rgba(65, 135, 230, 0.28);
}

.partner-text-only .support-subtext {
    color: #642fdd;
    font-size: 1.02rem;
    font-weight: 600;
}

/* ========== 6. About Section ========== */
#about_US {
    position: relative;
    padding: 2px 120px 50px;
    background: linear-gradient(180deg, #fdf3d4 0%, #efe1ff 44%, #dce7ff 100%);
}

.center-text {
    position: relative;
    padding: 70px;
    background: linear-gradient(135deg, #f4d06f 0%, #7a2cbf 48%, #113a8f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about_wrap {
    max-width: 91%;
    margin: 30px auto 20px;
    color: #120f20;
    font-size: 17px;
    line-height: 1.8;
}

.about_wrap p {
    font-size: 20px;
    text-align: justify;
}

.overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}

.overview-canvas-wrap {
    position: relative;
    min-height: 430px;
    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%);
    border: 1px solid rgba(65, 135, 230, 0.35);
    border-radius: 24px;
    box-shadow: inset 0 0 20px rgba(100, 47, 221, 0.1), 0 14px 30px rgba(65, 135, 230, 0.15);
    overflow: hidden;
}

.overview-canvas-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.overview-canvas-glow {
    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%);
    pointer-events: none;
}

.card-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 80px auto 0;
}

.card-overview-content {
    position: relative;
    display: flex;
    width: 100%;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: box-shadow 0.35s ease;
}

.card-overview-content:hover {
    box-shadow: 0 0 30px rgba(106, 27, 154, 0.28), 0 10px 40px rgba(10, 31, 93, 0.22);
}
.about-box {
    position: relative;
    z-index: 1;
    text-align: justify;
}

.about-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    color: #4187e6;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #4187e6;
    text-align: left;
}

.about-box p {
    color: #1a1b20;
    font-size: 20px;
}

.overview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(65, 135, 230, 0.25);
}

/* ========== 7. Focus Areas ========== */
.key-focus {
    position: relative;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.centertext-key-focus {
    margin-bottom: 50px;
    color: #6c2db9;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}

.mbkey-focus {
    width: 100px;
    height: 4px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #642fdd 0%, #4187e6 60%, #25cfed 100%);
    border-radius: 3px;
    filter: blur(2px);
}

.rowkey-focus-center {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
}

.focus-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.focus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    min-height: 121px;
    padding: 16px 52px;
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 11, 29, 0.16);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.focus:hover {
    box-shadow: 0 14px 28px rgba(15, 11, 29, 0.24);
    border-color: rgba(106, 27, 154, 0.55);
    color: #1b1338;
}

.focus::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgb(100 52 129 / 10%) 70%, rgba(10, 31, 93, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.focus:hover::before { opacity: 1; }

.focus-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #6a1b9a 65%, #0a1f5d 100%);
    color: #ffffff;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(106, 27, 154, 0.24);
}

.focus-text {
    position: relative;
    z-index: 1;
    display: block;
    padding-right: 18px;
}

.focus::after {
    content: '>';
    position: absolute;
    right: 14px;
    top: 50%;
    color: #d4af37;
    font-size: 1.2rem;
    transform: translateY(-50%);
    opacity: 0;
    transition: right 0.25s ease, opacity 0.25s ease;
}

.focus:hover::after {
    opacity: 1;
    right: 10px;
}

.focus-canvas-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.focus-demo-image-wrap {
    min-height: 669px;
    background: #ffffff;
    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);
}

.focus-demo-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 669px;
}

.focus-canvas-item {
    min-height: 215px;
    background: white;
    border: 1px solid rgba(100, 47, 221, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(65, 135, 230, 0.12);
    overflow: hidden;
}

.keyfocus-canvas {
    display: block;
    width: 100%;
    height: 150px;
}

/* ========== 8. Program Section ========== */
.program-section {
    position: relative;
    background: linear-gradient(135deg, #f8f0ff 0%, #edf2ff 52%, #ffffff 100%);
}

.program-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.program-title {
    padding: 56px;
    background: linear-gradient(135deg, #6c2db9 0%, #782cbe 55%, #f5f1ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}

.program-table {
    position: relative;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 25px;
}

.program-table thead th {
    padding: 30px;
    background: linear-gradient(135deg, #6331dd, #4b6de3, #29c3eb);
    color: #ffffff;
    text-align: left;
    border-radius: 10px 10px 0 0;
}

.program-table thead h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.program-table tbody tr {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(106, 27, 154, 0.14);
}

.program-table tbody td {
    padding: 28px 24px;
    vertical-align: top;
}

.program-time-col {
    width: 220px;
    white-space: nowrap;
}

.program-table h2 {
    color: #000000;
    font-size: 20px;
}

.program-speaker-list {
    margin: 10px 0 10px 18px;
    padding-left: 0;
    color: #000000;
    font-size: 20px;
    line-height: 1.6;
    list-style: none;
}

.program-speaker-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    padding-left: 30px;
}

.program-speaker-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 4px;
    color: #6a1b9a;
    font-size: 22px;
    line-height: 1;
}

.program-speaker-list .moderator-avatars,
.program-speaker-list .speaker-avatars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.program-speaker-list .moderator-avatar,
.program-speaker-list .speaker-avatar {
    position: relative;
    z-index: 1;
    width: 1.5em;
    height: 1.5em;
    object-fit: cover;
    object-position: top center;
    border: 1px solid rgba(65, 135, 230, 0.35);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-speaker-list .moderator-avatar:hover,
.program-speaker-list .speaker-avatar:hover {
    z-index: 10;
    transform: scale(3.3);
    box-shadow: 0 10px 24px rgba(65, 135, 230, 0.45);
}

/* ========== 9. Speakers Section ========== */
.speaker-section {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f0ff 0%, #edf2ff 52%, #ffffff 100%);
}

.speaker-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 16px;
}

.speaker-title {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #762cbd 0%, #6a1b9a 46%, #762cbd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}

.speaker-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
}

.speaker-item {
    display: flex;
    justify-content: center;
    flex: 0 1 calc(20% - 20px);
    min-width: 220px;
    max-width: 300px;
    padding: 15px 0;
}

.speaker-card {
    width: 100%;
    max-width: 260px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(106, 27, 154, 0.2);
    border-radius: 12px;
    text-align: center;
    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 {
    margin-bottom: 6px;
    color: #0a1f5d;
    font-size: 19px;
    font-weight: 700;
}

.speaker-role {
    color: #4b1d52;
    font-size: 16px;
    line-height: 1.6;
}

.speaker-card-featured {
    max-width: 430px;
    padding: 16px;
}

.speaker-card-featured .speaker-image {
    width: 320px;
    height: 390px;
}

.speaker-card-featured .speaker-name { font-size: 24px; }

/* ========== 10. Outcomes & Multimedia ========== */
.outcome-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.outcome-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    padding: 25px;
    background: linear-gradient(135deg, #14d0be, #2ef7ea);
    color: #090808;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(44, 231, 241, 0.3);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.outcome-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 45px rgba(33, 182, 182, 0.45);
}

.outcome-circle::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 140%;
    height: 140%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    transition: 0.5s;
}

.outcome-circle:hover::after {
    top: -20%;
    left: -20%;
}

.youtube-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.youtube-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 5% auto;
    padding: 10px;
    background: #000;
}

/* ========== 11. Contact Footer ========== */
.contact-section {
    position: relative;
    padding: 70px 0 50px;
    background: #0a1f5d;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-title {
    background: linear-gradient(135deg, #f5d77f 0%, #d4af37 45%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.contact-card {
    padding: 18px;
    background: #111a45;
    border-radius: 15px;
}

.contact-list {
    list-style: none;
    text-align: center;
}

.contact-role {
    margin-bottom: 10px;
    color: #d4af37;
    font-size: 16px;
    font-weight: 700;
}

.contact-name {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-link {
    color: #ffffff;
    font-size: 17.5px;
    text-decoration: none;
    transition: .2s ease;
}

.contact-extra-note {
    margin-top: 26px;
    color: #ffffff;
    font-size: 1.05rem;
    text-align: center;
}

.contact-extra-note a {
    color: #f5d77f;
    font-weight: 700;
    text-decoration: none;
}

/* ========== 12. Animations ========== */
@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%; }
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-50% - 10px)); }
}

@keyframes hologramShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(1deg); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes buttonGlow {
    0% { box-shadow: 0 15px 40px rgba(0, 168, 255, 0.3); }
    100% { box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4); }
}

@keyframes dividerSweep {
    0% { opacity: 0.2; transform: translateY(2px) scaleX(0); filter: blur(8px); }
    100% { opacity: 0.98; transform: translateY(0) scaleX(1); filter: blur(0); }
}

/* ========== 13. Media Queries ========== */
@media (max-width: 1200px) {
    .overview-layout { grid-template-columns: 1fr; }
    .overview-canvas-wrap { min-height: 320px; }
    .card-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
    .rowkey-focus-center { grid-template-columns: 1fr; }
    .focus-canvas-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .focus-demo-image-wrap, .focus-demo-image-wrap img { min-height: 260px; }
    .speaker-item { flex-basis: calc(33.333% - 20px); }
}

@media (max-width: 680px) {
    .centertext-key-focus { font-size: 2.4rem; }
    .focus { min-height: 104px; padding: 16px 14px; font-size: 15px; }
    .focus-canvas-stack { grid-template-columns: 1fr; }
    .speaker-item { flex-basis: calc(50% - 20px); min-width: 180px; }
}

@media (max-width: 640px) {
    .card-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .card-overview-content { padding: 24px 16px; }
    .about-box h4 { font-size: 18px; }
    .about-box p { font-size: 14px; }
}

/* 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;
}


