/* ========== ROOT VARIABLES ========== */
:root {
    --primary-color: #1E35C8;
    --secondary-color: #152BB0;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --white: #ffffff;

    /* ── Brand dark/gold palette ── */
    --gold:          #F5A800;
    --gold-dark:     #D4920A;
    --brand-dark:    #0A0A14;
    --brand-card:    #12122A;
    --brand-mid:     #1A1A3A;
    --brand-navy:    #1E35C8;
    --brand-border:  rgba(245, 168, 0, 0.25);
    --brand-subtle:  rgba(255, 255, 255, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--brand-dark);
    border-bottom: 1px solid var(--brand-border);
}

.navbar {
    padding: 0.85rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.logo-highlight {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.register-btn {
    background-color: var(--gold) !important;
    color: var(--brand-dark) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 0.5rem;
    font-weight: 700 !important;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.register-btn:hover {
    background-color: var(--gold-dark) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ========== COUNTDOWN TIMER ========== */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 0.8rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== MAIN CONTENT ========== */
main {
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* ========== STATS SECTION ========== */
.stats {
    background-color: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ========== CARDS SECTION ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== TEAM SECTION ========== */
.team {
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: var(--white);
    border-radius: 0.8rem;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 250px;
    background-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.team-info {
    padding: 1.5rem;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Programme Page */
.event-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.structure-item {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.structure-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.schedule-note {
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
}

.schedule-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-button.active, .tab-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.day-schedule {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    margin-bottom: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-time {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.schedule-details {
    padding: 1rem;
    flex: 1;
}

.schedule-details h3 {
    margin-bottom: 0.5rem;
}

.submission-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.submission-item {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.call-for-papers {
    background-color: var(--background-color);
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== FORMS ========== */
form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem 1.5rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .cards-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem 1rem;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
}

/* ========== PROGRAM SECTION ========== */
.program-section {
    background-color: var(--light-bg);
}

.day-schedule {
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}

.day-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.event-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.event-item:last-child {
    border-bottom: none;
}

.event-time {
    font-weight: 600;
    color: var(--text-dark);
}

.event-title {
    font-weight: 500;
    margin-top: 0.3rem;
}

.event-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* ========== SPONSOR TIERS ========== */
.sponsor-tier {
    margin-bottom: 3rem;
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.sponsor-logo {
    width: 100%;
    max-width: 200px;
    height: 150px;
    background-color: var(--light-bg);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.sponsor-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background-color: #1E35C8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpolygon points='28,2 54,28 28,54 2,28' fill='none' stroke='white' stroke-width='2' opacity='0.12'/%3E%3Cpolygon points='28,10 46,28 28,46 10,28' fill='none' stroke='white' stroke-width='1.3' opacity='0.07'/%3E%3Ccircle cx='28' cy='28' r='2' fill='white' opacity='0.12'/%3E%3C/svg%3E");
    background-size: 56px 56px;
    color: var(--white);
    padding: 5rem 2rem 3.5rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.page-header-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    margin-top: 0.6rem;
}

/* ========== COMING SOON — programme & register ========== */
.coming-soon-section { padding: 5rem 2rem; }

.coming-soon-card {
    background: #F0F4FF;
    border: 1px solid #E2E8F0;
    border-radius: 1.2rem;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.coming-soon-card .cs-icon {
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    display: block;
}
.coming-soon-card h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #0F172A;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}
.coming-soon-card > p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.cs-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.cs-meta span {
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cs-notify {
    font-size: 0.95rem;
    color: #64748B;
    margin-top: 1rem;
}
.cs-notify a {
    color: var(--brand-navy);
    font-weight: 700;
    text-decoration: none;
}
.cs-notify a:hover { text-decoration: underline; }

/* day preview grid (programme page) */
.programme-days-preview { background: #F0F4FF; padding: 5rem 2rem; }
.day-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.day-preview-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(30,53,200,0.07);
}
.day-preview-header {
    background: linear-gradient(135deg, #1E35C8, #2538D4);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.dp-day-num  { font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.25); font-family: 'Poppins',sans-serif; line-height: 1; }
.dp-day-theme { font-size: 1rem; font-weight: 700; color: #ffffff; font-family: 'Poppins',sans-serif; line-height: 1.3; }
.day-preview-body { padding: 1.4rem 1.5rem; }
.day-preview-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.day-preview-body li {
    color: #475569;
    font-size: 0.93rem;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.4;
}
.day-preview-body li::before { content: '→'; position: absolute; left: 0; color: var(--brand-navy); font-weight: 700; }

/* applications opening soon panel */
.apps-soon-card {
    background: linear-gradient(135deg, #1E35C8, #2538D4);
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    text-align: center;
    color: #fff;
    position: sticky;
    top: 100px;
}
.apps-soon-card .cs-icon { color: var(--gold); }
.apps-soon-card h2 { font-size: 1.6rem; font-weight: 800; font-family: 'Poppins',sans-serif; margin-bottom: 1rem; color: #fff; }
.apps-soon-card > p { color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 1.5rem; }
.apps-soon-card .cs-notify { color: rgba(255,255,255,0.72); }
.apps-soon-card .cs-notify a { color: var(--gold); }
.apps-soon-dates { list-style: none; text-align: left; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.apps-soon-dates li { color: rgba(255,255,255,0.85); font-size: 0.9rem; padding-left: 1.4rem; position: relative; }
.apps-soon-dates li::before { content: '📅'; position: absolute; left: 0; }

/* sponsors table header colour */
.sponsor-table thead tr { background-color: #1E35C8; }

/* ========== ABOUT PAGE ========== */
.about-section {
    padding: 4rem 2rem;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

.event-details-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
}

.event-details-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event-details-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* ========== MISSION SECTION ========== */
.mission-section {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.mission-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(30,53,200,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30,53,200,0.14);
}

.mission-card-header {
    background: linear-gradient(135deg, #1E35C8, #2538D4);
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.mission-card-header i {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.92);
    display: block;
}

.mission-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.mission-card-body {
    padding: 1.4rem 1.5rem;
}

.mission-card-body p {
    color: #475569;
    line-height: 1.65;
    margin: 0;
    font-size: 0.95rem;
}

/* ========== TIMELINE / HIGHLIGHTS SECTION ========== */
.highlights-section {
    padding: 4rem 2rem;
}

.highlights-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 54px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-date {
    min-width: 48px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-color);
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
    border-radius: 0.4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-top: 0.4rem;
}

.timeline-content {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 1.5rem;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== PROGRAMME PAGE ========== */
.programme-overview {
    padding: 4rem 2rem;
}

.programme-coming-soon {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--light-bg);
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.programme-coming-soon h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.programme-coming-soon p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.programme-details {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
}

.programme-details p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0.8rem 0;
}

/* ========== REGISTRATION PAGE ========== */
.registration-section {
    padding: 4rem 2rem;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.column h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.column > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.registration-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.registration-benefits li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.registration-benefits li:last-child {
    border-bottom: none;
}

.registration-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.registration-types {
    margin-top: 2rem;
}

.registration-types h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.registration-type {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.registration-type:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.registration-type h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.registration-type .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.registration-type p:last-child {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.important-dates {
    margin-top: 2rem;
    background-color: var(--light-bg);
    border-radius: 0.8rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.important-dates h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.important-dates ul {
    list-style: none;
}

.important-dates li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.important-dates li:last-child {
    border-bottom: none;
}

.important-dates li::before {
    content: '📅';
    position: absolute;
    left: 0;
}

.registration-form {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.registration-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.registration-form form {
    margin: 0;
    max-width: 100%;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.faq-section {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ========== BUTTON VARIANTS ========== */
.button {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========== SPONSORS PAGE ========== */
.sponsors-intro {
    padding: 4rem 2rem;
    text-align: center;
}

.sponsors-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.sponsors-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.sponsors-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.sponsors-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
}

.sponsor-table {
    width: 100%;
    border-collapse: collapse;
}

.sponsor-table thead tr {
    background-color: var(--primary-color);
    color: var(--white);
}

.sponsor-table th,
.sponsor-table td {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    text-align: left;
    white-space: nowrap;
}

.sponsor-table th:not(:first-child),
.sponsor-table td:not(:first-child) {
    text-align: center;
}

.sponsor-table tbody tr:nth-child(odd) {
    background-color: var(--white);
}

.sponsor-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.sponsor-card-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sponsor-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.sponsor-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.become-sponsor {
    padding: 4rem 2rem;
}

.sponsor-cta {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    background-color: var(--light-bg);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cta-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
}

.cta-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cta-content ul {
    list-style: none;
}

.cta-content li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.cta-content li:last-child {
    border-bottom: none;
}

.cta-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 3.5rem;
}

.partners-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.partners-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-logo.placeholder {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    border: 1px dashed var(--border-color);
}

.partner-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========== ABOUT PAGE RESPONSIVE ========== */
@media (max-width: 768px) {
    .about-grid,
    .two-column,
    .sponsor-cta {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 3rem 1.5rem;
    }

    .cta-action {
        padding-top: 0;
    }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║              HOME PAGE — DARK / GOLD THEME                  ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── Shared helpers ── */
.ix-gold       { color: var(--gold); }
.ix-centered   { text-align: center; }

.ix-btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--brand-dark);
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.ix-btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245,168,0,0.35);
}
.ix-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--brand-navy);
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(30,53,200,0.40);
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
}
.ix-btn-secondary:hover {
    border-color: var(--brand-navy);
    background: rgba(30,53,200,0.06);
    color: var(--brand-navy);
    transform: translateY(-2px);
}
.ix-btn-lg { font-size: 1.15rem; padding: 1rem 2.8rem; }

.ix-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0F172A;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.6rem;
    line-height: 1.15;
}
.ix-section-sub {
    color: #64748B;
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* ── African pattern strip — Tswana/Leteisi diamond motif ── */
.ix-african-strip {
    height: 56px;
    background-color: #1E35C8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpolygon points='28,2 54,28 28,54 2,28' fill='none' stroke='white' stroke-width='2' opacity='0.8'/%3E%3Cpolygon points='28,10 46,28 28,46 10,28' fill='none' stroke='white' stroke-width='1.3' opacity='0.5'/%3E%3Cpolygon points='28,18 38,28 28,38 18,28' fill='none' stroke='white' stroke-width='0.8' opacity='0.3'/%3E%3Ccircle cx='28' cy='28' r='2.5' fill='white' opacity='0.9'/%3E%3Ccircle cx='28' cy='4' r='1.5' fill='white' opacity='0.7'/%3E%3Ccircle cx='28' cy='52' r='1.5' fill='white' opacity='0.7'/%3E%3Ccircle cx='4' cy='28' r='1.5' fill='white' opacity='0.7'/%3E%3Ccircle cx='52' cy='28' r='1.5' fill='white' opacity='0.7'/%3E%3C/svg%3E");
    background-size: 56px 56px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.ix-african-strip::before,
.ix-african-strip::after { display: none; }
.ix-strip-top { transform: scaleY(-1); }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  HERO                                                        ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ix-hero {
    background: linear-gradient(160deg, #ffffff 0%, #EEF2FF 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ix-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 55% 55% at 85% 25%, rgba(30,53,200,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,168,0,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.ix-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30,53,200,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,53,200,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
}
.ix-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
}
.ix-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 68vh;
}
/* badges */
.ix-badge-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.ix-badge {
    background: var(--gold);
    color: var(--brand-dark);
    padding: 0.45rem 1.1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ix-badge-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
/* title */
.ix-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #0F172A;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}
.ix-title-year { color: rgba(30,53,200,0.25); font-size: 0.75em; }
.ix-tagline { color: #64748B; font-style: italic; font-size: 1.05rem; margin-bottom: 0.8rem; }
.ix-desc  { color: #475569; font-size: 1rem; line-height: 1.85; margin-bottom: 2rem; }
.ix-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* diamond visual */
.ix-hero-visual {
    position: relative;
    height: 420px;
}
.ix-diamond {
    position: absolute;
    width: 150px;
    height: 150px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: rgba(255,255,255,0.9);
    transition: transform 0.3s ease;
}
.ix-diamond:hover { transform: scale(1.07) rotate(6deg); }
.ix-d1 { background: linear-gradient(135deg,#1E35C8,#2538D4); top: 20px;  left: 50%; transform: translateX(-50%); }
.ix-d2 { background: linear-gradient(135deg,#F5A800,#D4920A); top: 130px; left: 5%;  }
.ix-d3 { background: linear-gradient(135deg,#1E35C8,#152BB0); top: 130px; right: 5%; }
.ix-d4 { background: linear-gradient(135deg,#2538D4,#1E35C8); bottom: 20px; left: 50%; transform: translateX(-50%); }
.ix-hero-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(245,168,0,0.12);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.ix-hero-ring::before {
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 1px solid rgba(245,168,0,0.08);
}

/* countdown */
.ix-countdown {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    padding: 2rem 0 0.5rem;
    flex-wrap: wrap;
}
.ix-cd-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 1.3rem 1.8rem;
    text-align: center;
    min-width: 104px;
    box-shadow: 0 2px 16px rgba(30,53,200,0.08);
}
.ix-cd-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brand-navy);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.ix-cd-lbl { font-size: 0.75rem; color: #64748B; text-transform: uppercase; letter-spacing: 1px; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  STATS BAR                                                   ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ix-stats {
    background: #1E35C8;
    padding: 2.5rem 2rem;
}
.ix-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.ix-stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}
.ix-stat-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 1px; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  MISSION                                                     ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ix-mission { background: #ffffff; padding: 5rem 2rem; }
.ix-mission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ix-mission-body { color: #475569; line-height: 1.85; margin: 1.2rem 0 2rem; font-size: 1.02rem; }
.ix-checklist { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.ix-checklist li {
    color: #1E293B;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}
.ix-checklist li .fa-check-circle { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ix-free-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    background: var(--gold);
    color: var(--brand-dark);
    padding: 0.7rem 1.4rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
}
/* mission visual */
.ix-mission-visual { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.ix-speaker-frame {
    width: 220px;
    height: 220px;
    clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
    background: linear-gradient(135deg,#1E35C8,#2538D4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 2;
}
.ix-visual-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
}
.ix-dot-a { width: 14px; height: 14px; top: 40px; left: 60px; }
.ix-dot-b { width: 10px; height: 10px; bottom: 80px; right: 50px; background: #1E35C8; }
.ix-dot-c { width: 18px; height: 18px; bottom: 50px; left: 80px; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  HIGHLIGHTS CARDS                                            ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ix-highlights { background: #F0F4FF; padding: 5rem 2rem; }
.ix-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.ix-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    padding: 2rem 1.8rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ix-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30,53,200,0.12);
    border-color: #1E35C8;
}
.ix-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.6rem;
    background: rgba(30,53,200,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--brand-navy);
    margin-bottom: 1.2rem;
}
.ix-card h3 { color: #0F172A; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; font-family: 'Poppins',sans-serif; }
.ix-card p  { color: #64748B; font-size: 0.92rem; line-height: 1.75; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  SCHEDULE                                                    ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ix-schedule { background: #ffffff; padding: 5rem 2rem; }
.ix-schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.ix-schedule-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(30,53,200,0.07);
}
.ix-schedule-header {
    background: linear-gradient(135deg,#1E35C8,#2538D4);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ix-day-num  { font-size: 0.78rem; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.ix-day-name { font-size: 1rem; color: var(--white); font-weight: 700; font-family: 'Poppins',sans-serif; }
.ix-schedule-body { padding: 1.2rem 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.ix-sched-row { display: flex; gap: 0.8rem; align-items: flex-start; }
.ix-sched-time  { font-size: 0.78rem; color: var(--gold); font-weight: 700; white-space: nowrap; padding-top: 2px; }
.ix-sched-title { font-size: 0.9rem; color: #475569; line-height: 1.5; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  TEAM                                                        ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ix-team { background: #F0F4FF; padding: 5rem 2rem; }
.ix-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.5rem;
}
.ix-team-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.ix-team-card:hover { transform: translateY(-4px); border-color: #1E35C8; box-shadow: 0 8px 24px rgba(30,53,200,0.12); }
.ix-team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg,#1E35C8,#2538D4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 1.2rem;
    border: 3px solid rgba(30,53,200,0.15);
}
.ix-team-card h3   { color: #0F172A; font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; font-family: 'Poppins',sans-serif; }
.ix-team-role      { color: var(--brand-navy); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.6rem; }
.ix-team-bio       { color: #64748B; font-size: 0.88rem; line-height: 1.6; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  CTA                                                         ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ix-cta { background: #1E35C8; padding: 0; }
.ix-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.ix-cta-title { font-size: 2.2rem; font-weight: 900; color: #ffffff; font-family: 'Poppins',sans-serif; margin-bottom: 0.5rem; }
.ix-cta-sub   { color: rgba(255,255,255,0.82); font-size: 1.05rem; }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  FOOTER DARK REFRESH                                         ║
   ╚══════════════════════════════════════════════════════════════╝ */
footer { border-top: 1px solid var(--brand-border); }
.footer-bottom { border-top: 1px solid rgba(245,168,0,0.15); }

/* ╔══════════════════════════════════════════════════════════════╗
   ║  RESPONSIVE — HOME PAGE                                      ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media (max-width: 900px) {
    .ix-hero-inner    { grid-template-columns: 1fr; min-height: auto; }
    .ix-hero-visual   { height: 300px; }
    .ix-mission-split { grid-template-columns: 1fr; }
    .ix-mission-visual{ height: 260px; }
    .ix-stats-grid    { grid-template-columns: repeat(2,1fr); }
    .ix-cta-inner     { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .ix-title    { letter-spacing: -0.5px; }
    .ix-cd-item  { padding: 1rem 1.2rem; min-width: 80px; }
    .ix-cd-num   { font-size: 2.2rem; }
    .ix-stats-grid { grid-template-columns: repeat(2,1fr); }
    .ix-cta-title  { font-size: 1.6rem; }
}