/* ==============================================
   style.css — Simcenter Technology Conference 2026
   Global styles, layout, components, responsive
   ============================================== */


/* -----------------------------------------------
   1. RESET & BASE
----------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* -----------------------------------------------
   2. LAYOUT CONTAINER
   Centred inner wrapper used across all sections
----------------------------------------------- */
.container-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}


/* -----------------------------------------------
   3. HEADER
----------------------------------------------- */
header {
    background: #000028;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.logo {
    width: 100%;
    max-width: 1150px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-left {
    display: flex;
    gap: 10px;
}

.logo-left h3 {
    margin-top: 10px;
    font-size: 20px;
}

.logo-left img {
    width: 150px;
    height: 25px;
    object-fit: contain;
    margin-top: 10px;
}

.logo-right {
    width: 120px;
}


/* -----------------------------------------------
   4. HERO — FULL-BLEED VIDEO BACKGROUND
----------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: #000028;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 40, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    width: 100%;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: -5px;
    padding-right: 20%;
    line-height: 1.5em;
}

.hero-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    max-width: 650px;
    line-height: 1.15;
}

.event-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: -10px;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 40, 0.35);
    border: 1px solid rgba(100, 220, 200, 0.15);
    border-radius: 4px;
    padding: 9px 10px;
    width: fit-content;
}

.event-col {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #d0f0ec;
    font-size: 12px;
    white-space: nowrap;
}

.event-col:first-child {
    min-width: 120px;
}

.event-col:nth-child(3) {
    min-width: 80px;
}

.event-col-divider {
    width: 1px;
    height: 16px;
    background: rgba(100, 220, 200, 0.35);
    margin: 0 10px;
}

/* ── Beautified Hero CTA Button ── */
.hero-btn-link {
    display: inline-block;
    text-decoration: none;
    margin-top: 6px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00e6dc 0%, #00ffb9 100%);
    color: #000028;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 220, 0.35), 0 0 0 0 rgba(0, 230, 220, 0);
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00ffee 0%, #00e6b0 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 230, 220, 0.5), 0 0 0 3px rgba(0, 230, 220, 0.15);
}

.hero-btn:hover::before {
    opacity: 1;
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-btn-text {
    position: relative;
    z-index: 1;
}

.hero-btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.hero-btn:hover .hero-btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .event-badge {
        padding: 8px 15px;
        gap: 10px;
    }

    .event-badge-item {
        font-size: 12px;
    }
}


/* -----------------------------------------------
   5. SECTION DIVIDER
----------------------------------------------- */
.section-divider {
    height: 2px;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.section-divider.dark {
    background: #ddd;
    margin: 0 auto;
    max-width: 100%;
}


/* -----------------------------------------------
   6. ABOUT / INTRO SECTION
----------------------------------------------- */
.about-section {
    background-color: #000028;
    padding: 60px 0;
}

.about-section .container-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-section p {
    color: #fff;
    max-width: 89%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.feature-item img {
    width: 60px;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: #fff;
    max-width: 89%;
}


/* -----------------------------------------------
   7. KEY CONFERENCE TRACKS SECTION
----------------------------------------------- */
.tracks-section {
    background: #fff;
    color: #000028;
    padding: 60px 0;
}

.tracks-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000028;
    margin-bottom: 16px;
}

.tracks-intro {
    color: #333;
    max-width: 89%;
    margin-bottom: 10px;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 0 0;
}

.track-item img {
    width: 60px;
    margin-bottom: 16px;
}

.track-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000028;
    margin-bottom: 8px;
}

.track-item p {
    font-size: 14px;
    color: #444;
    width: 80%;
}


/* -----------------------------------------------
   NEW: KEYNOTE SPEAKERS SECTION
----------------------------------------------- */
.keynote-section {
    background-color: #000028;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative radial gradient background accent */
.keynote-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 220, 200, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Section header ── */
.keynote-header {
    margin-bottom: 40px;
}

.keynote-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00ddc8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.keynote-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: #00ddc8;
}

.keynote-header h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.keynote-intro {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
}

/* ── Speakers grid — 4 cols desktop, centered last row ── */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* Center any incomplete last row */
    justify-items: center;
}

/* Each card fills its grid cell */
.speaker-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Square image area with reduced height for compact look */
.speaker-card-img {
    background: linear-gradient(145deg, #001a3a 0%, #002840 100%);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Contain keeps full portrait visible without cropping */
.speaker-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.speaker-card-body {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 2px solid rgba(0, 220, 200, 0.25);
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.speaker-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.3;
}

.speaker-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.speaker-topic {
    font-size: 12px;
    color: #00ddc8;
    margin: 10px 0 0;
    font-weight: 500;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 220, 200, 0.15);
}


/* -----------------------------------------------
   8. CTA / REGISTRATION SECTION
----------------------------------------------- */
.cta-section {
    background-color: #ebebee;
    color: #000028;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000028;
    margin-bottom: 16px;
}

.cta-intro {
    color: #333;
    max-width: 89%;
    margin-bottom: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 30px 0 0;
}

.event-card {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-card-img {
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    transition: transform 0.7s ease;
}

.event-card:hover .event-card-img img {
    transform: scale(1.08);
}

.event-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-card-body h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

.event-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000028;
}

.event-card-body button {
    width: auto;
    max-width: 140px;
    background-color: #000028 !important;
    color: #fff;
    border: none;
    border-radius: 0 !important;
    padding: 10px 20px !important;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-card-body button:hover {
    background-color: #009999 !important;
}


/* -----------------------------------------------
   9. FULL-WIDTH VIDEO SECTION
----------------------------------------------- */
.video-section {
    background: #fff;
    padding: 60px 0;
    padding-bottom: 30px;
}

.video-section video {
    width: 100%;
    display: block;
    border-radius: 10px;
}


/* -----------------------------------------------
   10. FOOTER
----------------------------------------------- */
footer {
    background: #000028;
    color: #fff;
    padding: 50px 0;
    border-top: 1px solid #333;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-inner img {
    width: 150px;
}

.footer-text p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 4px;
}


/* -----------------------------------------------
   11. REGISTRATION FORM PAGE
----------------------------------------------- */
.form-page-main {
    background: #fff;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.registration-form {
    width: 100%;
    max-width: 700px;
}

.form-block {
    background: #ebebee;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-block img {
    width: 100%;
    display: block;
}

.form-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
    background: linear-gradient(90deg, #00fac0, #00e8d8);
    padding: 10px 0;
}

.registration-form label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.registration-form input,
.registration-form select {
    border-radius: 0 !important;
    padding: 12px 15px;
}

.registration-form input[type="checkbox"] {
    padding: 1px;
}

.form-check {
    padding: 15px !important;
    padding-left: 2.5em !important;
    background: #fff;
    margin-top: 10px !important;
}

.registration-form input::placeholder {
    font-size: 14px;
}

.registration-form span {
    color: red;
}

.registration-form .btn-submit {
    width: 100%;
    background-color: #000028 !important;
    color: #fff;
    border: none;
    border-radius: 0 !important;
    padding: 14px !important;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.registration-form .btn-submit:hover {
    background-color: #009999 !important;
}

/* CTA section inline form styles */
.cta-section .registration-form,
.event-card form {
    padding: 24px;
}

.event-card form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.event-card form .form-control {
    border-radius: 0 !important;
    padding: 10px 14px;
    font-size: 14px;
}

.event-card form .form-check {
    padding: 12px !important;
    padding-left: 2.5em !important;
    background: #f5f5f7;
    margin-top: 8px !important;
    font-size: 13px;
}

.event-card form .form-check-label {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.event-card form .form-check-label a {
    color: #009999;
}

.event-card form span {
    color: red;
}

.btn-submit {
    width: 100%;
    background-color: #000028 !important;
    color: #fff;
    border: none;
    border-radius: 0 !important;
    padding: 14px !important;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #009999 !important;
}


/* -----------------------------------------------
   12. TABLET STYLES — 601px to 1024px
----------------------------------------------- */
@media screen and (min-width: 601px) and (max-width: 1024px) {

    .hero-section {
        min-height: 55vh;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .about-section p,
    .tracks-intro,
    .cta-intro {
        max-width: 100%;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .tracks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Keynote — tablet: 3 columns */
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* -----------------------------------------------
   13. MOBILE STYLES — up to 600px
----------------------------------------------- */
@media screen and (max-width: 600px) {

    header {
        height: auto;
        padding: 12px 16px;
    }

    .logo {
        flex-direction: rows;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .logo-left h3 {
        margin-top: 12px;
        font-size: 15px;
    }

    .hero-section {
        flex-direction: column;
        min-height: auto;
        align-items: stretch;
    }

    .hero-video-bg {
        position: relative;
        width: 100%;
        height: 220px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        background: #000028;
        padding: 30px 20px;
        z-index: 2;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 12px 22px;
    }

    .about-section p {
        max-width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tracks-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .tracks-intro {
        max-width: 100%;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-intro {
        max-width: 100%;
    }

    footer {
        padding: 30px 16px;
    }

    .footer-inner {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .footer-text a {
        text-align: center;
    }

    .footer-text a img {
        display: block;
        margin: 10px auto 0;
    }

    /* Keynote — mobile: 2 columns */
    .keynote-section {
        padding: 50px 0 60px;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .speaker-card-body h4 {
        font-size: 13px;
    }

    .speaker-role,
    .speaker-topic {
        font-size: 11px;
    }
}


/* -----------------------------------------------
   14. THANK-YOU PAGE
----------------------------------------------- */
.thankyou-main {
    background: #f5f5f7;
    padding: 60px 20px;
    min-height: calc(100vh - 80px - 130px);
}

.thankyou-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.thankyou-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thankyou-badge {
    display: inline-block;
    background: #009999;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    width: fit-content;
}

.thankyou-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #000028;
    line-height: 1.15;
}

.thankyou-lead {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
}

.thankyou-content p {
    color: #555;
    font-size: 15px;
}

.thankyou-details {
    display: flex;
    gap: 30px;
    background: #000028;
    padding: 20px 24px;
    margin: 8px 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #009999;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.btn-back {
    display: inline-block;
    color: #000028;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #009999;
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.2s ease;
}

.btn-back:hover {
    color: #009999;
}

.ebook-card {
    background: #000028;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ebook-label {
    display: inline-block;
    background: #009999;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    width: fit-content;
}

.ebook-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.ebook-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.ebook-video {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.ebook-video video {
    width: 100%;
    display: block;
    max-height: 200px;
    object-fit: cover;
}

.btn-ebook {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #00fac0, #00e8d8);
    color: #000028;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 20px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.btn-ebook:hover {
    opacity: 0.88;
    color: #000028;
}


/* -----------------------------------------------
   15. TABLET — form & thank-you adjustments
----------------------------------------------- */
@media screen and (min-width: 601px) and (max-width: 1024px) {

    .form-page-main {
        padding: 40px 20px;
    }

    .thankyou-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}


/* -----------------------------------------------
   16. MOBILE — form & thank-you adjustments
----------------------------------------------- */
@media screen and (max-width: 600px) {

    .form-page-main {
        padding: 30px 16px;
    }

    .form-block {
        padding: 20px 16px;
    }

    .thankyou-main {
        padding: 40px 16px;
    }

    .thankyou-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .thankyou-details {
        flex-direction: column;
        gap: 10px;
    }

    .thankyou-title {
        font-size: 26px;
    }
}

/* -----------------------------------------------
   17. AGENDA SECTION
----------------------------------------------- */
.agenda-section {
    background: #000028;
    padding: 70px 0 80px;
}

.agenda-heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.agenda-intro {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── City Tabs ── */
.agenda-tabs {
    display: flex;
    gap: 10px;
    margin: 32px 0 28px;
    flex-wrap: wrap;
}

.agenda-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 22px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.agenda-tab:hover {
    background: rgba(0, 221, 200, 0.08);
    border-color: rgba(0, 221, 200, 0.4);
    color: #fff;
}

.agenda-tab.active {
    background: rgba(0, 221, 200, 0.12);
    border-color: #00ddc8;
    color: #fff;
}

.agenda-tab.active svg {
    stroke: #00ddc8;
}

/* ── Venue pill ── */
.agenda-venue-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 221, 200, 0.08);
    border: 1px solid rgba(0, 221, 200, 0.25);
    color: #00ddc8;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
}

/* ── Agenda Table Wrapper ── */

/* Outer container holds fade hint + scroll label */
.agenda-scroll-outer {
    position: relative;
}

.agenda-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(0, 221, 200, 0.18);
    /* Firefox scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 221, 200, 0.35) rgba(255, 255, 255, 0.04);
}

/* Chrome/Safari scrollbar (desktop & mobile) */
.agenda-table-wrap::-webkit-scrollbar {
    height: 6px;
}

.agenda-table-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 0 2px 2px;
}

.agenda-table-wrap::-webkit-scrollbar-thumb {
    background: rgba(0, 221, 200, 0.4);
    border-radius: 3px;
}

.agenda-table-wrap::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 221, 200, 0.7);
}

/* Scroll hint label — hidden on desktop, shown on mobile */
.agenda-scroll-hint {
    display: none;
}

/* Right fade — hidden on desktop, shown on mobile */
.agenda-scroll-outer::after {
    content: '';
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: calc(100% - 6px);
    background: linear-gradient(to right, transparent, #000028 90%);
    pointer-events: none;
    z-index: 2;
    border-radius: 0 2px 0 0;
}

/* ── Main Table ── */
.agenda-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 700px;
}

/* Column widths: time col + 4 equal track cols */
.agenda-table .at-time,
.agenda-table thead .at-th-time {
    width: 120px;
    min-width: 100px;
}

.agenda-table td,
.agenda-table th {
    vertical-align: top;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

/* ── Table Header row (Time / Title) ── */
.agenda-table thead .at-head-row th {
    background: #001a3d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    border-color: rgba(0, 221, 200, 0.25);
    padding: 13px 14px;
    vertical-align: middle;
}

.agenda-table thead .at-th-time {
    text-align: center;
}

/* ── Time cells ── */
.agenda-table .at-time {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid rgba(0, 221, 200, 0.2);
    background: rgba(0, 0, 20, 0.3);
}

/* ── Normal plenary content cells ── */
.agenda-table .at-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    vertical-align: middle;
}

/* ── Keynote rows ── */
.agenda-table tr.at-keynote .at-time {
    color: #00ddc8;
}

.agenda-table tr.at-keynote .at-content {
    border-left: 3px solid #00ddc8;
}

/* ── Break / Highlight rows (Tea Break & Lunch) ── */
.agenda-table tr.at-highlight td {
    background: #00223d;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.3px;
    border-color: #009688;
}

.agenda-table tr.at-highlight .at-time {
    background: #00a896;
    color: #000028;
    font-weight: 700;
    border-right-color: rgba(0, 0, 40, 0.15);
}

/* ── Focused Breakout Tracks label row ── */
.agenda-table tr.at-breakout-label td {
    background: rgba(0, 221, 200, 0.07);
    border-bottom: 1px solid rgba(0, 221, 200, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 14px;
    vertical-align: middle;
}

.agenda-table tr.at-breakout-label td:first-child {
    background: rgba(0, 0, 20, 0.3);
    border-right: 1px solid rgba(0, 221, 200, 0.2);
}

/* ── Track header row ── */
.agenda-table tr.at-track-header td {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    padding: 11px 10px;
    vertical-align: middle;
    border-bottom: 2px solid rgba(0, 221, 200, 0.2);
}

.agenda-table .th-fluid {
    color: #00ddc8;
    background: rgba(0, 221, 200, 0.07);
}

.agenda-table .th-struct {
    color: #8ab4f8;
    background: rgba(138, 180, 248, 0.07);
}

.agenda-table .th-system {
    color: #ffd580;
    background: rgba(255, 213, 128, 0.07);
}

.agenda-table .th-em {
    color: #ff8fab;
    background: rgba(255, 143, 171, 0.07);
}

/* ── Track session cells ── */
.agenda-table .td-fluid,
.agenda-table .td-struct,
.agenda-table .td-system,
.agenda-table .td-em {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agenda-table .td-fluid {
    border-top: 2px solid rgba(0, 221, 200, 0.2);
}

.agenda-table .td-struct {
    border-top: 2px solid rgba(138, 180, 248, 0.2);
}

.agenda-table .td-system {
    border-top: 2px solid rgba(255, 213, 128, 0.2);
}

.agenda-table .td-em {
    border-top: 2px solid rgba(255, 143, 171, 0.2);
}

/* Company name tag (bold, coloured) */
.agenda-table .at-co {
    display: block;
    font-weight: 700;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

/* ── Closing / Felicitations row ── */
.agenda-table tr.at-closing .at-time {
    color: #00ddc8;
    font-weight: 700;
}

.agenda-table .td-closing {
    background: rgba(0, 221, 200, 0.07);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    border-top: 2px solid rgba(0, 221, 200, 0.25);
}


/* -----------------------------------------------
   18. AGENDA — TABLET (601px – 1024px)
----------------------------------------------- */
@media screen and (min-width: 601px) and (max-width: 1024px) {

    .agenda-section {
        padding: 50px 0 60px;
    }

    .agenda-table {
        min-width: 600px;
    }

    .agenda-table .at-time,
    .agenda-table thead .at-th-time {
        width: 90px;
        min-width: 80px;
    }

    .agenda-table td,
    .agenda-table th {
        font-size: 12px;
        padding: 10px 10px;
    }
}


/* -----------------------------------------------
   19. AGENDA — MOBILE (up to 600px)
----------------------------------------------- */
@media screen and (max-width: 600px) {

    .agenda-section {
        padding: 50px 0 60px;
    }

    .agenda-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .agenda-tab {
        font-size: 13px;
        padding: 10px 16px;
    }

    .agenda-table-wrap {
        border: 1px solid rgba(0, 221, 200, 0.15);
    }

    .agenda-table {
        min-width: 640px;
    }

    .agenda-table .at-time,
    .agenda-table thead .at-th-time {
        width: 76px;
        min-width: 70px;
        font-size: 10px;
        padding: 10px 6px;
    }

    .agenda-table td,
    .agenda-table th {
        font-size: 11px;
        padding: 9px 8px;
    }

    .agenda-table tr.at-highlight td {
        font-size: 13px;
    }

    /* ── Mobile: show fade hint + scroll label ── */
    .agenda-scroll-outer::after {
        display: block;
    }

    .agenda-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-bottom: 10px;
        color: rgba(0, 221, 200, 0.75);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        animation: hint-pulse 2s ease-in-out infinite;
    }

    .agenda-scroll-hint svg {
        flex-shrink: 0;
    }

    @keyframes hint-pulse {

        0%,
        100% {
            opacity: 0.6;
            transform: translateX(0);
        }

        50% {
            opacity: 1;
            transform: translateX(3px);
        }
    }

    /* Thicker, more visible scrollbar on mobile */
    .agenda-table-wrap::-webkit-scrollbar {
        height: 5px;
    }

    .agenda-table-wrap::-webkit-scrollbar-thumb {
        background: rgba(0, 221, 200, 0.55);
        border-radius: 3px;
    }
}

/* ── Agenda plenary speaker name ── */
.agenda-table .at-speaker {
    color: #00ddc8;
    font-weight: 500;
    font-style: normal;
}

.agenda-table .at-speaker-role {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    font-style: normal;
}


/* ===============================================
   PARTNERS SECTION
   =============================================== */

.partners-section {
    background: #f4f6f9;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle top border accent */
.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ddc8 30%, #000028 70%, transparent);
}

/* ── Header ── */
.partners-header {
    text-align: center;
    margin-bottom: 48px;
}

.partners-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00a896;
    margin-bottom: 10px;
}

.partners-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #000028;
    margin-bottom: 16px;
    line-height: 1.2;
}

.partners-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #00ddc8, #000028);
    border-radius: 2px;
    margin: 0 auto;
}

/* ── Carousel Wrapper ── */
.partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* ── Track — base ── */
.partners-track {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ── Static mode (≤6 logos): centred grid ── */
.partners-track--static {
    flex-wrap: wrap;
    justify-content: center;
    /* Override mask so logos aren't faded at edges in static mode */
}

.partners-track--static ~ .partners-carousel-wrapper,
.partners-carousel-wrapper:has(.partners-track--static) {
    mask-image: none;
    -webkit-mask-image: none;
}

/* ── Marquee mode (>6 logos): scrolling ── */
.partners-track--marquee {
    width: max-content;
    animation: partnersScroll 28s linear infinite;
}

.partners-track--marquee:hover {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Individual partner item ── */
.partner-item {
    flex: 0 0 auto;
}

/* Static: each card is 1/6 of the row */
.partners-track--static .partner-item {
    flex: 1 1 calc(16.666% - 24px);
    min-width: 140px;
    max-width: 180px;
}

/* ── Logo box ── */
.partner-logo-box {
    width: 170px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e2e6ed;
    background: #ffffff;
    padding: 18px 22px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(0,221,200,0.06), rgba(0,0,40,0.04));
    transition: opacity 0.3s ease;
}

.partner-logo-box:hover {
    border-color: #00ddc8;
    box-shadow: 0 6px 24px rgba(0, 221, 200, 0.18);
    transform: translateY(-3px);
}

.partner-logo-box:hover::after {
    opacity: 1;
}

/* Dark background variant (for logos with dark/transparent bg) */
.partner-logo-box.partner-dark {
    background: #000028;
    border-color: #001a3d;
}

.partner-logo-box.partner-dark:hover {
    border-color: #00ddc8;
    box-shadow: 0 6px 24px rgba(0, 221, 200, 0.25);
}

/* ── Logo image ── */
.partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    /* Normalise visual weight */
    filter: none;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Light-bg logos: subtle desaturate at rest, full colour on hover */
.partner-img.partner-light-bg {
    filter: grayscale(20%);
    opacity: 0.88;
}

.partner-logo-box:hover .partner-img.partner-light-bg {
    filter: grayscale(0%);
    opacity: 1;
}

/* Dark-bg logos already look great; just ensure opacity */
.partner-logo-box.partner-dark .partner-img {
    opacity: 0.9;
}

.partner-logo-box.partner-dark:hover .partner-img {
    opacity: 1;
}

/* ── Static mode: override fixed width so grid works ── */
.partners-track--static .partner-logo-box {
    width: 100%;
    height: 100px;
}


/* ── Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
    .partner-logo-box {
        width: 145px;
        height: 88px;
        padding: 14px 18px;
    }

    .partners-track {
        gap: 18px;
    }

    .partners-track--static .partner-item {
        flex: 1 1 calc(33.333% - 18px);
        max-width: 200px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .partners-section {
        padding: 50px 0 60px;
    }

    .partners-carousel-wrapper {
        mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    }

    .partner-logo-box {
        width: 120px;
        height: 72px;
        padding: 10px 14px;
        border-radius: 6px;
    }

    .partners-track {
        gap: 14px;
    }

    .partners-track--static .partner-item {
        flex: 1 1 calc(50% - 14px);
        max-width: 160px;
    }

    .partners-track--marquee {
        animation-duration: 20s;
    }
}


/* ===============================================
   CONSENT TOGGLE — Show more / Show less
   =============================================== */

/* Wrapper for the consent text span + button */
.form-check-label {
    display: block;
    position: relative;
    color: #009999;
    font-size: 12px;
    line-height: 1.6;
}

/* The text span: clamp to 2 lines when collapsed */
.consent-wrap {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.consent-wrap.collapsed {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.consent-wrap.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;   /* override webkit-box so full text flows */
}

/* The button */
.consent-toggle {
    display: inline-block;
    margin-left: 4px;
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    color: #009999;
    text-decoration: underline;
    cursor: pointer;
    vertical-align: baseline;
    line-height: inherit;
    transition: color 0.2s ease;
}

.consent-toggle:hover {
    color: #00a896;
}

/* Keep the button on same line as text when collapsed */
.consent-wrap.collapsed + .consent-toggle {
    display: inline;
}


/* ===============================================
   HERO — EVENT BADGE (single-row pill with dividers)
   =============================================== */

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 40, 0.45);
    border: 1px solid rgba(100, 220, 200, 0.22);
    border-radius: 6px;
    padding: 10px 18px;
    width: fit-content;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.event-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d0f0ec;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.event-badge-item a {
    color: #fff;
    text-decoration: none;
}

.event-badge-item a:hover {
    color: #64dcc8;
}

.event-badge-divider {
    width: 1px;
    height: 18px;
    background: rgba(100, 220, 200, 0.35);
    margin: 0 16px;
    flex-shrink: 0;
}


/* ===============================================
   HERO — CTA BUTTONS ROW
   =============================================== */

.hero-cta-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

/* Primary — solid teal */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00e6dc 0%, #00ffb9 100%);
    color: #000028;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 13px 28px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 220, 0.35);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00ffee 0%, #00e6b0 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 230, 220, 0.5);
    color: #000028;
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-primary svg,
.hero-btn-primary span {
    position: relative;
    z-index: 1;
}

.hero-btn-primary:hover svg {
    transform: translateX(3px);
    transition: transform 0.25s ease;
}

/* Secondary — ghost/outline */
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 12px 26px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-btn-secondary:hover {
    border-color: #00ddc8;
    background: rgba(0, 221, 200, 0.1);
    color: #fff;
    transform: translateY(-2px);
}


/* ── Mobile: stack badge items vertically ── */
@media (max-width: 640px) {
    .event-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
        width: 100%;
        max-width: 320px;
    }

    .event-badge-divider {
        width: 100%;
        height: 1px;
        margin: 0;
        background: rgba(100, 220, 200, 0.2);
    }

    .hero-cta-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 13px 20px;
    }
}