:root {
    --primary: #073b66;
    --primary-dark: #042844;
    --secondary: #087f8c;
    --accent: #f59e0b;
    --green: #16a34a;
    --light: #f5f8fc;
    --white: #ffffff;
    --dark: #172033;
    --muted: #667085;
    --border: #dfe7ef;
    --shadow: 0 18px 45px rgba(7, 59, 102, 0.12);
    --radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
}

.seseest-home *,
.seseest-home *::before,
.seseest-home *::after {
    box-sizing: border-box;
}

.seseest-home h1,
.seseest-home h2,
.seseest-home h3,
.seseest-home h4,
.seseest-home h5 {
    font-family: "Manrope", sans-serif;
}

.seseest-home a {
    text-decoration: none;
}

.section-space {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
}

.section-description {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* Announcement bar */
.conference-alert {
    position: relative;
    z-index: 20;
    padding: 11px 15px;
    color: #fff;
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary));
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
}

.conference-alert a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Hero */
.hero-modern {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(100deg,
            rgba(4, 40, 68, 0.97) 0%,
            rgba(7, 59, 102, 0.90) 48%,
            rgba(8, 127, 140, 0.76) 100%),
        url('<?php echo base_url(); ?>resource/frontend/images/seseest-2027-hero.jpg')
        center center / cover no-repeat;
}

.hero-modern::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -180px;
    right: -120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.hero-modern::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -130px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(245,158,11,0.12);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 90px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-acronym {
    margin: 0 0 15px;
    font-size: clamp(3rem, 8vw, 6.4rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
}

.hero-acronym span {
    color: var(--accent);
}

.hero-title {
    max-width: 920px;
    margin-bottom: 22px;
    font-size: clamp(1.45rem, 3vw, 2.45rem);
    font-weight: 700;
    line-height: 1.32;
}

.hero-summary {
    max-width: 770px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.84);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    background: rgba(255,255,255,0.10);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-modern-primary {
    color: var(--primary-dark);
    background: var(--accent);
}

.btn-modern-primary:hover {
    color: var(--primary-dark);
    background: #fbbf24;
    transform: translateY(-3px);
}

.btn-modern-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    background: transparent;
}

.btn-modern-outline:hover {
    color: var(--primary-dark);
    background: #fff;
    transform: translateY(-3px);
}

.hero-side-card {
    position: relative;
    z-index: 4;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 28px 70px rgba(0,0,0,0.22);
    backdrop-filter: blur(16px);
}

.hero-side-card h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
}

.hero-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-side-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.hero-side-list li:last-child {
    border-bottom: 0;
}

.hero-side-list i {
    margin-top: 4px;
    color: var(--accent);
}

/* Quick highlights */
.quick-highlights {
    position: relative;
    z-index: 8;
    margin-top: -58px;
}

.highlight-card {
    height: 100%;
    padding: 25px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-7px);
}

.highlight-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 1.25rem;
}

.highlight-card h4 {
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-size: 1.08rem;
    font-weight: 800;
}

.highlight-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Announcement cards */
.news-card {
    height: 100%;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(7,59,102,0.07);
    transition: 0.3s ease;
}

.news-card:hover {
    border-color: rgba(8,127,140,0.45);
    transform: translateY(-5px);
}

.news-card .news-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    color: var(--secondary);
    background: rgba(8,127,140,0.1);
    font-size: 1.2rem;
}

.news-card h5 {
    color: var(--primary-dark);
    font-weight: 800;
}

.news-card p {
    color: var(--muted);
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 800;
}

/* About */
.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-floating-card {
    position: absolute;
    right: -22px;
    bottom: 28px;
    max-width: 245px;
    padding: 20px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--shadow);
}

.about-floating-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.about-content h2 {
    color: var(--primary-dark);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
}

.about-content p {
    color: var(--muted);
    line-height: 1.85;
}

.check-list {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 11px;
    margin-bottom: 12px;
    color: #344054;
    font-weight: 600;
}

.check-list i {
    margin-top: 4px;
    color: var(--green);
}

/* Important dates */
.date-card {
    position: relative;
    height: 100%;
    padding: 28px 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7,59,102,0.08);
}

.date-number {
    position: absolute;
    right: 14px;
    top: 2px;
    color: rgba(7,59,102,0.06);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
}

.date-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.date-card h5 {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 800;
}

.date-card p {
    margin: 0;
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 800;
}

/* Publication */
.publication-panel {
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
    box-shadow: 0 25px 60px rgba(7,59,102,0.2);
}

.publication-content {
    padding: 50px;
}

.publication-content h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.publication-content p {
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
}

.publication-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.publication-tag {
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.11);
    font-size: 0.88rem;
    font-weight: 700;
}

.publisher-box {
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(255,255,255,0.95);
}

.publisher-box img {
    max-width: 260px;
    max-height: 135px;
    object-fit: contain;
}

/* Tracks */
.track-card {
    height: 100%;
    padding: 25px 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    transition: 0.3s ease;
}

.track-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.track-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 14px;
    color: var(--secondary);
    background: rgba(8,127,140,0.1);
    font-size: 1.25rem;
}

.track-card h5 {
    color: var(--primary-dark);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.45;
}

/* Organization */
.partner-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7,59,102,0.07);
    text-align: center;
}

.partner-card img {
    width: 100%;
    max-width: 210px;
    height: 110px;
    margin-bottom: 20px;
    object-fit: contain;
}

.partner-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 50px;
    color: var(--secondary);
    background: rgba(8,127,140,0.10);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.partner-card h5 {
    color: var(--primary-dark);
    font-weight: 800;
}

/* Previous edition */
.previous-edition {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(90deg,
            rgba(4,40,68,0.95),
            rgba(7,59,102,0.85)),
        url('<?php echo base_url(); ?>resource/frontend/images/seseest-2026-glimpse.jpg')
        center / cover no-repeat;
    box-shadow: var(--shadow);
}

.previous-content {
    padding: 60px;
    color: #fff;
}

.previous-content h2 {
    color: #fff;
    font-weight: 800;
}

.previous-content p {
    max-width: 720px;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
}

/* CTA */
.final-cta {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

.final-cta h2 {
    margin-bottom: 15px;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
}

.final-cta p {
    max-width: 750px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-modern {
        min-height: auto;
    }

    .hero-side-card {
        margin-top: 40px;
    }

    .quick-highlights {
        margin-top: 0;
        padding-top: 35px;
    }

    .about-floating-card {
        right: 15px;
    }

    .publication-content,
    .previous-content {
        padding: 38px 28px;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 65px 0;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-acronym {
        letter-spacing: -1px;
    }

    .hero-actions .btn-modern {
        width: 100%;
    }

    .about-image {
        min-height: 300px;
    }

    .about-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 15px;
    }

    .publication-content {
        padding: 34px 23px;
    }

    .publisher-box {
        min-height: 220px;
    }

    .previous-content {
        padding: 38px 23px;
    }
}


/* Global reset and header */
body{margin:0;overflow-x:hidden;font-family:"Inter",sans-serif;color:var(--dark);background:#fff;line-height:1.7}img{max-width:100%;height:auto}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.site-header{position:relative;z-index:1000;background:#fff;border-bottom:1px solid rgba(7,59,102,.1);box-shadow:0 8px 28px rgba(7,59,102,.07)}.home-header{position:absolute;top:0;left:0;right:0;background:rgba(255,255,255,.96);backdrop-filter:blur(14px)}.nav-shell{min-height:86px;display:flex;align-items:center;gap:22px}.brand-group{display:flex;align-items:center;gap:12px;min-width:205px;color:var(--primary-dark)}.brand-logo,.partner-logo{width:58px;height:58px;object-fit:contain}.brand-text{display:flex;flex-direction:column;line-height:1.15}.brand-text strong{font-family:"Manrope",sans-serif;font-size:1.08rem;color:var(--primary-dark)}.brand-text small{font-size:.68rem;color:var(--muted);margin-top:5px}.partner-logo-link{margin-left:auto;display:flex;align-items:center}.primary-navigation{flex:1}.primary-navigation ul{display:flex;align-items:center;justify-content:center;gap:2px;margin:0;padding:0;list-style:none}.primary-navigation a{display:block;padding:11px 9px;border-radius:9px;color:#344054;font-size:.82rem;font-weight:700;white-space:nowrap}.primary-navigation a:hover,.primary-navigation .active>a{color:var(--primary);background:rgba(8,127,140,.09)}.primary-navigation .nav-cta a{color:#fff;background:linear-gradient(135deg,var(--primary),var(--secondary));padding-left:14px;padding-right:14px}.primary-navigation .nav-cta a:hover{color:#fff;transform:translateY(-2px)}.mobile-nav-toggle{display:none;width:44px;height:44px;padding:9px;border:0;border-radius:10px;background:var(--light)}.mobile-nav-toggle span:not(.sr-only){display:block;height:2px;margin:5px 0;background:var(--primary-dark)}
.home-header+.seseest-home .conference-alert{padding-top:97px}.inner-page-hero{padding:70px 0;background:linear-gradient(135deg,var(--primary-dark),var(--primary),var(--secondary));color:#fff}.inner-page-hero h1{margin:8px 0 12px;color:#fff;font-size:clamp(2rem,5vw,3.5rem)}.inner-page-kicker{font-size:.8rem;font-weight:800;letter-spacing:1.8px;text-transform:uppercase;color:#fbbf24}.inner-page-hero nav{display:flex;gap:10px;color:rgba(255,255,255,.72)}.inner-page-hero nav a{color:#fff}
/* Footer */
.seseest-footer{position:relative;overflow:hidden;color:rgba(255,255,255,.82);background:#042844}.footer-top{padding:72px 0 50px}.footer-logo{display:inline-block;margin-bottom:18px;color:#fff;font:800 2rem "Manrope",sans-serif}.footer-logo span{color:var(--accent)}.footer-brand p{color:rgba(255,255,255,.7);font-size:.94rem;line-height:1.8}.footer-column h4{position:relative;margin-bottom:23px;padding-bottom:12px;color:#fff;font-size:1.05rem}.footer-column h4:after{content:"";position:absolute;left:0;bottom:0;width:42px;height:3px;border-radius:5px;background:var(--accent)}.footer-links,.footer-contact{margin:0;padding:0;list-style:none}.footer-links li{margin-bottom:11px}.footer-links a{display:inline-flex;align-items:center;gap:8px;color:rgba(255,255,255,.72);font-size:.92rem}.footer-links a i{color:var(--accent);font-size:.72rem}.footer-links a:hover{color:#fff;transform:translateX(4px)}.footer-social{display:flex;gap:10px}.footer-social a{width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:11px;color:#fff;background:rgba(255,255,255,.08)}.footer-contact li{display:flex;align-items:flex-start;gap:12px;margin-bottom:18px}.contact-icon{width:39px;height:39px;flex:0 0 39px;display:flex;align-items:center;justify-content:center;border-radius:10px;color:var(--accent);background:rgba(245,158,11,.12)}.footer-contact strong{display:block;color:#fff;font-size:.88rem}.footer-contact p,.footer-contact a{margin:2px 0 0;color:rgba(255,255,255,.68);font-size:.88rem;line-height:1.6}.footer-bottom{padding:19px 0;border-top:1px solid rgba(255,255,255,.1);background:rgba(0,0,0,.13)}.footer-bottom p,.footer-bottom-link{color:rgba(255,255,255,.65);font-size:.86rem}.footer-divider{margin:0 9px;color:rgba(255,255,255,.25)}.back-to-top{position:fixed;right:22px;bottom:22px;z-index:999;width:47px;height:47px;display:flex;align-items:center;justify-content:center;border-radius:13px;color:var(--primary-dark);background:var(--accent);opacity:0;visibility:hidden;transform:translateY(15px);transition:.3s}.back-to-top.show{opacity:1;visibility:visible;transform:none}
@media(max-width:1199px){.brand-text{display:none}.brand-group{min-width:auto}.primary-navigation a{padding:10px 7px;font-size:.78rem}}
@media(max-width:991px){.site-header,.home-header{position:relative}.home-header+.seseest-home .conference-alert{padding-top:11px}.nav-shell{min-height:76px}.mobile-nav-toggle{display:block;margin-left:auto}.partner-logo-link{margin-left:0}.primary-navigation{position:absolute;top:76px;left:15px;right:15px;display:none;padding:14px;border-radius:14px;background:#fff;box-shadow:0 20px 45px rgba(7,59,102,.18)}.primary-navigation.open{display:block}.primary-navigation ul{display:block}.primary-navigation a{padding:11px 13px}.primary-navigation .nav-cta{margin-top:7px}.brand-text{display:flex}.partner-logo{width:48px;height:48px}}
@media(max-width:575px){.brand-text small{display:none}.brand-logo{width:48px;height:48px}.brand-text strong{font-size:.95rem}.partner-logo-link{display:none}.inner-page-hero{padding:52px 0}}






/* =========================================================
   IMPORTANT DATES PAGE
========================================================= */

.important-dates-page {
    position: relative;
    overflow: hidden;
}

.important-dates-page::before {
    content: "";
    position: absolute;
    top: 100px;
    right: -170px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.06);
}

.important-dates-page .container {
    position: relative;
    z-index: 2;
}

/* Introduction card */
.dates-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 35px;
    padding: 30px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(7, 59, 102, 0.08);
}

.dates-intro-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    font-size: 1.3rem;
}

.dates-intro-card h4 {
    margin-bottom: 10px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.25rem;
    font-weight: 800;
}

.dates-intro-card p {
    margin-bottom: 10px;
    color: var(--seseest-muted, #667085);
    line-height: 1.8;
}

/* Table wrapper */
.modern-dates-table-wrapper {
    overflow: hidden;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 59, 102, 0.10);
}

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

.modern-dates-table thead th {
    padding: 18px 22px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(
        90deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66)
    );
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    vertical-align: middle;
}

.modern-dates-table thead th:nth-child(2),
.modern-dates-table thead th:nth-child(3) {
    text-align: center;
}

.modern-dates-table tbody td {
    padding: 20px 22px;
    border-top: 1px solid #e8eef4;
    color: #344054;
    vertical-align: middle;
}

.modern-dates-table tbody tr:first-child td {
    border-top: 0;
}

.modern-dates-table tbody tr {
    transition: background 0.3s ease;
}

.modern-dates-table tbody tr:hover {
    background: #f8fbfd;
}

/* Activity title */
.date-activity {
    display: flex;
    align-items: center;
    gap: 14px;
}

.activity-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 1.05rem;
}

.date-activity strong {
    display: block;
    margin-bottom: 3px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.98rem;
    font-weight: 800;
}

.date-activity small {
    display: block;
    color: var(--seseest-muted, #667085);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Date and status */
.date-value {
    display: block;
    color: var(--seseest-primary, #073b66);
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.date-highlight {
    color: #d97706;
}

.date-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 105px;
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
}

.status-upcoming {
    color: #075985;
    background: #e0f2fe;
}

.status-conference {
    color: #166534;
    background: #dcfce7;
}

.modern-dates-table tbody td:last-child {
    text-align: center;
}

/* Information note */
.dates-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 25px;
    padding: 18px 20px;
    border-left: 4px solid var(--seseest-accent, #f59e0b);
    border-radius: 10px;
    background: #fff8e8;
}

.dates-note i {
    margin-top: 5px;
    color: #d97706;
}

.dates-note p {
    margin: 0;
    color: #6b5a2d;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Buttons */
.dates-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.dates-outline-button {
    color: var(--seseest-primary, #073b66);
    border-color: var(--seseest-primary, #073b66);
    background: transparent;
}

.dates-outline-button:hover {
    color: #ffffff;
    background: var(--seseest-primary, #073b66);
}

/* Responsive */
@media (max-width: 767px) {

    .dates-intro-card {
        display: block;
        padding: 23px 20px;
    }

    .dates-intro-icon {
        margin-bottom: 18px;
    }

    .modern-dates-table {
        min-width: 760px;
    }

    .modern-dates-table thead th,
    .modern-dates-table tbody td {
        padding: 16px;
    }

    .dates-actions .btn-modern {
        width: 100%;
    }
}




/* =========================================================
   COMMITTEES PAGE
========================================================= */

.committee-page {
    position: relative;
    overflow: hidden;
}

.committee-page::before {
    content: "";
    position: absolute;
    top: 150px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.05);
}

.committee-page .container {
    position: relative;
    z-index: 2;
}

.committee-group {
    margin-bottom: 54px;
}

.committee-group-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--seseest-border, #dfe7ef);
}

.committee-heading-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 10px 22px rgba(7, 59, 102, 0.16);
}

.committee-group-heading h2 {
    margin: 0 0 3px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.45rem;
    font-weight: 800;
}

.committee-group-heading p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.9rem;
}

/* Member cards */
.committee-member-card,
.committee-lead-card,
.organizing-member-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 24px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(7, 59, 102, 0.07);
    transition: all 0.3s ease;
}

.committee-member-card:hover,
.organizing-member-card:hover {
    border-color: rgba(8, 127, 140, 0.35);
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.12);
    transform: translateY(-5px);
}

.featured-member-card {
    border-top: 4px solid var(--seseest-accent, #f59e0b);
}

.member-avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.member-content {
    min-width: 0;
}

.member-content h4,
.organizing-member-card h4 {
    margin: 0 0 7px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.03rem;
    font-weight: 800;
    line-height: 1.4;
}

.member-content p,
.organizing-member-card p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* General chair */
.committee-lead-card {
    align-items: center;
    padding: 30px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 20px 45px rgba(7, 59, 102, 0.20);
}

.lead-avatar {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
    font-size: 1rem;
}

.committee-lead-card h4 {
    color: #ffffff;
    font-size: 1.35rem;
}

.committee-lead-card p {
    color: rgba(255, 255, 255, 0.80);
}

.member-role {
    display: inline-block;
    margin-bottom: 7px;
    padding: 5px 10px;
    border-radius: 50px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Committee list */
.committee-list-card {
    overflow: hidden;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(7, 59, 102, 0.08);
}

.committee-member-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.committee-member-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 24px;
    border-bottom: 1px solid #e8eef4;
    transition: background 0.3s ease;
}

.committee-member-list li:last-child {
    border-bottom: 0;
}

.committee-member-list li:hover {
    background: #f8fbfd;
}

.list-member-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
}

.committee-member-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.98rem;
    font-weight: 800;
}

.committee-member-list p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.87rem;
    line-height: 1.65;
}

/* Organizing members */
.organizing-member-card {
    padding: 20px;
}

.small-avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 14px;
    font-size: 0.73rem;
}

/* Responsive */
@media (max-width: 767px) {
    .committee-group {
        margin-bottom: 42px;
    }

    .committee-group-heading {
        align-items: flex-start;
    }

    .committee-group-heading h2 {
        font-size: 1.2rem;
    }

    .committee-member-card,
    .organizing-member-card {
        padding: 20px;
    }

    .committee-lead-card {
        display: block;
        padding: 25px 20px;
    }

    .lead-avatar {
        margin-bottom: 18px;
    }

    .committee-member-list li {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .committee-member-card,
    .organizing-member-card {
        display: block;
    }

    .member-avatar {
        margin-bottom: 15px;
    }
}





/* =========================================================
   CALL FOR PAPERS PAGE
========================================================= */

.cfp-page {
    position: relative;
    overflow: hidden;
}

.cfp-page::before {
    content: "";
    position: absolute;
    top: 180px;
    right: -190px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.05);
}

.cfp-page .container {
    position: relative;
    z-index: 2;
}

/* Introductory card */
.cfp-intro-card {
    margin-bottom: 34px;
    padding: 38px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 59, 102, 0.10);
}

.cfp-card-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 50px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cfp-intro-card h2 {
    margin-bottom: 17px;
    color: var(--seseest-primary-dark, #042844);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.25;
}

.cfp-intro-card p {
    color: var(--seseest-muted, #667085);
    line-height: 1.8;
}

/* Submission deadline */
.cfp-deadline-box {
    height: 100%;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    text-align: center;
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.20);
}

.deadline-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 17px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
    font-size: 1.35rem;
}

.deadline-label {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cfp-deadline-box strong {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 1.32rem;
    font-weight: 800;
}

.cfp-submit-button {
    width: 100%;
}

/* Information cards */
.cfp-information-row {
    margin-bottom: 12px;
}

.cfp-information-card {
    height: 100%;
    padding: 26px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(7, 59, 102, 0.07);
    transition: all 0.3s ease;
}

.cfp-information-card:hover {
    border-color: rgba(8, 127, 140, 0.35);
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.12);
    transform: translateY(-5px);
}

.cfp-information-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 14px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 1.15rem;
}

.cfp-information-card h4 {
    margin-bottom: 10px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.05rem;
    font-weight: 800;
}

.cfp-information-card p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* Publication notice */
.cfp-publication-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 75px;
    padding: 24px;
    border: 1px solid #f4d892;
    border-left: 5px solid var(--seseest-accent, #f59e0b);
    border-radius: 14px;
    background: #fff9e9;
}

.cfp-note-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #b45309;
    background: rgba(245, 158, 11, 0.15);
}

.cfp-publication-note h4 {
    margin: 0 0 6px;
    color: #70420b;
    font-size: 1rem;
    font-weight: 800;
}

.cfp-publication-note p {
    margin: 0;
    color: #765a29;
    font-size: 0.89rem;
    line-height: 1.7;
}

/* Scope */
.cfp-scope-heading {
    margin-bottom: 40px;
}

/* Track cards */
.cfp-track-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(7, 59, 102, 0.08);
    transition: all 0.3s ease;
}

.cfp-track-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 46px rgba(7, 59, 102, 0.14);
    transform: translateY(-6px);
}

.cfp-track-header {
    position: relative;
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 21px;
    padding-right: 50px;
}

.cfp-track-number {
    position: absolute;
    top: -22px;
    right: -12px;
    color: rgba(7, 59, 102, 0.06);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
}

.cfp-track-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    font-size: 1.16rem;
    box-shadow: 0 10px 22px rgba(7, 59, 102, 0.16);
}

.cfp-track-header h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.45;
}

.cfp-topic-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cfp-topic-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 22px;
    color: #475467;
    font-size: 0.9rem;
    line-height: 1.55;
}

.cfp-topic-list li:last-child {
    margin-bottom: 0;
}

.cfp-topic-list li::before {
    content: "\f058";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--seseest-secondary, #087f8c);
    font-family: "Font Awesome 6 Free";
    font-size: 0.82rem;
    font-weight: 900;
}

/* Final CTA */
.cfp-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 35px;
    padding: 42px;
    border-radius: 25px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 22px 50px rgba(7, 59, 102, 0.20);
}

.cfp-final-cta .cfp-card-label {
    color: #fff4cf;
    background: rgba(255, 255, 255, 0.12);
}

.cfp-final-cta h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
}

.cfp-final-cta p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.cfp-final-actions {
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cfp-white-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
}

.cfp-white-outline:hover {
    color: var(--seseest-primary-dark, #042844);
    background: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .cfp-final-cta {
        display: block;
        padding: 35px 28px;
    }

    .cfp-final-actions {
        width: 100%;
        margin-top: 26px;
    }
}

@media (max-width: 767px) {
    .cfp-intro-card {
        padding: 26px 21px;
    }

    .cfp-publication-note {
        display: block;
        margin-bottom: 55px;
    }

    .cfp-note-icon {
        margin-bottom: 14px;
    }

    .cfp-track-card {
        padding: 23px 20px;
    }

    .cfp-track-header {
        align-items: flex-start;
        padding-right: 15px;
    }

    .cfp-track-number {
        display: none;
    }

    .cfp-final-cta {
        padding: 30px 22px;
    }

    .cfp-final-actions .btn-modern {
        width: 100%;
    }
}





/* =========================================================
   ABOUT CONFERENCE PAGE
========================================================= */

.about-conference-page {
    position: relative;
    overflow: hidden;
}

.about-conference-page::before {
    content: "";
    position: absolute;
    top: 160px;
    right: -190px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.05);
}

.about-conference-page .container {
    position: relative;
    z-index: 2;
}

/* Conference introduction */
.about-conference-card {
    margin-bottom: 75px;
    padding: 40px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 59, 102, 0.10);
}

.about-card-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 50px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.about-conference-card h2 {
    margin-bottom: 18px;
    color: var(--seseest-primary-dark, #042844);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.25;
}

.about-conference-card p {
    color: var(--seseest-muted, #667085);
    line-height: 1.85;
}

/* Highlight panel */
.about-conference-highlights {
    overflow: hidden;
    padding: 12px 24px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.20);
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.about-highlight-item:last-child {
    border-bottom: 0;
}

.about-highlight-item > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
}

.about-highlight-item strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 0.92rem;
}

.about-highlight-item small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* Objectives */
.about-objectives-section {
    margin-bottom: 75px;
}

.about-objective-card {
    height: 100%;
    padding: 27px 23px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(7, 59, 102, 0.07);
    transition: all 0.3s ease;
}

.about-objective-card:hover {
    border-color: rgba(8, 127, 140, 0.35);
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.12);
    transform: translateY(-6px);
}

.objective-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    font-size: 1.16rem;
}

.about-objective-card h4 {
    margin-bottom: 10px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.03rem;
    font-weight: 800;
}

.about-objective-card p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.89rem;
    line-height: 1.72;
}

/* Organizer */
.organizer-section {
    margin-bottom: 45px;
    padding: 45px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 59, 102, 0.10);
}

.organizer-image-wrapper {
    position: relative;
}

.organizer-image {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 21px;
}

.organizer-image-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 255px;
    padding: 16px;
    border-radius: 15px;
    color: #ffffff;
    background: rgba(4, 40, 68, 0.94);
    box-shadow: 0 12px 30px rgba(4, 40, 68, 0.25);
}

.organizer-image-badge i {
    color: var(--seseest-accent, #f59e0b);
    font-size: 1.3rem;
}

.organizer-image-badge strong,
.organizer-image-badge span {
    display: block;
}

.organizer-image-badge strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.organizer-image-badge span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
}

.organizer-content h2 {
    margin-bottom: 16px;
    color: var(--seseest-primary-dark, #042844);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 800;
}

.organizer-content p {
    color: var(--seseest-muted, #667085);
    line-height: 1.8;
}

/* Organizer facts */
.organizer-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.organizer-fact {
    padding: 16px 10px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 14px;
    background: #f8fbfd;
    text-align: center;
}

.organizer-fact strong {
    display: block;
    margin-bottom: 4px;
    color: var(--seseest-primary, #073b66);
    font-size: 1.15rem;
    font-weight: 800;
}

.organizer-fact span {
    display: block;
    color: var(--seseest-muted, #667085);
    font-size: 0.73rem;
    line-height: 1.4;
}

/* Accreditation */
.organizer-accreditation {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 25px;
    padding: 16px 18px;
    border-left: 4px solid var(--seseest-accent, #f59e0b);
    border-radius: 10px;
    background: #fff8e8;
}

.organizer-accreditation i {
    margin-top: 5px;
    color: #d97706;
}

.organizer-accreditation p {
    margin: 0;
    color: #765a29;
    font-size: 0.87rem;
    line-height: 1.65;
}

/* Technical sponsor */
.technical-sponsor-card {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 34px 40px;
    border-radius: 23px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 20px 45px rgba(7, 59, 102, 0.20);
}

.technical-sponsor-logo {
    width: 225px;
    flex: 0 0 225px;
    padding: 20px;
    border-radius: 17px;
    background: #ffffff;
}

.technical-sponsor-logo img {
    width: 100%;
    height: 95px;
    object-fit: contain;
}

.technical-sponsor-content .about-card-label {
    color: #fff4cf;
    background: rgba(255, 255, 255, 0.12);
}

.technical-sponsor-content h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
}

.technical-sponsor-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 991px) {
    .organizer-section {
        padding: 34px 28px;
    }

    .organizer-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .technical-sponsor-card {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .about-conference-card {
        padding: 27px 21px;
        margin-bottom: 55px;
    }

    .about-objectives-section {
        margin-bottom: 55px;
    }

    .organizer-section {
        padding: 25px 20px;
    }

    .organizer-image {
        min-height: 300px;
    }

    .organizer-image-badge {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 14px;
    }

    .organizer-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .technical-sponsor-card {
        display: block;
        padding: 28px 22px;
    }

    .technical-sponsor-logo {
        width: 100%;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .organizer-facts {
        grid-template-columns: 1fr;
    }
}





/* =========================================================
   PAPER SUBMISSION AND PEER REVIEW PAGE
========================================================= */

.submission-page {
    position: relative;
    overflow: hidden;
}

.submission-page::before {
    content: "";
    position: absolute;
    top: 180px;
    right: -180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.05);
}

.submission-page .container {
    position: relative;
    z-index: 2;
}

/* Overview */
.submission-overview-card {
    margin-bottom: 34px;
    padding: 40px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 59, 102, 0.10);
}

.submission-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 50px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.submission-overview-card h2 {
    margin-bottom: 16px;
    color: var(--seseest-primary-dark, #042844);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
}

.submission-overview-card p {
    color: var(--seseest-muted, #667085);
    line-height: 1.8;
}

.submission-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #475467;
    font-size: 0.91rem;
}

.submission-contact i {
    color: var(--seseest-secondary, #087f8c);
}

.submission-contact a {
    color: var(--seseest-primary, #073b66);
    font-weight: 700;
}

/* Deadline */
.submission-deadline-box {
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 27px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    text-align: center;
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.20);
}

.submission-deadline-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 17px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
    font-size: 1.35rem;
}

.submission-deadline-label {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submission-deadline-box strong {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
}

.submission-main-button {
    width: 100%;
}

/* Facts */
.submission-facts {
    margin-bottom: 12px;
}

.submission-fact-card {
    height: 100%;
    padding: 25px 21px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(7, 59, 102, 0.07);
    text-align: center;
    transition: all 0.3s ease;
}

.submission-fact-card:hover {
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.12);
    transform: translateY(-5px);
}

.submission-fact-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
}

.submission-fact-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.96rem;
}

.submission-fact-card p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.83rem;
    line-height: 1.6;
}

/* General section card */
.submission-section-card {
    margin-bottom: 35px;
    padding: 35px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(7, 59, 102, 0.08);
}

.submission-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 27px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e6edf3;
}

.submission-section-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
}

.submission-section-heading h2 {
    margin: 0 0 4px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.45rem;
    font-weight: 800;
}

.submission-section-heading p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.88rem;
}

/* Resource buttons */
.submission-guideline-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 26px;
}

.submission-resource-button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 15px;
    color: var(--seseest-primary-dark, #042844);
    background: #f8fbfd;
    transition: all 0.3s ease;
}

.submission-resource-button > i:first-child {
    color: var(--seseest-secondary, #087f8c);
    font-size: 1.2rem;
}

.submission-resource-button > i:last-child {
    margin-left: auto;
    color: var(--seseest-muted, #667085);
}

.submission-resource-button strong,
.submission-resource-button small {
    display: block;
}

.submission-resource-button small {
    margin-top: 3px;
    color: var(--seseest-muted, #667085);
    font-size: 0.76rem;
}

.submission-resource-button:hover {
    color: var(--seseest-primary-dark, #042844);
    border-color: rgba(8, 127, 140, 0.4);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 59, 102, 0.10);
    transform: translateY(-3px);
}

/* Guidelines */
.modern-guideline-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.modern-guideline-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #e8eef4;
}

.modern-guideline-list li:last-child {
    border-bottom: 0;
}

.modern-guideline-list > li > i {
    margin-top: 5px;
    color: var(--seseest-secondary, #087f8c);
}

.modern-guideline-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.94rem;
}

.modern-guideline-list p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.87rem;
    line-height: 1.7;
}

/* CMT */
.cmt-acknowledgement {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 35px;
    padding: 26px;
    border-left: 5px solid #2563eb;
    border-radius: 15px;
    background: #eff6ff;
}

.cmt-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: #2563eb;
    font-size: 1.2rem;
}

.cmt-acknowledgement h4 {
    margin: 0 0 7px;
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 800;
}

.cmt-acknowledgement p {
    margin: 0 0 10px;
    color: #435578;
    font-size: 0.87rem;
    line-height: 1.7;
}

.agreement-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 800;
}

/* Review process */
.review-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.review-step-card {
    position: relative;
    overflow: hidden;
    padding: 24px 20px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 17px;
    background: #f8fbfd;
}

.review-step-card > i {
    margin-bottom: 16px;
    color: var(--seseest-secondary, #087f8c);
    font-size: 1.3rem;
}

.review-step-number {
    position: absolute;
    top: -9px;
    right: 7px;
    color: rgba(7, 59, 102, 0.07);
    font-size: 3.5rem;
    font-weight: 800;
}

.review-step-card h4 {
    margin-bottom: 8px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.98rem;
    font-weight: 800;
}

.review-step-card p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.82rem;
    line-height: 1.65;
}

.review-workload-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 17px;
    border-radius: 12px;
    background: #fff8e8;
}

.review-workload-note i {
    margin-top: 4px;
    color: #d97706;
}

.review-workload-note p {
    margin: 0;
    color: #765a29;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Criteria */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.criteria-card {
    padding: 22px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 16px;
    background: #f8fbfd;
    transition: all 0.3s ease;
}

.criteria-card:hover {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 59, 102, 0.10);
    transform: translateY(-4px);
}

.criteria-card > i {
    margin-bottom: 14px;
    color: var(--seseest-secondary, #087f8c);
    font-size: 1.2rem;
}

.criteria-card h4 {
    margin-bottom: 8px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.94rem;
    font-weight: 800;
}

.criteria-card p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.8rem;
    line-height: 1.65;
}

/* Ethics */
.ethical-criteria-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ethical-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 19px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 15px;
    background: #f8fbfd;
}

.ethical-item > i {
    margin-top: 4px;
    color: var(--seseest-secondary, #087f8c);
}

.ethical-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.91rem;
}

.ethical-item p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Reviewer cards */
.reviewer-information-row {
    margin-bottom: 12px;
}

.reviewer-feedback-card,
.reviewer-responsibility-card {
    height: 100%;
    padding: 30px;
    border-radius: 21px;
    box-shadow: 0 15px 38px rgba(7, 59, 102, 0.11);
}

.reviewer-feedback-card {
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66)
    );
}

.reviewer-responsibility-card {
    border: 1px solid var(--seseest-border, #dfe7ef);
    background: #ffffff;
}

.reviewer-card-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 14px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
}

.reviewer-feedback-card h3,
.reviewer-responsibility-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 800;
}

.reviewer-feedback-card h3 {
    color: #ffffff;
}

.reviewer-responsibility-card h3 {
    color: var(--seseest-primary-dark, #042844);
}

.reviewer-feedback-card p {
    color: rgba(255, 255, 255, 0.76);
}

.reviewer-feedback-card ol {
    margin: 18px 0 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.reviewer-feedback-card li,
.reviewer-responsibility-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.reviewer-responsibility-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.reviewer-responsibility-card li {
    position: relative;
    padding-left: 24px;
    color: var(--seseest-muted, #667085);
    font-size: 0.87rem;
}

.reviewer-responsibility-card li::before {
    content: "\f058";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--seseest-secondary, #087f8c);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Final CTA */
.submission-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px;
    border-radius: 25px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 22px 50px rgba(7, 59, 102, 0.20);
}

.submission-final-cta .submission-label {
    color: #fff4cf;
    background: rgba(255, 255, 255, 0.12);
}

.submission-final-cta h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
}

.submission-final-cta p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.submission-final-actions {
    min-width: 225px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.submission-white-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
}

.submission-white-outline:hover {
    color: var(--seseest-primary-dark, #042844);
    background: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .review-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .submission-final-cta {
        display: block;
    }

    .submission-final-actions {
        width: 100%;
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .submission-overview-card,
    .submission-section-card {
        padding: 26px 20px;
    }

    .submission-guideline-actions,
    .review-process-grid,
    .criteria-grid,
    .ethical-criteria-list {
        grid-template-columns: 1fr;
    }

    .submission-section-heading,
    .cmt-acknowledgement {
        align-items: flex-start;
    }

    .submission-contact {
        align-items: flex-start;
    }

    .submission-final-cta {
        padding: 30px 22px;
    }

    .submission-final-actions .btn-modern {
        width: 100%;
    }
}


/* =========================================================
   CHIEF GUEST AND KEYNOTE SPEAKERS PAGE
========================================================= */

.speakers-page {
    position: relative;
    overflow: hidden;
}

.speakers-page::before {
    content: "";
    position: absolute;
    top: 140px;
    right: -190px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.05);
}

.speakers-page::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -210px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.05);
}

.speakers-page .container {
    position: relative;
    z-index: 2;
}


/* Speaker card */
.modern-speaker-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(7, 59, 102, 0.09);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.modern-speaker-card:hover {
    border-color: rgba(8, 127, 140, 0.35);
    box-shadow: 0 24px 52px rgba(7, 59, 102, 0.15);
    transform: translateY(-8px);
}

.featured-speaker {
    border-top: 5px solid var(--seseest-accent, #f59e0b);
}


/* Speaker image */
.speaker-image-wrapper {
    position: relative;
    height: 295px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #f8fbfd,
            #edf4f8
        );
}

.modern-speaker-image {
    width: 100%;
    height: 100%;
    padding: 18px 18px 0;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.4s ease;
}

.modern-speaker-card:hover .modern-speaker-image {
    transform: scale(1.035);
}


/* Speaker role badge */
.speaker-role-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(4, 40, 68, 0.18);
}

.chief-guest-badge {
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
}

.keynote-badge {
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
}


/* Speaker content */
.speaker-card-content {
    position: relative;
    padding: 27px 25px 25px;
}

.speaker-card-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 45px;
    height: 4px;
    border-radius: 20px;
    background: var(--seseest-accent, #f59e0b);
}

.speaker-category {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--seseest-secondary, #087f8c);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.speaker-card-content h3 {
    min-height: 56px;
    margin-bottom: 18px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.23rem;
    font-weight: 800;
    line-height: 1.4;
}


/* Speaker details */
.speaker-designation,
.speaker-affiliation {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px 0;
    border-top: 1px solid #e9eef3;
}

.speaker-designation i,
.speaker-affiliation i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 0.85rem;
}

.speaker-designation p,
.speaker-affiliation p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.86rem;
    line-height: 1.65;
}


/* Country label */
.speaker-country {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 7px 12px;
    border-radius: 50px;
    color: var(--seseest-primary, #073b66);
    background: #eef6fa;
    font-size: 0.78rem;
    font-weight: 800;
}

.speaker-country i {
    color: var(--seseest-accent, #f59e0b);
}


/* Information note */
.speaker-information-note {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 850px;
    margin: 24px auto 0;
    padding: 19px 22px;
    border: 1px solid #d6e7f0;
    border-left: 5px solid var(--seseest-secondary, #087f8c);
    border-radius: 14px;
    background: #f2f9fc;
}

.speaker-information-note > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: var(--seseest-secondary, #087f8c);
}

.speaker-information-note p {
    margin: 0;
    color: #44576a;
    font-size: 0.88rem;
    line-height: 1.65;
}


/* Responsive */
@media (max-width: 991px) {
    .speaker-image-wrapper {
        height: 275px;
    }
}

@media (max-width: 767px) {
    .speaker-image-wrapper {
        height: 285px;
    }

    .speaker-card-content {
        padding: 25px 21px 22px;
    }

    .speaker-card-content h3 {
        min-height: auto;
    }

    .speaker-information-note {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .speaker-image-wrapper {
        height: 260px;
    }

    .speaker-role-badge {
        top: 14px;
        left: 14px;
    }
}


/* =========================================================
   SESEEST 2027 SPEAKER UPDATE
========================================================= */

.speaker-update-card {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 75px;
    padding: 34px 38px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 20px 48px rgba(7, 59, 102, 0.20);
}

.speaker-update-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
    font-size: 1.65rem;
}

.speaker-update-content {
    flex: 1;
}

.speaker-update-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 50px;
    color: #fff4cf;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.speaker-update-content h2 {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
}

.speaker-update-content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.speaker-update-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}


/* Previous edition heading */
.previous-speakers-heading {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.previous-speakers-heading h2 {
    margin-bottom: 12px;
    color: var(--seseest-primary-dark, #042844);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 800;
}

.previous-speakers-heading p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    line-height: 1.75;
}


/* Previous edition badge */
.previous-edition-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 11px;
    border-radius: 50px;
    color: #ffffff;
    background: rgba(4, 40, 68, 0.88);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}


/* Responsive */
@media (max-width: 991px) {
    .speaker-update-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .speaker-update-status {
        margin-left: 96px;
    }
}

@media (max-width: 767px) {
    .speaker-update-card {
        display: block;
        margin-bottom: 55px;
        padding: 27px 22px;
    }

    .speaker-update-icon {
        margin-bottom: 18px;
    }

    .speaker-update-status {
        margin: 20px 0 0;
        white-space: normal;
    }
}


/* =========================================================
   FIX SPEAKER PHOTO ALIGNMENT
========================================================= */

/* Keep all cards equal in height */
.speakers-page .row {
    align-items: stretch;
}

.speakers-page .row > [class*="col-"] {
    display: flex;
}

.modern-speaker-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Equal image frame for every speaker */
.speaker-image-wrapper {
    position: relative;
    width: 100%;
    height: 310px;
    flex: 0 0 310px;
    overflow: hidden;
    border-bottom: 1px solid #e5edf3;
    background: linear-gradient(
        145deg,
        #f8fbfd 0%,
        #edf4f8 100%
    );
}

/* Centre every photograph inside the same frame */
.modern-speaker-image {
    position: absolute;
    top: 18px;
    right: 18px;
    bottom: 0;
    left: 18px;

    width: calc(100% - 36px);
    height: calc(100% - 18px);

    padding: 0;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

/* Keep all text sections aligned */
.speaker-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 27px 25px 25px;
}

.speaker-card-content h3 {
    min-height: 58px;
    margin-bottom: 18px;
}

/* Keep country badge at the same bottom position */
.speaker-country {
    margin-top: auto;
    align-self: flex-start;
}

/* Prevent role badges from affecting image alignment */
.speaker-role-badge {
    z-index: 3;
}

.previous-edition-badge {
    z-index: 3;
}

/* Tablet */
@media (max-width: 991px) {
    .speaker-image-wrapper {
        height: 290px;
        flex-basis: 290px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .speaker-image-wrapper {
        height: 300px;
        flex-basis: 300px;
    }

    .speaker-card-content h3 {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .speaker-image-wrapper {
        height: 275px;
        flex-basis: 275px;
    }
}






/* =========================================================
   PUBLICATION AND INDEXING PAGE
========================================================= */

.publication-page {
    position: relative;
    overflow: hidden;
}

.publication-page::before {
    content: "";
    position: absolute;
    top: 150px;
    right: -190px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.05);
}

.publication-page .container {
    position: relative;
    z-index: 2;
}


/* Main publication card */
.publication-main-card {
    margin-bottom: 35px;
    padding: 40px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 59, 102, 0.10);
}

.publication-year-label,
.previous-publication-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 50px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.publication-main-card h2 {
    margin-bottom: 17px;
    color: var(--seseest-primary-dark, #042844);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
}

.publication-main-card p {
    color: var(--seseest-muted, #667085);
    line-height: 1.82;
}


/* Publication process */
.publication-process-box {
    height: 100%;
    padding: 28px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.20);
}

.publication-process-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 16px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
    font-size: 1.3rem;
}

.publication-process-box h4 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.16rem;
    font-weight: 800;
}

.publication-process-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.publication-process-box li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    line-height: 1.55;
}

.publication-process-box li:last-child {
    margin-bottom: 0;
}

.publication-process-box li::before {
    content: "\f058";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--seseest-accent, #f59e0b);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


/* Indexing */
.publication-indexing-card {
    margin-bottom: 35px;
    padding: 34px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(7, 59, 102, 0.08);
}

.publication-indexing-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.publication-indexing-heading > span {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
}

.publication-indexing-heading h2 {
    margin: 0 0 3px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.45rem;
    font-weight: 800;
}

.publication-indexing-heading p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.86rem;
}

.publication-indexing-card > p {
    color: var(--seseest-muted, #667085);
    line-height: 1.75;
}

.indexing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin: 23px 0;
}

.indexing-badges span {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border: 1px solid #d8e6ed;
    border-radius: 50px;
    color: var(--seseest-primary, #073b66);
    background: #f2f8fb;
    font-size: 0.82rem;
    font-weight: 800;
}

.publication-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border-left: 4px solid var(--seseest-accent, #f59e0b);
    border-radius: 11px;
    background: #fff8e8;
}

.publication-disclaimer i {
    margin-top: 5px;
    color: #d97706;
}

.publication-disclaimer p {
    margin: 0;
    color: #765a29;
    font-size: 0.86rem;
    line-height: 1.68;
}


/* Previous edition publication */
.previous-publication-section {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
    overflow: hidden;
    margin-bottom: 75px;
    border-radius: 25px;
    background: linear-gradient(
        135deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 22px 50px rgba(7, 59, 102, 0.20);
}

.previous-publication-content {
    padding: 45px;
    color: #ffffff;
}

.previous-publication-content .previous-publication-label {
    color: #fff4cf;
    background: rgba(255, 255, 255, 0.12);
}

.previous-publication-content h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
}

.previous-publication-content p {
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.8;
}

.previous-publication-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    background: #ffffff;
    text-align: center;
}

.previous-publication-logo img {
    width: 100%;
    max-width: 250px;
    height: 105px;
    margin-bottom: 18px;
    object-fit: contain;
}

.publication-logo-label {
    display: block;
    margin-bottom: 18px;
    color: var(--seseest-muted, #667085);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.previous-publication-logo strong {
    display: block;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1rem;
}

.previous-publication-logo small {
    margin-top: 4px;
    color: var(--seseest-muted, #667085);
}


/* Requirements */
.publication-requirements-section {
    margin-bottom: 35px;
}

.publication-requirement-card {
    height: 100%;
    padding: 25px 22px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(7, 59, 102, 0.07);
    transition: all 0.3s ease;
}

.publication-requirement-card:hover {
    border-color: rgba(8, 127, 140, 0.35);
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.12);
    transform: translateY(-5px);
}

.publication-requirement-card > span {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
}

.publication-requirement-card h4 {
    margin-bottom: 9px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1rem;
    font-weight: 800;
}

.publication-requirement-card p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.86rem;
    line-height: 1.7;
}


/* Final notice */
.publication-final-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 25px;
    border: 1px solid #f4d892;
    border-left: 5px solid var(--seseest-accent, #f59e0b);
    border-radius: 15px;
    background: #fff9e9;
}

.publication-final-note > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: #d97706;
}

.publication-final-note h4 {
    margin: 0 0 7px;
    color: #70420b;
    font-size: 1rem;
    font-weight: 800;
}

.publication-final-note p {
    margin: 0;
    color: #765a29;
    font-size: 0.87rem;
    line-height: 1.7;
}


/* Responsive */
@media (max-width: 991px) {
    .previous-publication-section {
        grid-template-columns: 1fr;
    }

    .previous-publication-logo {
        min-height: 245px;
    }
}

@media (max-width: 767px) {
    .publication-main-card,
    .publication-indexing-card {
        padding: 27px 21px;
    }

    .publication-indexing-heading,
    .publication-disclaimer,
    .publication-final-note {
        align-items: flex-start;
    }

    .previous-publication-content {
        padding: 32px 22px;
    }

    .previous-publication-logo {
        padding: 28px 22px;
    }
}









/* =========================================================
   REGISTRATION PAGE
========================================================= */

.registration-page {
    position: relative;
    overflow: hidden;
}

.registration-page::before {
    content: "";
    position: absolute;
    top: 160px;
    right: -190px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.05);
}

.registration-page .container {
    position: relative;
    z-index: 2;
}


/* Registration introduction */
.registration-intro-card {
    margin-bottom: 35px;
    padding: 40px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 59, 102, 0.10);
}

.registration-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 50px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.registration-intro-card h2 {
    margin-bottom: 17px;
    color: var(--seseest-primary-dark, #042844);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
}

.registration-intro-card p {
    color: var(--seseest-muted, #667085);
    line-height: 1.82;
}


/* Support box */
.registration-support-box {
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.20);
}

.registration-support-box > span {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 16px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
    font-size: 1.25rem;
}

.registration-support-box h4 {
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 800;
}

.registration-support-box p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.65;
}

.registration-support-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.registration-support-box a:hover {
    color: var(--seseest-accent, #f59e0b);
}


/* Table cards */
.registration-table-card,
.registration-notes-card {
    overflow: hidden;
    margin-bottom: 35px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(7, 59, 102, 0.08);
}

.registration-card-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 27px 30px;
    border-bottom: 1px solid #e6edf3;
}

.registration-heading-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
}

.registration-card-heading h2 {
    margin: 0 0 4px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1.4rem;
    font-weight: 800;
}

.registration-card-heading p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.86rem;
}


/* Registration table */
.registration-fee-table {
    width: 100%;
    border-collapse: collapse;
}

.registration-fee-table thead th {
    padding: 17px 22px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(
        90deg,
        var(--seseest-primary-dark, #042844),
        var(--seseest-primary, #073b66)
    );
    font-size: 0.86rem;
    font-weight: 800;
    vertical-align: middle;
}

.registration-fee-table thead th:nth-child(2),
.registration-fee-table thead th:nth-child(3) {
    text-align: center;
}

.registration-fee-table tbody td {
    padding: 20px 22px;
    border-top: 1px solid #e8eef4;
    vertical-align: middle;
}

.registration-fee-table tbody tr {
    transition: background 0.3s ease;
}

.registration-fee-table tbody tr:hover {
    background: #f8fbfd;
}

.registration-category {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--seseest-secondary, #087f8c);
    background: rgba(8, 127, 140, 0.10);
}

.registration-category strong {
    display: block;
    margin-bottom: 3px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 0.94rem;
}

.registration-category small {
    display: block;
    color: var(--seseest-muted, #667085);
    font-size: 0.78rem;
    line-height: 1.5;
}

.registration-fee-table tbody td:nth-child(2),
.registration-fee-table tbody td:nth-child(3) {
    text-align: center;
}

.registration-fee {
    color: var(--seseest-primary, #073b66);
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
}

.registration-payment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 112px;
    padding: 9px 15px;
    border-radius: 10px;
    color: var(--seseest-primary-dark, #042844);
    background: var(--seseest-accent, #f59e0b);
    font-size: 0.8rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.registration-payment-button:hover {
    color: var(--seseest-primary-dark, #042844);
    background: #fbbf24;
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
}


/* Notes */
.registration-note-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 10px 30px 25px;
}

.registration-note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #e8eef4;
}

.registration-note-item i {
    margin-top: 5px;
    color: var(--seseest-secondary, #087f8c);
}

.registration-note-item p {
    margin: 0;
    color: var(--seseest-muted, #667085);
    font-size: 0.85rem;
    line-height: 1.68;
}


/* Policies */
.registration-policy-section {
    margin-bottom: 35px;
}

.registration-policy-card {
    height: 100%;
    padding: 26px 22px;
    border: 1px solid var(--seseest-border, #dfe7ef);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(7, 59, 102, 0.07);
    transition: all 0.3s ease;
}

.registration-policy-card:hover {
    border-color: rgba(8, 127, 140, 0.35);
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.12);
    transform: translateY(-5px);
}

.policy-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--seseest-primary, #073b66),
        var(--seseest-secondary, #087f8c)
    );
}

.registration-policy-card h4 {
    margin-bottom: 12px;
    color: var(--seseest-primary-dark, #042844);
    font-size: 1rem;
    font-weight: 800;
}

.registration-policy-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.registration-policy-card li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    color: var(--seseest-muted, #667085);
    font-size: 0.83rem;
    line-height: 1.65;
}

.registration-policy-card li:last-child {
    margin-bottom: 0;
}

.registration-policy-card li::before {
    content: "\f058";
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--seseest-secondary, #087f8c);
    font-family: "Font Awesome 6 Free";
    font-size: 0.76rem;
    font-weight: 900;
}


/* Final notice */
.registration-final-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 25px;
    border: 1px solid #f4d892;
    border-left: 5px solid var(--seseest-accent, #f59e0b);
    border-radius: 15px;
    background: #fff9e9;
}

.registration-final-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: #d97706;
}

.registration-final-notice h4 {
    margin: 0 0 7px;
    color: #70420b;
    font-size: 1rem;
    font-weight: 800;
}

.registration-final-notice p {
    margin: 0;
    color: #765a29;
    font-size: 0.87rem;
    line-height: 1.7;
}


/* Responsive */
@media (max-width: 991px) {
    .registration-note-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .registration-intro-card {
        padding: 27px 21px;
    }

    .registration-card-heading {
        align-items: flex-start;
        padding: 23px 20px;
    }

    .registration-fee-table {
        min-width: 760px;
    }

    .registration-fee-table thead th,
    .registration-fee-table tbody td {
        padding: 16px;
    }

    .registration-note-grid {
        padding: 8px 18px 20px;
    }

    .registration-final-notice {
        align-items: flex-start;
    }
}