:root {
    --primary: #8C6A43;
    --primary-dark: #5B4B8A;
    --secondary: #B08968;
    --accent: #B784A7;
    --button: #D4A373;
    --button-hover: #BC8A5F;
    --background: #FFFCFA;
    --section: #FAF5F2;
    --card: #FFFFFF;
    --title: #5B4B8A;
    --text: #52525B;
    --template-bg: url("../img/submission-bg.svg");
    --template-bg-size: 100% 100%;
    --template-page-bg-size: 100% 620px;
    --non-home-bg: url("../img/submission-bg.svg");
    --ink: #52525B;
    --muted: #52525B;
    --line: #EFE6DD;
    --soft: #FAF5F2;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(140, 106, 67, 0.12);
    --ics-purple: #8C6A43;
    --ics-purple-2: #B08968;
    --ics-cyan: #B784A7;
    --ics-dark: #5B4B8A;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.65;
    background:
        linear-gradient(rgba(255, 252, 250, 0.54), rgba(255, 252, 250, 0.62)),
        var(--template-bg) center top / var(--template-page-bg-size) repeat-y;
    background-size: auto, 106% 700px;
    animation: pageBackgroundFlow 34s ease-in-out infinite alternate;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text);
    background: var(--card);
    font: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--button);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.18);
}

.ics-layout {
    color: var(--text);
    background: transparent;
}

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

.ics-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 248, 242, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(140, 106, 67, 0.12);
}

.ics-header::before {
    display: block;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--button), var(--secondary));
    background-size: 220% 100%;
    animation: headerGlow 6s ease-in-out infinite alternate;
}

.ics-navbar {
    width: min(1460px, calc(100% - 2rem));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 1.6rem;
}

.ics-logo {
    color: var(--title);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 220ms ease, color 220ms ease;
}

.ics-logo:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.ics-logo-with-image {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.ics-logo-with-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 5px;
    border: 1px solid #EFE6DD;
    box-shadow: 0 10px 24px rgba(140, 106, 67, 0.14);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.ics-logo-with-image:hover img {
    transform: rotate(-3deg) scale(1.04);
    box-shadow: 0 14px 30px rgba(140, 106, 67, 0.18);
}

.ics-logo-with-image span {
    color: var(--title);
}

.ics-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.ics-nav-links a {
    position: relative;
    padding: 0.78rem 0.9rem;
    border-radius: 6px;
    color: var(--title);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ics-nav-links a::after {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.45rem;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.ics-nav-links a:hover::after,
.ics-nav-links a.active::after {
    opacity: 0.55;
    transform: scaleX(1);
}

.ics-nav-links a:hover,
.ics-nav-links a.active {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 10px 22px rgba(140, 106, 67, 0.22);
}

.ics-nav-links a:hover {
    transform: translateY(-1px);
}

.ics-nav-check,
.ics-nav-button {
    display: none;
}

.ics-hero {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--title);
    text-align: center;
    background:
        linear-gradient(rgba(255, 248, 242, 0.14), rgba(255, 248, 242, 0.22)),
        var(--template-bg) center center / var(--template-bg-size) no-repeat,
        linear-gradient(135deg, #dff6f6, #fff8f2 46%, #e7d9f5);
    background-size: auto, 110% 110%, auto;
    animation: heroBackgroundFlow 22s ease-in-out infinite alternate;
}

.ics-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 248, 242, 0.08), rgba(253, 242, 236, 0.22), rgba(248, 237, 235, 0.14));
    transform: scale(1.03);
}

.ics-hero-content {
    position: relative;
    z-index: 1;
    width: min(820px, calc(100% - 2rem));
    margin-top: -34px;
    padding: 3.7rem 1.25rem 3.2rem;
    animation: heroEnter 700ms ease both;
}

.ics-hero-content::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    border: 1px solid rgba(239, 230, 221, 0.85);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
        radial-gradient(circle at 12% 18%, rgba(141, 221, 222, 0.18), transparent 34%),
        radial-gradient(circle at 86% 86%, rgba(143, 106, 216, 0.14), transparent 32%);
    backdrop-filter: blur(5px);
    box-shadow: 0 24px 64px rgba(91, 75, 138, 0.12);
}

.ics-tag {
    display: inline-flex;
    margin: 0 0 1.2rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--primary);
    background: #FFFFFF;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.12em;
    animation: softFloat 4s ease-in-out infinite;
}

.ics-hero h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(100%, 720px);
    margin: 0 0 1rem;
    padding: 0.58rem 1.15rem;
    border: 1px solid rgba(239, 230, 221, 0.95);
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 26px rgba(140, 106, 67, 0.08);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
    animation: fadeRise 700ms ease 120ms both;
}

.ics-hero h1 {
    margin: 0;
    color: var(--title);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.7rem, 5.6vw, 5rem);
    font-weight: 900;
    line-height: 0.98;
    text-shadow: 0 12px 28px rgba(91, 75, 138, 0.12);
    animation: fadeRise 760ms ease 240ms both;
}

.ics-date {
    display: inline-flex;
    margin: 1.2rem 0 1.7rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    color: var(--title);
    background: rgba(255, 255, 255, 0.56);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    animation: fadeRise 760ms ease 360ms both;
}

.ics-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: fadeRise 760ms ease 480ms both;
}

.ics-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 6px;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ics-btn::before,
.btn::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: translateX(-120%);
    transition: transform 520ms ease;
}

.ics-btn:hover::before,
.btn:hover::before {
    transform: translateX(120%);
}

.ics-btn.primary {
    color: #ffffff;
    background: var(--primary);
}

.ics-btn.secondary {
    color: #ffffff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.ics-btn:hover {
    color: #ffffff;
    background: var(--button-hover);
    box-shadow: 0 14px 28px rgba(188, 138, 95, 0.24);
    transform: translateY(-3px);
}

.ics-countdown {
    width: min(860px, calc(100% - 2rem));
    margin: -58px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #EFE6DD;
    box-shadow: 0 24px 70px rgba(140, 106, 67, 0.12);
}

.ics-countdown div {
    padding: 1.7rem 1rem;
    text-align: center;
    border-right: 1px solid #EFE6DD;
}

.ics-countdown div:last-child {
    border-right: 0;
}

.ics-countdown strong {
    display: block;
    color: var(--ics-purple);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    line-height: 1;
}

.ics-countdown span {
    color: #52525B;
    font-weight: 700;
}

.page-hero {
    min-height: 390px;
    display: grid;
    align-content: center;
    padding: 5.5rem max(1rem, calc((100vw - 1260px) / 2));
    color: #5B4B8A;
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.9), rgba(255, 252, 248, 0.72)),
        var(--non-home-bg) center center / cover no-repeat;
    background-size: auto, 112% 112%;
    animation: pageHeroBackgroundFlow 22s ease-in-out infinite alternate;
    border-bottom: 1px solid #EFE6DD;
    overflow: hidden;
}

.page-hero span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeRise 650ms ease both;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.25rem, 4.6vw, 4rem);
    line-height: 1.08;
    animation: fadeRise 720ms ease 120ms both;
}

.page-hero p {
    max-width: 720px;
    margin: 1rem 0 0;
    color: #52525B;
    font-size: 1.16rem;
    animation: fadeRise 720ms ease 240ms both;
}

.page-content {
    padding: 5rem max(1rem, calc((100vw - 1180px) / 2));
    min-height: 44vh;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
}

.page-card {
    padding: 1.5rem;
    border: 1px solid #EFE6DD;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 40px rgba(140, 106, 67, 0.08);
    min-width: 0;
    overflow-wrap: anywhere;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.page-card:hover,
.ics-card-grid article:hover,
.committee-list article:hover,
.ics-panel:hover {
    border-color: rgba(212, 163, 115, 0.7);
    box-shadow: 0 20px 45px rgba(140, 106, 67, 0.12);
    transform: translateY(-6px);
}

.page-card h2,
.page-card h3 {
    margin: 0 0 0.9rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
}

.page-card h2 {
    font-size: 1.35rem;
}

.page-card p,
.page-card li {
    color: #52525B;
}

.page-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.wide-card {
    grid-column: span 2;
}

.full-card {
    grid-column: 1 / -1;
}

.simple-list {
    display: grid;
    gap: 1rem;
}

.simple-list div {
    padding: 1rem;
    border-left: 4px solid #D4A373;
    border-radius: 6px;
    background: #FAF5F2;
    overflow-wrap: anywhere;
}

.ics-section {
    padding: 4.5rem max(1rem, calc((100vw - 1180px) / 2));
}

.ics-soft {
    background: rgba(250, 245, 242, 0.62);
}

.ics-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
}

.ics-split.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.ics-image-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(140, 106, 67, 0.14);
    transition: box-shadow 260ms ease, transform 260ms ease;
}

.ics-image-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 520ms ease;
}

.ics-image-card:hover {
    box-shadow: 0 26px 64px rgba(140, 106, 67, 0.18);
    transform: translateY(-4px);
}

.ics-image-card:hover img {
    transform: scale(1.04);
}

.conference-showcase {
    align-items: stretch;
}

.conference-image {
    position: relative;
    min-height: 430px;
}

.conference-image img {
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.compact-logo-card {
    display: grid;
    place-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(145deg, #ffffff, #FAF5F2);
}

.compact-logo-card img {
    width: min(360px, 100%);
    aspect-ratio: auto;
    object-fit: contain;
}

.ics-highlight-panel {
    min-height: 360px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0.75rem;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 8px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 163, 115, 0.34), transparent 28%),
        linear-gradient(135deg, #5B4B8A, #8C6A43);
    box-shadow: 0 20px 55px rgba(140, 106, 67, 0.18);
}

.ics-highlight-panel i {
    color: #F4DDEA;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.ics-highlight-panel strong {
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
}

.ics-highlight-panel span,
.ics-highlight-panel small {
    display: block;
}

.ics-highlight-panel span {
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
}

.ics-highlight-panel small {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.ics-small-title,
.ics-section-title span {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    text-align: center;
}
.important{
    margin: 0 0 1rem; color: #5B4B8A; font-family: "Jost", Arial, sans-serif; font-size: clamp(1.6rem, 3vw, 2.45rem); line-height: 1.08;
}
.ics-copy h2,
.ics-section-title h2,
.ics-action-band h2 {
    margin: 0 0 1rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.ics-copy p,
.ics-center-text,
.ics-action-band p {
    color: #52525B;
    font-size: 1.02rem;
}

.ics-copy blockquote {
    margin: 1.6rem 0 0;
    padding-left: 1rem;
    border-left: 4px solid #D4A373;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.ics-section-title {
    max-width: 760px;
    margin: 0 auto 2.6rem;
    text-align: center;
}

.ics-card-grid,
.ics-date-grid,
.ics-people-grid {
    display: grid;
    gap: 1.2rem;
}

.ics-card-grid {
    grid-template-columns: repeat(4, 1fr);
}

.page-content .ics-card-grid {
    width: min(1060px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.ics-card-grid article,
.ics-people-grid article,
.ics-panel {
    padding: 1.5rem;
    border: 1px solid #EFE6DD;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 40px rgba(140, 106, 67, 0.08);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.page-content .ics-card-grid article {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.6rem 1.75rem;
    overflow: hidden;
    text-align: center;
    border-color: rgba(212, 163, 115, 0.34);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(140, 106, 67, 0.09);
}

.page-content .ics-card-grid article::before {
    position: absolute;
    top: -52px;
    right: -42px;
    width: 118px;
    height: 118px;
    content: "";
    border-radius: 50%;
    background: rgba(91, 75, 138, 0.08);
}

.page-content .ics-card-grid article::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, #5B4B8A, #D4A373, #FF8A00);
}

.ics-card-grid i {
    color: #8C6A43;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: color 220ms ease, transform 220ms ease;
}

.page-content .ics-card-grid i {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 1rem;
    border-radius: 14px;
    color: #8C6A43;
    background: #F8EBDD;
    font-size: 1.45rem;
}

.ics-card-grid article:hover i {
    color: var(--accent);
    transform: translateY(-3px) scale(1.08);
}

.ics-card-grid h3,
.ics-panel h3 {
    margin: 0 0 0.7rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
}

.page-content .ics-card-grid h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.85rem;
    color: #5B4B8A;
    font-size: 1.24rem;
    font-weight: 800;
    line-height: 1.35;
}

.ics-card-grid p,
.ics-panel p {
    color: #52525B;
}

.page-content .ics-card-grid p {
    position: relative;
    z-index: 1;
    max-width: 30ch;
    margin: 0;
    color: #52525B;
    font-size: 1rem;
    line-height: 1.62;
    text-align: justify;
}

@media (max-width: 980px) {
    .page-content .ics-card-grid {
        width: min(720px, 100%);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-content .ics-card-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .page-content .ics-card-grid article {
        min-height: 0;
        padding: 1.55rem 1.2rem 1.45rem;
    }

    .page-content .ics-card-grid p {
        max-width: 100%;
    }
}

.ics-dates {
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 15%, rgba(183, 132, 167, 0.3), transparent 28%),
        linear-gradient(135deg, #5B4B8A, #8C6A43);
}

.ics-dates .ics-section-title h2,
.ics-dates .ics-section-title span {
     color:#FFD166;
    font-family:"Jost", Arial, sans-serif;
    font-size:42px;
    font-weight:800;
    letter-spacing:0.5px;
    text-shadow:0 3px 8px rgba(0,0,0,.25);
}

.ics-date-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ics-date-grid div{
    padding:30px 25px;
    border-radius:14px;
    background:rgba(255, 255, 255, 0.12);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(10px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.ics-date-grid div:hover{
    background:rgba(255,255,255,.22);
    transform:translateY(-8px);
}

.ics-date-grid strong{
    color:#FFFFFF;
}

.ics-date-grid span{
    color:#FFD166;
}

.ics-date-grid strong,
.ics-date-grid span {
    display: block;
}

.ics-date-grid strong {
    margin-bottom: 0.5rem;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
}

.ics-table-wrap {
    overflow-x: auto;
}

.ics-fee-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    /* overflow: hidden; */
    border-radius: 8px;
}

.ics-fee-table th,
.ics-fee-table td {
    padding: 1rem;
    border: 1px solid #EFE6DD;
    text-align: center;
}

.ics-fee-table th {
    color: #ffffff;
    background: #8C6A43;
}

.ics-panel {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ics-people-grid {
    grid-template-columns: repeat(5, 1fr);
}

.committee-list {
    display: grid;
    width: min(1040px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.committee-list article {
    min-height: 150px;
    padding: 1.25rem 1.35rem;
    border: 1px solid #EFE6DD;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 40px rgba(140, 106, 67, 0.08);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.committee-list h3 {
    margin: 0 0 0.85rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
}

.committee-list p {
    color: #52525B;
    margin-bottom: 0.55rem;
}

.committee-list article:first-child {
    grid-column: 5 / span 4;
}

.committee-list article:nth-child(2) {
    grid-column: 3 / span 4;
}

.committee-list article:nth-child(3) {
    grid-column: 7 / span 4;
}

.committee-list article:nth-child(4) {
    grid-column: 2 / span 3;
}

.committee-list article:nth-child(5) {
    grid-column: 5 / span 3;
}

.committee-list article:nth-child(6) {
    grid-column: 8 / span 3;
}

.committee-page-body {
    background: #ffffff;
}

.committee-page-body .page-content {
    background: #ffffff;
}

.organized-committee {
    min-height: 70vh;
    padding: 3.25rem max(1rem, calc((100vw - 1180px) / 2)) 5rem;
    background: #ffffff;
}

.committee-hero {
    position: relative;
    min-height: 330px;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: 4.5rem max(1.25rem, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid #f0dfcc;
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.9), rgba(255, 252, 248, 0.72)),
        url("../img/submission-bg.svg") center center / cover no-repeat,
        #fff8ef;
    background-size: auto, 112% 112%, auto;
    animation: heroBackgroundFlow 22s ease-in-out infinite alternate;
}

.committee-hero::before,
.committee-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.committee-hero::before {
    right: -90px;
    bottom: -120px;
    width: 430px;
    height: 220px;
    border: 1px solid rgba(212, 163, 115, 0.45);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.committee-hero::after {
    right: 9%;
    top: 18%;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(212, 163, 115, 0.42);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.committee-hero span,
.committee-hero h1,
.committee-hero p {
    position: relative;
    z-index: 1;
}

.committee-hero span {
    margin-bottom: 0.55rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.committee-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.15rem);
    font-weight: 800;
    line-height: 1.04;
}

.committee-hero p {
    max-width: 720px;
    margin: 1.1rem 0 0;
    color: #52525B;
    font-size: 1.16rem;
}

.organized-committee-title {
    margin: 0 auto 2.2rem;
    text-align: center;
}

.organized-committee-title span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.45rem;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    color: #8C6A43;
    background: rgba(212, 163, 115, 0.14);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.organized-committee-title h1 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.organized-committee-title h1::after,
.committee-group h2::after {
    position: absolute;
    left: 50%;
    bottom: -0.6rem;
    width: 72px;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, #5B4B8A, #D4A373);
    transform: translateX(-50%);
}

.committee-group {
    width: min(900px, 100%);
    margin: 0 auto 2.1rem;
    text-align: center;
}

.committee-group h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 1.65rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.committee-card-grid {
    display: grid;
    gap: 1rem;
}

.two-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.committee-card {
    position: relative;
    min-height: 138px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.35rem;
    overflow: hidden;
    padding: 1.35rem 1.1rem;
    border: 1px solid rgba(212, 163, 115, 0.32);
    border-bottom: 3px solid #D4A373;
    border-radius: 8px;
    color: #52525B;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(140, 106, 67, 0.1);
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.committee-card:hover {
    border-color: rgba(140, 106, 67, 0.45);
    box-shadow: 0 22px 46px rgba(140, 106, 67, 0.15);
    transform: translateY(-5px);
}

.committee-card-wide {
    width: min(520px, 100%);
    margin: 0 auto;
    min-height: 150px;
}

.committee-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #5B4B8A, #8C6A43);
    box-shadow: 0 10px 22px rgba(91, 75, 138, 0.18);
}

.committee-card span {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.committee-card h3 {
    margin: 0.2rem 0 0.1rem;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.committee-card p {
    margin: 0;
    color: #52525B;
    font-size: 0.83rem;
    line-height: 1.45;
}

.committee-card-wide h3 {
    font-size: 1.08rem;
}

@media (max-width: 900px) {
    .committee-hero {
        min-height: 290px;
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .organized-committee {
        padding-top: 2.75rem;
        padding-bottom: 4rem;
    }

    .three-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .committee-hero {
        min-height: 260px;
        padding: 3rem 1rem;
    }

    .committee-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .committee-hero p {
        font-size: 1rem;
    }

    .organized-committee {
        padding: 2.5rem 1rem 3.5rem;
    }

    .two-card-grid,
    .three-card-grid {
        grid-template-columns: 1fr;
    }

    .committee-card,
    .committee-card-wide {
        min-height: 0;
    }
}


.ics-people-grid strong,
.ics-people-grid span {
    display: block;
}

.ics-people-grid strong {
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1rem;
}

.ics-people-grid span {
    color: #52525B;
}

.ics-action-band {
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #5B4B8A, #8C6A43);
}

.ics-action-band h2,
.ics-action-band p {
    color: #ffffff;
}

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

.ics-footer {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 2rem;
    padding: 4rem max(1rem, calc((100vw - 1180px) / 2)) 2rem;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 85% 15%, rgba(183, 132, 167, 0.16), transparent 26%),
        linear-gradient(135deg, #5B4B8A, #8C6A43);
}

.ics-footer h3,
.ics-footer h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-family: "Jost", Arial, sans-serif;
}

.ics-footer a {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.status-success,
.status-warning,
.status-error {
    padding: 1rem;
    border-radius: 8px;
    background: #ffffff;
    font-weight: 700;
}

.status-success {
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #047857;
}

.status-warning {
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #B45309;
}

.status-error {
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #B91C1C;
}

.ics-credit {
    grid-column: 1 / -1;
    margin: 1rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.conf-header {
    background: var(--white);
}

.conf-brand-row {
    width: min(1180px, calc(100% - 2rem));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.conf-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
}

.conf-logo span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--button));
    font-weight: 700;
}

.conf-logo strong {
    font-size: 1.15rem;
}

.conf-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.conf-meta i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.conf-menu-check {
    display: none;
}

.conf-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--primary);
    box-shadow: 0 12px 24px rgba(140, 106, 67, 0.18);
}

.conf-nav-links {
    width: min(1180px, calc(100% - 2rem));
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.conf-nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    padding: 0 0.8rem;
    color: var(--white);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.conf-nav-links a::after {
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 12px;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.conf-nav-links a:hover,
.conf-nav-links a.active {
    background: rgba(255, 255, 255, 0.14);
}

.conf-nav-links a:hover::after,
.conf-nav-links a.active::after {
    transform: scaleX(1);
}

.conf-menu-btn {
    display: none;
    width: min(1180px, calc(100% - 2rem));
    min-height: 58px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.conf-page-hero {
    min-height: 330px;
    display: grid;
    place-items: center;
    padding: 5rem 1rem;
    text-align: center;
    color: var(--title);
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.9), rgba(255, 252, 248, 0.72)),
        var(--non-home-bg) center center / cover no-repeat;
    background-size: auto, 112% 112%;
    animation: pageHeroBackgroundFlow 22s ease-in-out infinite alternate;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.conf-page-hero p {
    margin: 0 0 0.8rem;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.conf-page-hero h1 {
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.5rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.conf-page-hero span {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(9, 44, 62, 0.08);
}

.top-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
    padding: 0.6rem 1rem;
    color: var(--white);
    background: var(--primary-dark);
    font-size: 0.92rem;
}

.top-strip i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.navbar {
    width: min(1180px, calc(100% - 2rem));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: var(--primary-dark);
    background: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
}

.brand strong {
    display: block;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

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

.nav-links a {
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    color: var(--primary-dark);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--primary);
}

.nav-links a.active {
    color: var(--white);
    background: var(--primary);
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    color: var(--primary-dark);
    font-size: 1.25rem;
    cursor: pointer;
}

.hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 2rem;
    padding: 8rem max(1rem, calc((100vw - 1180px) / 2)) 5rem;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--title), var(--primary), var(--accent));
}

.hero-content {
    max-width: 820px;
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    line-height: 1.08;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(2rem, 4.8vw, 4rem);
}

.hero-text {
    max-width: 720px;
    margin: 1.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

.hero-actions,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.3rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn:hover {
    box-shadow: 0 14px 28px rgba(140, 106, 67, 0.18);
    transform: translateY(-3px);
}

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

.btn.primary:hover {
    background: var(--button-hover);
}

.btn.light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-panel {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-content,
.hero-panel {
    animation: heroEnter 700ms ease both;
}

.hero-panel {
    animation-delay: 160ms;
}

.hero-panel div {
    padding: 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.14);
}

.panel-label {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.hero-panel strong {
    display: block;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.3rem;
}

.section {
    padding: 5.5rem max(1rem, calc((100vw - 1180px) / 2));
}

.bg-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.4rem;
}

.section-heading h2 {
    color: var(--primary-dark);
    font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.two-column,
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
}

.info-card,
.speaker-card,
.contact-card,
.topic-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-card {
    padding: 2rem;
}

.info-card h3,
.topic-grid h3,
.speaker-card h3,
.contact-card h3 {
    margin: 0 0 0.7rem;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--primary-dark);
}

.stats-band div {
    padding: 2.4rem 1rem;
    text-align: center;
    color: var(--white);
    background: var(--primary);
}

.stats-band strong {
    display: block;
    color: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.topic-grid,
.speaker-grid,
.link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.topic-grid article,
.speaker-card,
.contact-card {
    padding: 1.6rem;
}

.topic-grid i,
.contact-card i {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.date-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.date-list div {
    padding: 1.4rem;
    border-left: 4px solid var(--accent);
    background: var(--soft);
}

.date-list span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.date-list strong {
    display: block;
    color: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.08rem;
}

.speaker-grid {
    grid-template-columns: repeat(3, 1fr);
}

.speaker-card {
    text-align: center;
}

.avatar {
    width: 86px;
    height: 86px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary-dark);
    background: var(--accent);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.link-grid a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 86px;
    padding: 1.1rem;
    border-radius: 8px;
    color: var(--white);
    background: var(--primary-dark);
    font-family: "Jost", Arial, sans-serif;
    font-weight: 700;
}

.link-grid a:hover {
    color: var(--primary-dark);
    background: var(--accent);
}

.contact-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.contact-card a {
    color: var(--primary);
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ics-card-grid article.reveal:nth-child(2),
.page-card.reveal:nth-child(2),
.ics-date-grid div.reveal:nth-child(2),
.committee-list article.reveal:nth-child(2),
.topic-grid article.reveal:nth-child(2),
.link-grid a.reveal:nth-child(2) {
    transition-delay: 80ms;
}

.ics-card-grid article.reveal:nth-child(3),
.page-card.reveal:nth-child(3),
.ics-date-grid div.reveal:nth-child(3),
.committee-list article.reveal:nth-child(3),
.topic-grid article.reveal:nth-child(3),
.link-grid a.reveal:nth-child(3) {
    transition-delay: 140ms;
}

.ics-card-grid article.reveal:nth-child(4),
.page-card.reveal:nth-child(4),
.ics-date-grid div.reveal:nth-child(4),
.committee-list article.reveal:nth-child(4),
.topic-grid article.reveal:nth-child(4),
.link-grid a.reveal:nth-child(4) {
    transition-delay: 200ms;
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes headerGlow {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

@keyframes pageBackgroundFlow {
    from {
        background-position: 0 0, center 0;
    }

    to {
        background-position: 0 0, center 54px;
    }
}

@keyframes heroBackgroundFlow {
    from {
        background-position: 0 0, 48% 50%, 0 0;
    }

    to {
        background-position: 0 0, 54% 48%, 0 0;
    }
}

@keyframes pageHeroBackgroundFlow {
    from {
        background-position: 0 0, 48% 50%;
    }

    to {
        background-position: 0 0, 54% 48%;
    }
}

@keyframes sectionBackgroundFlow {
    from {
        background-position: 0 0, 48% 0, 0 0;
    }

    to {
        background-position: 0 0, 54% 36px, 0 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.footer {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    padding: 3rem max(1rem, calc((100vw - 1180px) / 2));
    color: rgba(255, 255, 255, 0.82);
    background: var(--primary-dark);
}

.footer strong {
    display: block;
    color: var(--white);
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.25rem;
}

.footer-links {
    justify-content: flex-end;
}

.footer-links a {
    color: var(--white);
}

.credit {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

@media (max-width: 1180px) {
    .ics-navbar{
    max-width:1400px;
    width:100%;
    margin:0 auto;
    padding:0 25px;
    display:flex;
    align-items:center;
}

    .ics-nav-links {
        gap: 0.25rem;
    }

    .ics-nav-links a {
        padding: 0.7rem 0.65rem;
        font-size: 0.9rem;
    }

    .page-hero,
    .page-content,
    .ics-section,
    .ics-action-band,
    .ics-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

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

    .wide-card,
    .full-card {
        grid-column: 1 / -1;
    }

    .ics-card-grid,
    .ics-date-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-people-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .ics-navbar {
        width: min(100% - 1.25rem, 920px);
        min-height: 82px;
        flex-wrap: wrap;
        padding: 0.75rem 0;
        gap: 0.75rem;
    }

    .ics-logo{
    flex-shrink:0;
}

.ics-logo-with-image{
    display:flex;
    align-items:center;
    gap:12px;
}

.ics-logo-with-image img{
    width:62px;
    height:62px;
}

.ics-logo-with-image span{
    font-size:2.1rem;
    font-weight:800;
    color:#5B4B8A;
}

    .ics-logo {
        font-size: clamp(1.55rem, 5vw, 2.2rem);
    }

    .ics-nav-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border-radius: 6px;
        color: var(--title);
        background: #ffffff;
        border: 1px solid var(--line);
        box-shadow: 0 8px 20px rgba(140, 106, 67, 0.1);
        cursor: pointer;
        transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .ics-nav-button:hover {
        color: var(--primary);
        border-color: rgba(140, 106, 67, 0.35);
        box-shadow: 0 12px 26px rgba(140, 106, 67, 0.14);
        transform: translateY(-1px);
    }

    .ics-nav-button .fa-bars::before {
        content: "\f0c9";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }

    .ics-nav-check:checked + .ics-nav-button .fa-bars::before {
        content: "\f00d";
    }

    .i.ics-nav-links{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-left:40px;
}

    .ics-nav-links a{
    padding:12px 16px;
    font-size:17px;
    font-weight:700;
    color:#5B4B8A;
    border-radius:6px;
    white-space:nowrap;
    transition:.3s;
}

.ics-nav-links a:hover,
.ics-nav-links a.active{
    background:#8C6A43;
    color:#fff;
}
    .ics-nav-check:checked ~ .ics-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-hero {
        min-height: 600px;
    }

    .page-hero {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .page-content {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .ics-split,
    .ics-split.reverse,
    .ics-footer {
        grid-template-columns: 1fr;
    }

    .ics-split,
    .ics-split.reverse {
        gap: 2rem;
    }

    .ics-card-grid,
    .ics-date-grid,
    .ics-people-grid,
    .committee-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .committee-list article,
    .committee-list article:first-child,
    .committee-list article:nth-child(2),
    .committee-list article:nth-child(3),
    .committee-list article:nth-child(4),
    .committee-list article:nth-child(5),
    .committee-list article:nth-child(6) {
        grid-column: auto;
    }

    .conf-brand-row {
        align-items: flex-start;
        flex-direction: column;
        padding: 1rem 0;
    }

    .conf-meta {
        justify-content: flex-start;
    }

    .conf-menu-btn {
        display: flex;
    }

    .conf-nav-links {
        display: none;
        width: 100%;
        min-height: 0;
        padding: 0.5rem 1rem 1rem;
        background: var(--primary);
    }

    .conf-nav-links a {
        display: flex;
        min-height: 46px;
        padding: 0 1rem;
    }

    .conf-nav-links a::after {
        display: none;
    }

    .conf-menu-check:checked + .conf-nav .conf-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .conf-page-hero {
        min-height: 260px;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 0.8rem 0;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        padding: 0.8rem 0;
        border-top: 1px solid var(--line);
    }

    .nav-links a {
        display: block;
        width: 100%;
    }

    .menu-toggle:checked ~ .nav-links {
        display: block;
    }

    .hero,
    .two-column,
    .contact-grid,
    .footer {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 5rem;
    }

    .topic-grid,
    .date-list,
    .stats-band,
    .link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        background:
            linear-gradient(rgba(255, 252, 250, 0.64), rgba(255, 252, 250, 0.72)),
            var(--template-bg) center top / 100% 520px repeat-y;
    }

    .page-hero {
        min-height: 320px;
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
        background-position: center top;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(1.75rem, 7vw, 2.75rem);
        line-height: 1.12;
    }

    .page-hero p {
        max-width: 100%;
        font-size: 1rem;
    }

    .page-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .page-grid,
    .committee-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-card,
    .committee-list article {
        padding: 1.25rem;
    }

    .wide-card,
    .full-card {
        grid-column: auto;
    }

    .simple-list {
        gap: 0.8rem;
    }

    .ics-table-wrap {
        margin-inline: -0.25rem;
        padding-bottom: 0.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 640px) {
    .ics-nav-check:checked ~ .ics-nav-links,
    .page-grid,
    .ics-card-grid,
    .ics-date-grid,
    .ics-people-grid,
    .ics-countdown,
    .committee-list {
        grid-template-columns: 1fr;
    }

    .ics-navbar {
        width: calc(100% - 1rem);
        min-height: 74px;
        align-items: center;
        justify-content: space-between;
    }

    .ics-logo {
        font-size: clamp(1.35rem, 8vw, 1.9rem);
    }

    .ics-logo-with-image {
        gap: 0.55rem;
    }

    .ics-logo-with-image img {
        width: 42px;
        height: 42px;
        padding: 4px;
    }

    .ics-nav-button {
        width: 40px;
        height: 40px;
    }

    .ics-nav-links {
        gap: 0.4rem;
        padding: 0.75rem 0 0.5rem;
    }

    .ics-nav-links a {
        padding: 0.78rem 0.85rem;
        text-align: left;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.72);
    }

    .ics-nav-links a:hover,
    .ics-nav-links a.active {
        color: #ffffff;
        background: var(--primary);
    }

    .ics-hero {
        min-height: 500px;
    }

    .ics-hero-content {
        width: calc(100% - 2rem);
        margin-top: -16px;
        padding: 3.25rem 1rem 2.75rem;
    }

    .ics-hero h1 {
        font-size: clamp(2rem, 15vw, 3.25rem);
    }

    .ics-hero h2 {
        max-width: 100%;
        font-size: clamp(0.88rem, 4.4vw, 1.05rem);
        letter-spacing: 0.04em;
    }

    .ics-date {
        font-size: 1rem;
    }

    .page-hero {
        min-height: 280px;
        padding: 3rem 1rem;
    }

    .page-hero h1 {
        max-width: 100%;
        font-size: clamp(1.65rem, 9vw, 2.35rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .page-hero p {
        font-size: 0.98rem;
    }

    .page-content {
        padding: 2.75rem 1rem;
    }

    .page-grid,
    .ics-card-grid,
    .ics-date-grid,
    .ics-people-grid,
    .committee-list,
    .topic-grid,
    .date-list,
    .stats-band,
    .speaker-grid,
    .link-grid {
        gap: 1rem;
    }

    .page-card,
    .ics-card-grid article,
    .ics-people-grid article,
    .committee-list article,
    .ics-panel {
        padding: 1.15rem;
    }

    .wide-card,
    .full-card {
        grid-column: auto;
    }

    .ics-countdown {
        margin-top: 0;
        width: 100%;
        border-radius: 0;
    }

    .ics-countdown div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .ics-section {
        padding: 3.25rem 1rem;
    }

    .ics-section-title {
        margin-bottom: 1.8rem;
    }

    .ics-copy h2,
    .ics-section-title h2,
    .ics-action-band h2 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .ics-copy p,
    .ics-center-text,
    .ics-action-band p {
        font-size: 0.98rem;
    }

    .ics-action-band {
        padding: 3rem 1rem;
    }

    .ics-actions,
    .hero-actions,
    .footer-links {
        width: 100%;
    }

    .ics-btn,
    .btn {
        width: 100%;
    }

    .ics-highlight-panel {
        min-height: 240px;
        padding: 1.5rem;
    }

    .conference-image,
    .conference-image img {
        min-height: 260px;
    }

    .conf-menu-check:checked + .conf-nav .conf-nav-links {
        grid-template-columns: 1fr;
    }

    .conf-page-hero {
        min-height: 220px;
        padding: 4rem 1rem;
    }

    .top-strip {
        justify-content: flex-start;
    }

    .brand small {
        display: none;
    }

    .hero,
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .topic-grid,
    .date-list,
    .stats-band,
    .speaker-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* Payment Page Design */
.payment-page{
    max-width:1280px;
    margin:0 auto;
    padding:60px 25px;
    display:grid;
    grid-template-columns:1.25fr 0.75fr;
    gap:35px 55px;
    align-items:start;
}

/* Title */
.payment-title{
    grid-column:1 / 2;
}

.payment-title h2{
    color:#062653;
    font-family:"Jost", Arial, sans-serif;
    font-size:36px;
    font-weight:800;
    margin:0 0 20px;
}

.payment-title h2::after{
    content:"";
    display:block;
    width:65px;
    height:4px;
    margin-top:12px;
    border-radius:5px;
    background:#ff9800;
}

/* Bank Details Card */
.payment-details-card{
    grid-column:1 / 2;
    background:#fff;
    padding:32px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.payment-details-card h3{
    color:#071f46;
    font-size:24px;
    font-family:"Jost", Arial, sans-serif;
    margin:0 0 20px;
}

.payment-detail-list{
    margin:0;
    display:grid;
}

.payment-detail-list div{
    display:grid;
    grid-template-columns:1fr 1fr;
    padding:13px 0;
    border-bottom:1px solid #e5edf7;
}

.payment-detail-list dt{
    color:#53627c;
}

.payment-detail-list dd{
    margin:0;
    text-align:right;
    color:#071f46;
    font-weight:800;
}

/* Payment Button */
.payment-proof-btn{
    margin-top:25px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 28px;
    border-radius:8px;
    background:#ff8a00;
    color:#fff;
    font-weight:800;
    text-decoration:none;
}

/* QR Section */
.payment-scan{
    grid-column:2 / 3;
    grid-row:1 / span 3;
    text-align:left;
}

.payment-scan h3{
    color:#062653;
    font-size:36px;
    font-family:"Jost", Arial, sans-serif;
    margin:0 0 12px;
}

.payment-scan p{
    color:#344563;
    margin-bottom:30px;
}

.payment-qr-card{
    width:360px;
    max-width:100%;
    padding:25px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.payment-qr-card img{
    width:100%;
    display:block;
    border-radius:16px;
}

/* Fee Table Section */
.payment-page > .ics-section{
    grid-column:1 / -1;
    padding:40px 0 0;
}

.payment-page .ics-copy{
    width:100%;
}

.payment-page .ics-small-title,
.payment-page .ics-copy h2{
    text-align:center;
    display:block;
}

.payment-page .ics-copy h2{
    color:#062653;
    font-size:32px;
    margin-bottom:25px;
}

.payment-page .ics-table-wrap{
    width:100%;
    overflow-x:auto;
}

.payment-page .ics-fee-table{
    width:100%;
    min-width:1050px;
    border-collapse:collapse;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.payment-page .ics-fee-table th{
    background:#2f3f91;
    color:#fff;
    padding:18px;
    text-align:center;
}

.payment-page .ics-fee-table td{
    padding:16px;
    border:1px solid #dce4f2;
    text-align:center;
    color:#071f46;
}

.payment-page .ics-fee-table td:first-child{
    text-align:left;
    font-weight:700;
}

/* Tablet View */
@media(max-width:991px){
    .payment-page{
        grid-template-columns:1fr;
        gap:28px;
        padding:45px 20px;
    }

    .payment-title,
    .payment-details-card,
    .payment-scan,
    .payment-page > .ics-section{
        grid-column:1 / -1;
        grid-row:auto;
    }

    .payment-scan{
        text-align:center;
    }

    .payment-qr-card{
        width:min(100%,320px);
        margin:0 auto;
        padding:18px;
        border-radius:16px;
    }

    .payment-title h2,
    .payment-scan h3,
    .payment-page .ics-copy h2{
        font-size:28px;
    }

    .payment-page .ics-fee-table{
        min-width:760px;
    }
}

/* Mobile View */
@media(max-width:600px){
    .payment-page{
        display:block;
        padding:30px 14px 40px;
    }

    .payment-title{
        margin-bottom:20px;
    }

    .payment-details-card{
        padding:20px 14px;
        border-radius:14px;
        margin-bottom:28px;
    }

    .payment-scan{
        text-align:center;
        margin-bottom:28px;
    }

    .payment-title h2,
    .payment-scan h3,
    .payment-page .ics-copy h2{
        font-size:24px;
    }

    .payment-detail-list div{
        grid-template-columns:1fr;
        gap:6px;
        padding:12px 0;
    }

    .payment-detail-list dd{
        text-align:left;
        overflow-wrap:anywhere;
    }

    .payment-proof-btn{
        width:100%;
        padding:13px 18px;
    }

    .payment-qr-card{
        width:min(100%,280px);
        padding:14px;
        margin:0 auto;
    }

    .payment-page > .ics-section{
        padding-top:18px;
    }

    .payment-page .ics-fee-table{
        min-width:720px;
    }
}
.conference-process {
    width: min(1080px, calc(100% - 2rem));
    margin: 4.5rem auto 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 12px;
    background:
        radial-gradient(circle at 92% 4%, rgba(212, 163, 115, 0.26), transparent 26%),
        linear-gradient(135deg, #102745, #5B4B8A);
    box-shadow: 0 22px 56px rgba(16, 39, 69, 0.16);
    overflow: hidden;
}

.conference-process-title {
    margin-bottom: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
}

.conference-process-title h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #e9ecf0;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.conference-process-title h2::first-letter {
    color: #e3e8ee;
}

.conference-process-title h2::after {
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 110px;
    height: 8px;
    content: "";
    background:
        radial-gradient(circle, #ffffff 0 3px, transparent 3px),
        linear-gradient(90deg, transparent 0 8px, #D4A373 8px 48px, transparent 48px 62px, #D4A373 62px 102px, transparent 102px);
    transform: translateX(-50%);
}

.conference-process-title h2 {
    background: linear-gradient(90deg, #ffffff 0 34%, #D4A373 34% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.conference-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.2rem);
}

.conference-process-card {
    min-height: 210px;
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1.45rem;
    border: 1px solid rgba(140, 106, 67, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    min-width: 0;
}

.conference-process-card:hover {
    border-color: rgba(212, 163, 115, 0.55);
    box-shadow: 0 22px 44px rgba(140, 106, 67, 0.14);
    transform: translateY(-5px);
}

.conference-process-card > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #8C6A43;
    background: #F7E9D8;
    font-size: 1rem;
}

.conference-process-card h3 {
    margin: 0;
    color: #061B35;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.conference-process-card p {
    min-height: 48px;
    margin: 0;
    color: #111827;
    font-size: 0.9rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.conference-process-card span {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 28px;
    margin-top: 0.25rem;
    padding: 0.32rem 0.75rem;
    border: 1px solid rgba(140, 106, 67, 0.2);
    border-radius: 999px;
    color: #8C6A43;
    background: #FAF0E5;
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .payment-page {
        gap: 1.6rem;
    }

    .payment-details-card {
        padding: 1.1rem;
    }

    .payment-detail-list div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .payment-detail-list dd {
        text-align: left;
    }

    .payment-fee-table {
        min-width: 360px;
    }
}

@media (max-width: 980px) {
    .conference-process {
        width: min(840px, calc(100% - 1.5rem));
        margin-top: 3.5rem;
    }

    .conference-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .conference-process {
        width: calc(100% - 1.25rem);
        margin-top: 3rem;
        padding: 1.25rem;
        border-radius: 10px;
    }

    .conference-process-grid {
        grid-template-columns: 1fr;
    }

    .conference-process-card {
        min-height: 0;
        padding: 1.2rem;
    }

    .conference-process-card p {
        min-height: 0;
    }
}

@media (max-width: 420px) {
    .conference-process {
        width: calc(100% - 1rem);
        padding: 1rem;
    }

    .conference-process-title h2 {
        font-size: clamp(1.65rem, 9vw, 2.15rem);
    }

    .conference-process-title h2::after {
        bottom: -0.8rem;
        width: 88px;
    }

    .conference-process-card {
        gap: 0.65rem;
        padding: 1rem;
    }

    .conference-process-card > i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .conference-process-card h3 {
        font-size: 0.96rem;
    }

    .conference-process-card p {
        font-size: 0.86rem;
    }

    .conference-process-card span {
        min-height: 26px;
        padding: 0.28rem 0.65rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 420px) {
    .ics-navbar {
        width: calc(100% - 0.75rem);
        min-height: 68px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .ics-logo {
        font-size: clamp(1.2rem, 9vw, 1.55rem);
    }

    .ics-logo-with-image img {
        width: 38px;
        height: 38px;
    }

    .ics-nav-button {
        width: 38px;
        height: 38px;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        grid-template-columns: 1fr;
    }

    .ics-nav-links a {
        font-size: 0.9rem;
        padding: 0.72rem 0.8rem;
    }

    .ics-hero {
        min-height: 460px;
    }

    .ics-hero-content {
        width: calc(100% - 1.5rem);
        margin-top: -8px;
        padding: 2.65rem 0.9rem 2.25rem;
    }

    .ics-tag {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        padding: 0.45rem 0.75rem;
    }

    .ics-hero h2 {
        padding: 0.48rem 0.75rem;
        font-size: 0.82rem;
    }

    .ics-date {
        margin: 1rem 0 1.4rem;
    }

    .ics-countdown div {
        padding: 1.15rem 1rem;
    }

    .page-hero {
        min-height: 250px;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .page-hero span,
    .ics-small-title,
    .ics-section-title span {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    .page-hero h1 {
        font-size: clamp(1.45rem, 9vw, 2rem);
    }

    .page-card,
    .ics-card-grid article,
    .ics-people-grid article,
    .committee-list article,
    .ics-panel {
        padding: 1rem;
    }

    .page-card h2,
    .page-card h3 {
        font-size: 1.12rem;
    }

    .simple-list {
        gap: 0.7rem;
    }

    .simple-list div {
        padding: 0.85rem;
        border-left-width: 3px;
        font-size: 0.94rem;
    }

    .ics-section {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .ics-copy h2,
    .ics-section-title h2,
    .ics-action-band h2 {
        font-size: clamp(1.35rem, 7.5vw, 1.85rem);
    }

    .ics-fee-table {
        min-width: 360px;
        font-size: 0.9rem;
    }

    .ics-fee-table th,
    .ics-fee-table td {
        padding: 0.75rem;
    }

    .ics-footer,
    .footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 360px) {
    .page-hero,
    .page-content,
    .ics-section,
    .ics-action-band {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .page-hero h1 {
        font-size: clamp(1.35rem, 9vw, 1.75rem);
    }

    .page-card,
    .ics-card-grid article,
    .committee-list article {
        padding: 0.9rem;
    }

    .ics-fee-table {
        min-width: 320px;
    }
}

.submission-hero {
    position: relative;
    min-height: 330px;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: 4.5rem max(1.25rem, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid #f0dfcc;
    background:
        linear-gradient(90deg, rgba(255, 250, 244, 0.88), rgba(255, 252, 248, 0.7)),
        url("../img/submission-bg.svg") center center / cover no-repeat,
        #fff8ef;
    background-size: auto, 112% 112%, auto;
    animation: heroBackgroundFlow 22s ease-in-out infinite alternate;
}

.submission-hero::before,
.submission-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.submission-hero::before {
    right: -90px;
    bottom: -120px;
    width: 430px;
    height: 220px;
    border: 1px solid rgba(212, 163, 115, 0.45);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.submission-hero::after {
    right: 9%;
    top: 18%;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(212, 163, 115, 0.42);
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.submission-hero span,
.submission-hero h1,
.submission-hero p {
    position: relative;
    z-index: 1;
}

.submission-hero span {
    margin-bottom: 0.55rem;
    color: #8C6A43;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.submission-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #5B4B8A;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.15rem);
    font-weight: 800;
    line-height: 1.04;
}

.submission-hero p {
    max-width: 720px;
    margin: 1.1rem 0 0;
    color: #52525B;
    font-size: 1.16rem;
}

.submission-page {
    min-height: 70vh;
    padding: 3.5rem max(1rem, calc((100vw - 1180px) / 2)) 5rem;
    background: #ffffff;
}

.submission-title {
    margin-bottom: 1rem;
    text-align: center;
}

.submission-title h1,
.submission-downloads h2,
.submission-guidelines h2 {
    margin: 0;
    color: #5B4BCA;
    font-family: "Jost", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.15;
}

.submission-title h1 {
    display: inline-block;
    position: relative;
    font-size: clamp(2rem, 4vw, 2.9rem);
}

.submission-title h1::after {
    position: absolute;
    left: 50%;
    bottom: -0.55rem;
    width: 76px;
    height: 4px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, #6F4BC7 0 58%, #FF8A00 58% 100%);
    transform: translateX(-50%);
}

.submission-method {
    position: relative;
    width: min(560px, 100%);
    min-height: 245px;
    margin: 2.1rem auto 3.8rem;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.75rem;
    overflow: hidden;
    padding: 2rem;
    border-radius: 18px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #5B4B8A, #8C6A43);
    box-shadow: 0 22px 42px rgba(140, 106, 67, 0.22);
}

.submission-method::after {
    position: absolute;
    top: -42px;
    right: -38px;
    width: 145px;
    height: 145px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.submission-method-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ff3e79;
    font-size: 1.9rem;
}

.submission-method h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-family: "Jost", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
}

.submission-method p {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
}

.submission-submit-btn {
    position: relative;
    z-index: 1;
    min-height: 42px;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.45rem;
    border: 3px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    background: #ff8200;
    box-shadow: 0 8px 18px rgba(255, 130, 0, 0.26);
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.submission-submit-btn:hover {
    color: #ffffff;
    background: #f17200;
    box-shadow: 0 12px 24px rgba(255, 130, 0, 0.34);
    transform: translateY(-2px);
}

.submission-downloads,
.submission-guidelines {
    text-align: center;
}

.submission-downloads h2,
.submission-guidelines h2 {
    color: #003a70;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.submission-download-grid {
    width: min(340px, 100%);
    margin: 1.5rem auto 4.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.submission-download-card,
.submission-guideline-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(239, 230, 221, 0.7);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(60, 70, 92, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.submission-download-card {
    min-height: 105px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.55rem;
    padding: 1.2rem 0.75rem;
    border-radius: 12px;
    color: #003a70;
}

.submission-download-card i {
    color: #b8b5d8;
    font-size: 2rem;
}

.submission-download-card span {
    font-size: 0.78rem;
}

.submission-download-card:hover,
.submission-guideline-card:hover {
    border-color: rgba(91, 75, 202, 0.25);
    box-shadow: 0 22px 44px rgba(60, 70, 92, 0.16);
    transform: translateY(-5px);
}

.submission-guideline-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.submission-guideline-card {
    min-height: 170px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.6rem;
    padding: 1.5rem;
    border-radius: 14px;
}

.submission-guideline-card::after {
    position: absolute;
    top: -48px;
    right: -32px;
    width: 112px;
    height: 112px;
    content: "";
    border-radius: 50%;
    background: rgba(222, 236, 255, 0.95);
}

.submission-guideline-card i {
    position: relative;
    z-index: 1;
    color: #ff7c4f;
    font-size: 2rem;
}

.submission-guideline-card:nth-child(2) i {
    color: #ff406f;
}

.submission-guideline-card:nth-child(3) i {
    color: #6f4bc7;
}

.submission-guideline-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #003a70;
    font-family: "Jost", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
}

.submission-guideline-card p {
    position: relative;
    z-index: 1;
    max-width: 270px;
    margin: 0;
    color: #4f5570;
    font-size: 0.82rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .submission-hero {
        min-height: 290px;
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .submission-page {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .submission-guideline-grid {
        grid-template-columns: 1fr;
    }

    .submission-guideline-card {
        min-height: 150px;
    }
}

@media (max-width: 640px) {
    .submission-hero {
        min-height: 260px;
        padding: 3rem 1rem;
    }

    .submission-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .submission-hero p {
        font-size: 1rem;
    }

    .submission-page {
        padding: 2.5rem 1rem 3.5rem;
    }

    .submission-method {
        min-height: 230px;
        margin-bottom: 3rem;
        padding: 1.5rem 1rem;
        border-radius: 14px;
    }

    .submission-download-grid {
        grid-template-columns: 1fr;
        width: min(260px, 100%);
        margin-bottom: 3.25rem;
    }
}
/* .scope-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.scope-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.scope-card i {
    font-size: 38px;
    color: #5a4fcf;
    margin-bottom: 10px;
}

.scope-card h3 {
    margin: 10px 0 15px;
    font-size: 18px;
}

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

.scope-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    text-align: left;
} */
/* ========================================
   RESEARCH TRACK PREVIEW
======================================== */

/* Fix old parent grid restriction */
.ics-card-grid:has(.scope-preview) {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

/* Main section */
.scope-preview {
    display: block !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 55px 25px 65px !important;
    box-sizing: border-box !important;
}

.scope-preview,
.scope-preview * {
    box-sizing: border-box;
}

/* Section heading */
.scope-preview-heading {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 38px;
    text-align: center;
}

.scope-preview-heading span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 15px;
    color: #936938;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #fff4e6;
    border-radius: 20px;
}

.scope-preview-heading h2 {
    margin: 0 0 12px;
    color: #554495;
    font-size: 32px;
    line-height: 1.3;
}

.scope-preview-heading h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, #554495, #b17e3f);
    border-radius: 5px;
}

.scope-preview-heading p {
    margin: 0;
    color: #687282;
    font-size: 15px;
    line-height: 1.6;
}

/* Two boxes */
.scope-preview-columns {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Left and right main boxes */
.scope-preview-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 27px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid #dedbe8 !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 35px rgba(57, 45, 99, 0.13) !important;
}

/* Top colored line */
.scope-preview-box:first-child {
    border-top: 5px solid #554495 !important;
}

.scope-preview-box:last-child {
    border-top: 5px solid #a4753d !important;
}

/* Individual research row */
.scope-preview-item {
    position: relative;
    display: grid !important;
    grid-template-columns: 42px 54px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
    min-height: 90px !important;
    margin: 0 !important;
    padding: 15px 17px !important;
    overflow: hidden;
    background: #f8f8fc !important;
    border: 1px solid #e1e3eb !important;
    border-radius: 11px !important;
    transition: 0.3s ease;
}

.scope-preview-item::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 13px;
    left: 0;
    width: 4px;
    background: #554495;
    border-radius: 0 5px 5px 0;
}

.scope-preview-item:hover {
    transform: translateX(6px);
    background: #ffffff !important;
    border-color: #cfc9df !important;
    box-shadow: 0 8px 20px rgba(58, 45, 100, 0.10);
}

/* Number */
.scope-preview-number {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px !important;
    height: 38px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    background: #554495 !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 12px rgba(85, 68, 149, 0.23);
}

/* Icon */
.scope-preview-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px !important;
    height: 50px !important;
    color: #ffffff !important;
    font-size: 20px !important;
    background: #a47740 !important;
    border-radius: 11px !important;
    box-shadow: 0 6px 14px rgba(125, 85, 40, 0.20);
}

/* Track title */
.scope-preview-item h3 {
    min-width: 0;
    margin: 0 !important;
    color: #293950 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: normal !important;
}

/* Track-specific colours */
.scope-preview-box:first-child
.scope-preview-item:nth-child(1)::before,
.scope-preview-box:first-child
.scope-preview-item:nth-child(1) .scope-preview-number,
.scope-preview-box:first-child
.scope-preview-item:nth-child(1) .scope-preview-icon {
    background: #176da9 !important;
}

.scope-preview-box:first-child
.scope-preview-item:nth-child(2)::before,
.scope-preview-box:first-child
.scope-preview-item:nth-child(2) .scope-preview-number,
.scope-preview-box:first-child
.scope-preview-item:nth-child(2) .scope-preview-icon {
    background: #6c3bb1 !important;
}

.scope-preview-box:first-child
.scope-preview-item:nth-child(3)::before,
.scope-preview-box:first-child
.scope-preview-item:nth-child(3) .scope-preview-number,
.scope-preview-box:first-child
.scope-preview-item:nth-child(3) .scope-preview-icon {
    background: #db6917 !important;
}

.scope-preview-box:last-child
.scope-preview-item:nth-child(1)::before,
.scope-preview-box:last-child
.scope-preview-item:nth-child(1) .scope-preview-number,
.scope-preview-box:last-child
.scope-preview-item:nth-child(1) .scope-preview-icon {
    background: #168168 !important;
}

.scope-preview-box:last-child
.scope-preview-item:nth-child(2)::before,
.scope-preview-box:last-child
.scope-preview-item:nth-child(2) .scope-preview-number,
.scope-preview-box:last-child
.scope-preview-item:nth-child(2) .scope-preview-icon {
    background: #cb405a !important;
}

.scope-preview-box:last-child
.scope-preview-item:nth-child(3)::before,
.scope-preview-box:last-child
.scope-preview-item:nth-child(3) .scope-preview-number,
.scope-preview-box:last-child
.scope-preview-item:nth-child(3) .scope-preview-icon {
    background: #218293 !important;
}

/* Single View Scope button */
.scope-preview-button-area {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    margin-top: 30px !important;
}

.scope-preview-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto !important;
    margin: 0 !important;
    padding: 13px 29px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #5b459d, #3d2d77) !important;
    border-radius: 8px !important;
    box-shadow: 0 9px 20px rgba(61, 45, 119, 0.24);
    transition: 0.3s ease;
}

.scope-preview-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #a77940, #80592e) !important;
    transform: translateY(-4px);
}

.scope-preview-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.scope-preview-link:hover i {
    transform: translateX(5px);
}

/* Tablet */
@media (max-width: 850px) {
    .scope-preview-columns {
        grid-template-columns: 1fr !important;
        max-width: 650px !important;
    }
}

/* Mobile */
@media (max-width: 500px) {
    .scope-preview {
        padding: 40px 12px 50px !important;
    }

    .scope-preview-heading h2 {
        font-size: 26px;
    }

    .scope-preview-box {
        padding: 18px 13px !important;
    }

    .scope-preview-item {
        grid-template-columns: 34px 44px minmax(0, 1fr) !important;
        gap: 9px !important;
        padding: 12px 9px !important;
    }

    .scope-preview-number {
        width: 31px !important;
        height: 31px !important;
        font-size: 13px !important;
    }

    .scope-preview-icon {
        width: 41px !important;
        height: 41px !important;
        font-size: 17px !important;
    }

    .scope-preview-item h3 {
        font-size: 13px !important;
    }
}
/* Centre the white Font Awesome icon inside the coloured box */
.scope-preview-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    text-align: center !important;
}

.scope-preview-icon i {
    position: static !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 21px !important;
    line-height: 1 !important;
    text-align: center !important;
    transform: none !important;
}
/* ===== RESEARCH SCOPE SECTION ===== */
.research-scope-content {
    width: 100%;
    padding: 70px 20px;
    background: #f4f7fc;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ===== GRID LAYOUT ===== */
.research-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== CARD ===== */
.research-scope-card {
    --accent-color: #2a7de1;
    --accent-rgb: 42, 125, 225;

    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px 28px 34px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 40, 100, 0.07);
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0, 20, 50, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Top accent line */
.research-scope-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        rgba(var(--accent-rgb), 0.45)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Decorative circle */
.research-scope-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.06);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.research-scope-card:hover {
    transform: translateY(-7px);
    border-color: rgba(var(--accent-rgb), 0.20);
    box-shadow: 0 18px 45px rgba(0, 30, 80, 0.13);
}

.research-scope-card:hover::before {
    transform: scaleX(1);
}

.research-scope-card:hover::after {
    transform: scale(1.18);
}

/* ===== ICON ===== */
.research-scope-card > i {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 34px;
    background: rgba(var(--accent-rgb), 0.09);
    border-radius: 17px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.research-scope-card:hover > i {
    color: #ffffff;
    background: var(--accent-color);
    transform: rotate(-4deg) scale(1.06);
}

/* ===== HEADING ===== */
.research-scope-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    padding-bottom: 14px;
    color: #0b1e3a;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}

.research-scope-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 10px;
    transition: width 0.35s ease;
}

.research-scope-card:hover h3::after {
    width: 68px;
}

/* ===== LIST ===== */
.research-scope-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.research-scope-list li {
    position: relative;
    margin: 0;
    padding-left: 23px;
    color: #42536b;
    font-size: 15px;
    line-height: 1.55;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

/* Custom bullet */
.research-scope-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.10);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.research-scope-list li:hover {
    color: #0b1e3a;
    transform: translateX(4px);
}

.research-scope-list li:hover::before {
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.15);
}

/* ===== INDIVIDUAL CARD COLOURS ===== */
.research-scope-card:nth-child(1) {
    --accent-color: #2a7de1;
    --accent-rgb: 42, 125, 225;
}

.research-scope-card:nth-child(2) {
    --accent-color: #e17055;
    --accent-rgb: 225, 112, 85;
}

.research-scope-card:nth-child(3) {
    --accent-color: #00a884;
    --accent-rgb: 0, 168, 132;
}

.research-scope-card:nth-child(4) {
    --accent-color: #6c5ce7;
    --accent-rgb: 108, 92, 231;
}

.research-scope-card:nth-child(5) {
    --accent-color: #e3a008;
    --accent-rgb: 227, 160, 8;
}

.research-scope-card:nth-child(6) {
    --accent-color: #e84393;
    --accent-rgb: 232, 67, 147;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .research-scope-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
    .research-scope-content {
        padding: 45px 15px;
    }

    .research-scope-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .research-scope-card {
        padding: 28px 23px 30px;
        border-radius: 18px;
    }

    .research-scope-card > i {
        width: 56px;
        height: 56px;
        margin-bottom: 17px;
        font-size: 28px;
        border-radius: 15px;
    }

    .research-scope-card h3 {
        margin-bottom: 19px;
        font-size: 19px;
    }

    .research-scope-list {
        gap: 10px;
    }

    .research-scope-list li {
        padding-left: 21px;
        font-size: 14px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 380px) {
    .research-scope-card {
        padding: 25px 19px 27px;
    }
}
/* ✅ Orange check icon like your image */
.scope-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff9800;
    font-size: 14px;
}
.ics-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.reg-icon {
    width: 70px;
    height: 70px;
    background: #6a5cff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(106,92,255,0.3);
}

.reg-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.reg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #6a5cff, #4b3cc4);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.reg-btn:hover {
    transform: translateY(-3px);
}
.page-content {
    max-width: 1400px;   /* 🔥 increased width */
    margin: auto;
    padding: 20px;
}

/* SEARCH CARD */
.paper-search-card {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.paper-header i {
    font-size: 40px;
    color: #5a4fcf;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.search-box input {
    width: 350px;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
}

.search-box button {
    padding: 12px 18px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg,#6a5cff,#4b3cc4);
    color: white;
    cursor: pointer;
}

/* TABLE */
.table-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

th {
    background: #5a4fcf;
    color: white;
    padding: 12px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.status {
    background: #d4f8d4;
    color: green;
    padding: 5px 12px;
    border-radius: 20px;
}
.page-content {
    max-width: 1400px;   /* 🔥 increased width */
    margin: auto;
    padding: 20px;
}
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* INPUT */
.search-box input {
    width: 350px;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
}

/* BUTTON */
.search-box button {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;
    border: none;
    border-radius: 30px;

    background: linear-gradient(135deg, #6a5cff, #4b3cc4);
    color: white;

    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);
}

.search-message {
    min-height: 1.5rem;
    margin: 0.9rem 0 0;
    color: #dc2626;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 640px) {
    .paper-search-card {
        padding: 1.25rem;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box input,
    .search-box button {
        width: 100%;
    }

    .search-box button {
        justify-content: center;
    }
}
.map-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:15px;
}

/* SWAP LAYOUT */
.venue-split{
    display:flex;
    gap:25px;
    max-width:1100px;
    margin:40px auto;
    padding:20px;
    align-items:stretch;
}

.map-box, .address-box{
    flex:1;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* MAP HEIGHT FIX */
:root {
  /* Colors */
  --color-primary: #4f46e5;
  --color-primary-light: #818cf8;
  --color-bg: #f8fafc;
  --color-white: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #475569;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 20px;
  --spacing-lg: 32px;
  --spacing-xl: 40px;

  /* Borders & Shadows */
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.10);
  --transition: 0.3s ease;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Container */
.venue-container {
  display: flex;
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-md);
  background: var(--color-bg);
  border-radius: var(--radius);
}

/* Common card style */
.address-card,
.map-card {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.address-card:hover,
.map-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* Map iframe */
.map-card iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  background: #e2e8f0; /* fallback while loading */
}

/* Address card typography */
.address-card h3 {
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.address-card p {
  margin: var(--spacing-xs) 0;
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
}

.address-card p:last-child {
  margin-bottom: 0;
}

/* Optional accent border on address card */
.address-card {
  border-left: 4px solid var(--color-primary);
}

/* Focus outline for accessibility (if any interactive elements are added) */
.address-card:focus-within,
.map-card:focus-within {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .venue-container {
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    margin: var(--spacing-lg) auto;
  }

 /* --- ADDRESS CARD SPECIFIC STYLES --- */

/* Heading with a location pin icon */
.address-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  color: var(--color-primary, #4f46e5);
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.address-card h3::before {
  content: "📍";
  font-size: 1.5rem;
  line-height: 1;
}

/* College Name - bold and prominent */
.address-card .institute-name {
  margin: 0 0 8px 0;
  color: #0f172a; /* Near-black for maximum contrast */
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Full Street Address - clean and slightly muted */
.address-card .full-address {
  margin: 0;
  padding: 12px 0 4px 16px; /* Top padding, left indent */
  color: var(--color-text-muted, #475569);
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: 0.95rem;
  line-height: 1.7;
  border-left: 4px solid var(--color-primary-light, #818cf8);
  background: #f8fafc; /* Subtle background to separate it */
  border-radius: 0 8px 8px 0;
  padding: 12px 16px; /* Full padding for a "block quote" feel */
}

/* Optional: Hover effect for the entire card to tie back to previous improvements */
.address-card:hover .full-address {
  border-left-color: var(--color-primary, #4f46e5);
  transition: border-color 0.3s ease;
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
  .address-card h3 {
    font-size: 1.2rem;
  }

  .address-card .institute-name {
    font-size: 1rem;
  }

  .address-card .full-address {
    font-size: 0.9rem;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .address-card h3 {
    font-size: 1.05rem;
  }

  .address-card .institute-name {
    font-size: 0.95rem;
  }

  .address-card .full-address {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-left-width: 3px;
  }
}
}

/* Small screens extra polish */
@media (max-width: 480px) {
  .venue-container {
    padding: var(--spacing-xs);
    margin: var(--spacing-md) auto;
  }

  .map-card iframe {
    height: 200px;
  }
}

/* Unified website background and animated banners */
:root {
    --template-bg: url("../img/tech-conference-bg.png");
    --non-home-bg: url("../img/tech-conference-bg.png");
}

body.ics-layout,
body {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(255, 252, 248, 0.9), rgba(255, 252, 248, 0.94)),
        url("../img/tech-conference-bg.png") center top / cover fixed,
        #060a18;
}

body.ics-layout::before,
body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(rgba(6, 10, 24, 0.52), rgba(255, 252, 248, 0.82) 46%, rgba(255, 252, 248, 0.9)),
        url("../img/tech-conference-bg.png") center center / 112% 112% no-repeat;
    opacity: 0.42;
    animation: pageTechBackgroundFlow 26s ease-in-out infinite alternate;
}

@keyframes pageTechBackgroundFlow {
    0% {
        background-position: center center, 50% 50%;
        transform: scale(1);
    }

    50% {
        background-position: center center, 54% 48%;
        transform: scale(1.025);
    }

    100% {
        background-position: center center, 47% 54%;
        transform: scale(1.045);
    }
}

.page-content,
.submission-page,
.organized-committee,
.committee-page-body .page-content {
    background:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 252, 248, 0.94)),
        url("../img/tech-conference-bg.png") center top / cover fixed;
    background-size: auto, 112% 112%;
    animation: sectionBackgroundFlow 28s ease-in-out infinite alternate;
}

.ics-hero,
.page-hero,
.conf-page-hero,
.committee-hero,
.submission-hero {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(105deg, rgba(5, 8, 22, 0.78), rgba(91, 75, 138, 0.44) 48%, rgba(140, 106, 67, 0.44)),
        url("../img/tech-conference-bg.png") center center / 118% 118% no-repeat,
        linear-gradient(105deg, #050816 0%, #2d2253 54%, #8C6A43 100%);
    background-size: 140% 140%, 118% 118%, 140% 140%;
    animation: combinedBannerFlow 18s ease-in-out infinite alternate;
}

.ics-footer {
    background:
        linear-gradient(105deg, rgba(5, 8, 22, 0.86), rgba(91, 75, 138, 0.7) 48%, rgba(140, 106, 67, 0.78)),
        url("../img/tech-conference-bg.png") center bottom / cover no-repeat,
        linear-gradient(105deg, #050816 0%, #2d2253 54%, #8C6A43 100%);
}

@keyframes combinedBannerFlow {
    0% {
        background-position: 0% 50%, 50% 50%, 0% 50%;
    }

    50% {
        background-position: 100% 48%, 54% 46%, 100% 50%;
    }

    100% {
        background-position: 22% 56%, 48% 54%, 22% 56%;
    }
}

.page-hero span,
.conf-page-hero p,
.committee-hero span,
.submission-hero span {
    color: #F8EBDD;
    animation: fadeRise 650ms ease both;
}

.page-hero h1,
.conf-page-hero h1,
.committee-hero h1,
.submission-hero h1 {
    color: #ffffff;
    animation: fadeRise 720ms ease 120ms both;
}

.page-hero p,
.conf-page-hero span,
.committee-hero p,
.submission-hero p {
    color: rgba(255, 255, 255, 0.86);
    animation: fadeRise 720ms ease 240ms both;
}

.committee-hero::before,
.committee-hero::after,
.submission-hero::before,
.submission-hero::after {
    border-color: rgba(255, 255, 255, 0.2);
}
.justify-text {
    text-align: justify;
    text-justify: inter-word; /* improves spacing for justified text */
    line-height: 1.6;        /* optional: better readability */
}

/* Countdown responsive correction */
@media (max-width: 640px) {
    .ics-countdown {
        width: calc(100% - 1rem);
        margin-top: -28px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-radius: 8px;
    }

    .ics-countdown div {
        padding: 0.9rem 0.35rem;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .ics-countdown div:last-child {
        border-right: 0;
    }

    .ics-countdown strong {
        font-size: clamp(1.25rem, 8vw, 2rem);
    }

    .ics-countdown span {
        font-size: 0.82rem;
    }
}

@media (max-width: 340px) {
    .ics-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-countdown div:nth-child(2) {
        border-right: 0;
    }

    .ics-countdown div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

.ics-date-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 45px auto 0;
    padding: 0 20px;
}

.ics-date-grid div {
    background: rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 28px 26px;
    min-height: 115px;
}

.ics-date-grid strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ics-date-grid span {
    display: block;
    color: #fff;
    font-size: 16px;
}

@media (max-width: 992px) {
    .ics-date-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ics-date-grid {
        grid-template-columns: 1fr;
    }
}
/* Registration Panel */
.ics-panel{
    text-align:center;
    padding:30px;
}

/* Heading */
.ics-panel h3{
    margin-bottom:15px;
    font-size:28px;
    color:#5B4B8A;
}

/* Paragraph */
.ics-panel p{
    max-width:850px;
    margin:0 auto 25px;
    text-align:center;
    line-height:1.8;
    font-size:17px;
}

/* View Registration Button */
.ics-panel .ics-btn{
    display:block;
    width:250px;
    margin:20px auto 0;
}
/* Footer Columns */
.footer-col h3{
    color:#fff;
    margin-bottom:18px;
    position:relative;
    font-size:24px;
}

.footer-col h3::after{
    content:"";
    display:block;
    width:50px;
    height:3px;
    background:#f6b500;
    margin-top:10px;
}

.footer-col p{
    color:#f5f5f5;
    line-height:1.9;
    text-align:justify;
}

.footer-col a{
    display:block;
    color:#ffffff;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-col a:hover{
    color:#f6b500;
    padding-left:5px;
}

.footer-col i{
    color:#f6b500;
    margin-right:8px;
}

.ics-credit{
    grid-column:1/-1;
    text-align:center;
    padding-top:25px;
    margin-top:25px;
    border-top:1px solid rgba(255,255,255,.2);
    color:#fff;
}
.ics-footer{

    display:grid;
    grid-template-columns:2fr 1fr 1.4fr 1.4fr;
    gap:45px;

    padding:60px max(2rem, calc((100vw - 1300px)/2));

    color:#fff;

    background:
    linear-gradient(rgba(26,22,58,.82),rgba(26,22,58,.82)),
    var(tech-conference-bgg) center bottom/cover no-repeat;
}

/* Cross-device responsive corrections */
.ics-footer {
    background:
        linear-gradient(rgba(26, 22, 58, 0.84), rgba(26, 22, 58, 0.84)),
        url("../img/tech-conference-bg.png") center bottom / cover no-repeat,
        #1a163a;
}

.venue-container {
    width: min(1100px, calc(100% - 2rem));
}

.address-card,
.map-card {
    min-width: 0;
}

.address-card h3,
.address-card h4,
.address-card p,
.footer-col h3,
.footer-col p,
.footer-col a {
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    .ics-navbar {
        width: min(100% - 1.25rem, 1120px);
    }

    .ics-nav-links a {
        padding-inline: 0.6rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 980px) {
    .ics-navbar {
        flex-wrap: nowrap;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 3rem 1.25rem 2rem;
    }
}

@media (max-width: 768px) {
    .venue-container {
        width: calc(100% - 1.25rem);
        flex-direction: column;
        margin: 2rem auto;
        padding: 1rem;
    }

    .map-card iframe {
        height: clamp(240px, 52vw, 340px);
    }
}

@media (max-width: 640px) {
    .ics-nav-check:checked ~ .ics-nav-links {
        grid-template-columns: 1fr;
    }

    .ics-nav-links {
        top: calc(100% - 0.15rem);
        max-height: calc(100vh - 82px);
        padding: 0.6rem;
    }

    .ics-nav-links a {
        text-align: left;
    }

    .ics-footer {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-inline: 1rem;
    }
}

@media (max-width: 420px) {
    .ics-logo-with-image {
        gap: 0.5rem;
    }

    .ics-logo-with-image img {
        width: 42px;
        height: 42px;
    }

    .ics-logo {
        font-size: 1.45rem;
    }

    .venue-container {
        width: calc(100% - 0.75rem);
        padding: 0.75rem;
    }
}
/* ===== Correct Header Alignment ===== */

.ics-navbar{
    width:100% !important;
    max-width:1650px !important;
    min-height:95px;
    margin:0 auto;
    padding:0 35px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
}

.ics-logo{
    flex:0 0 auto;
}

.ics-logo-with-image img{
    width:58px;
    height:58px;
}

.ics-logo-with-image span{
    font-size:42px;
    font-weight:800;
}

.ics-nav-links{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:nowrap !important;   /* important */
    gap:18px;
}

.ics-nav-links a{
    padding:11px 12px;
    font-size:15.5px;
    font-weight:700;
    white-space:nowrap;
}
.submission-guideline-card .important-dates {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}
.contact-us-section{
    padding:70px 20px;
    text-align:center;
}

.contact-title h1{
    color:#6f42c1;
    font-size:36px;
    margin-bottom:12px;
}

.contact-title p{
    color:#555;
    font-size:15px;
    margin-bottom:35px;
}

.conference-contact-box{
    width:650px;
    max-width:100%;
    margin:0 auto 45px;
    padding:35px;
    border-radius:14px;
    background:#7442c8;
    color:#fff;
    box-shadow:0 15px 35px rgba(80,40,150,.3);
}

.conference-contact-box h2{
    color:#fff;
    margin-bottom:8px;
}

.contact-person-box{
    margin-top:25px;
    padding:22px;
    background:rgba(255,255,255,.15);
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:18px;
    text-align:left;
}

.contact-person-box i{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    color:#7442c8;
    display:grid;
    place-items:center;
}

.contact-person-box h3{
    margin:0 0 8px;
    color:#fff;
}

.contact-person-box p{
    margin:3px 0;
    color:#fff;
}

.other-title{
    color:#6f42c1;
    margin-bottom:25px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 285px);
    justify-content: center;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

@media (max-width: 650px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        padding: 0 20px;
    }
}
.contact-info-card h3{
    color:#6f42c1;
    margin-bottom:8px;
}

@media(max-width:768px){
    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-person-box{
        flex-direction:column;
        text-align:center;
    }
}
.future-plans-section{
    padding:70px 20px;
    background:rgba(250,245,242,0.65);
}

.future-plans-container{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.future-plans-container h2{
    color:#5B4B8A;
    font-family:"Jost", Arial, sans-serif;
    font-size:clamp(1.8rem,3vw,2.6rem);
    margin-bottom:15px;
}

.future-intro{
    max-width:850px;
    margin:0 auto 35px;
    color:#52525B;
    line-height:1.8;
}

.future-plans-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.future-card{
    background:#fff;
    padding:25px 20px;
    border-radius:10px;
    border:1px solid #EFE6DD;
    box-shadow:0 14px 35px rgba(140,106,67,0.10);
    text-align:center;
}

.future-card i{
    font-size:30px;
    color:#8C6A43;
    margin-bottom:15px;
}

.future-card h3{
    color:#5B4B8A;
    font-family:"Jost", Arial, sans-serif;
    margin-bottom:10px;
}

.future-card p{
    color:#52525B;
    font-size:15px;
    line-height:1.7;
    text-align:justify;
}

@media(max-width:991px){
    .future-plans-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .future-plans-grid{
        grid-template-columns:1fr;
    }
}
.reg-guidelines-section{
    padding:70px 20px;
    background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(250,245,242,.75));
}

.reg-guidelines-container{
    max-width:1180px;
    margin:0 auto;
    text-align:center;
}

.reg-badge{
    display:inline-block;
    padding:7px 18px;
    border-radius:999px;
    background:#efe8ff;
    color:#5B4B8A;
    font-weight:800;
    font-size:13px;
}

.reg-guidelines-container h2{
    margin:18px 0 10px;
    color:#5B4B8A;
    font-family:"Jost",Arial,sans-serif;
    font-size:38px;
    font-weight:800;
}

.reg-guidelines-container h2::after{
    content:"";
    display:block;
    width:75px;
    height:4px;
    margin:12px auto 0;
    border-radius:10px;
    background:linear-gradient(90deg,#5B4B8A,#D4A373);
}

.reg-subtitle{
    color:#52525B;
    margin-bottom:45px;
}

.reg-guidelines-grid{
    display:grid;
    grid-template-columns:1.35fr .9fr;
    gap:28px;
    align-items:stretch;
}

.reg-instruction-card,
.reg-mode-card{
    background:#fff;
    border-radius:16px;
    padding:35px;
    text-align:left;
    box-shadow:0 20px 45px rgba(91,75,138,.12);
    border-top:5px solid #5B4B8A;
}

.reg-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:#5B4B8A;
    color:#fff;
    font-size:26px;
    box-shadow:0 12px 28px rgba(91,75,138,.28);
    margin-bottom:22px;
}

.reg-icon.orange{
    background:#D4A373;
}

.reg-instruction-card h3,
.reg-mode-card h3{
    color:#5B4B8A;
    font-size:26px;
    margin-bottom:22px;
}

.reg-instruction-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.reg-instruction-card li{
    padding:14px 0 14px 36px;
    border-bottom:1px solid #EFE6DD;
    position:relative;
    color:#52525B;
    font-weight:600;
}

.reg-instruction-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:13px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#D4A373;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:13px;
    font-weight:800;
}

.mode-box{
    padding:18px;
    border:1px solid #EFE6DD;
    border-radius:12px;
    margin-bottom:14px;
    background:#FAF5F2;
}

.mode-box i{
    color:#8C6A43;
    margin-right:8px;
}

.mode-box strong{
    color:#5B4B8A;
    display:block;
    margin-bottom:6px;
}

.mode-box p{
    color:#52525B;
    margin:0;
    font-size:14px;
}

@media(max-width:900px){
    .reg-guidelines-grid{
        grid-template-columns:1fr;
    }
}

/* ===== Site-wide responsive layout ===== */
img,
iframe,
video {
    max-width: 100%;
}

.ics-layout,
.page-content,
.ics-section,
.submission-page,
.organized-committee,
.payment-page,
.contact-us-section,
.future-plans-section,
.reg-guidelines-section {
    overflow-x: clip;
}

.ics-table-wrap,
.table-card {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ics-fee-table,
table {
    min-width: 720px;
}

@media (min-width: 981px) {
    .ics-navbar {
        width: min(100%, 1650px) !important;
        min-height: 95px;
        padding: 0 35px;
        flex-wrap: nowrap;
    }

    .ics-nav-links {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap !important;
    }
}

@media (max-width: 1200px) {
    .ics-navbar {
        padding-inline: 20px;
        gap: 18px;
    }

    .ics-logo-with-image span {
        font-size: 34px;
    }

    .ics-nav-links {
        gap: 8px;
    }

    .ics-nav-links a {
        padding: 10px 8px;
        font-size: 13.5px;
    }

    .page-grid,
    .ics-card-grid,
    .future-plans-grid,
    .conference-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-inline: 24px;
    }
}

/* iPad Pro / tablet media query */
@media (max-width: 1024px) {
    .ics-navbar {
        width: 100% !important;
        min-height: 78px;
        padding: 10px 18px;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .ics-logo-with-image img {
        width: 50px;
        height: 50px;
    }

    .ics-logo-with-image span {
        font-size: 30px;
    }

    .ics-nav-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
        border: 1px solid var(--line);
        border-radius: 6px;
        color: var(--title);
        background: #fff;
        box-shadow: 0 8px 20px rgba(140, 106, 67, 0.12);
        cursor: pointer;
    }

    .ics-nav-check:checked + .ics-nav-button .fa-bars::before {
        content: "\f00d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }

    .ics-nav-links {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: none !important;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 252, 250, 0.98);
        box-shadow: 0 18px 45px rgba(91, 75, 138, 0.16);
        z-index: 120;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .ics-nav-links a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: #fff;
        font-size: 15px;
        text-align: left;
        white-space: normal;
    }

    .ics-nav-links a::after {
        display: none;
    }

    .page-content > .ics-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .scope-card {
        padding: 20px;
    }
}

@media (max-width: 980px) {
    .ics-header {
        position: sticky;
    }

    .ics-navbar {
        width: 100% !important;
        min-height: 78px;
        padding: 10px 16px;
        justify-content: space-between;
        gap: 12px;
    }

    .ics-logo-with-image img {
        width: 50px;
        height: 50px;
    }

    .ics-logo-with-image span {
        font-size: 30px;
    }

    .ics-nav-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
        border: 1px solid var(--line);
        border-radius: 6px;
        color: var(--title);
        background: #fff;
        box-shadow: 0 8px 20px rgba(140, 106, 67, 0.12);
        cursor: pointer;
    }

    .ics-nav-check:checked + .ics-nav-button .fa-bars::before {
        content: "\f00d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }

    .ics-nav-links {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: none;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 252, 250, 0.98);
        box-shadow: 0 18px 45px rgba(91, 75, 138, 0.16);
        z-index: 120;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .ics-nav-links a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: #fff;
        font-size: 15px;
        text-align: left;
        white-space: normal;
    }

    .ics-nav-links a::after {
        display: none;
    }

    .ics-split,
    .ics-split.reverse,
    .reg-guidelines-grid,
    .venue-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .ics-section,
    .page-content,
    .submission-page,
    .organized-committee,
    .payment-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .conference-image,
    .conference-image img {
        min-height: 300px;
    }

    .committee-card-grid,
    .submission-guideline-grid,
    .submission-download-grid,
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body,
    body.ics-layout {
        background-attachment: scroll;
    }

    body::before,
    body.ics-layout::before {
        background-size: cover;
    }

    .ics-hero {
        min-height: 560px;
        padding: 48px 0 72px;
    }

    .ics-hero-content {
        width: calc(100% - 28px);
        margin-top: 0;
        padding: 34px 18px;
    }

    .page-hero,
    .committee-hero,
    .submission-hero,
    .conf-page-hero {
        min-height: 300px;
        padding: 56px 18px;
    }

    .page-hero h1,
    .committee-hero h1,
    .submission-hero h1,
    .conf-page-hero h1,
    .organized-committee-title h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.12;
    }

    .page-grid,
    .ics-card-grid,
    .page-content .ics-card-grid,
    .ics-date-grid,
    .ics-people-grid,
    .committee-list,
    .committee-card-grid,
    .submission-guideline-grid,
    .submission-download-grid,
    .conference-process-grid,
    .contact-info-grid,
    .future-plans-grid {
        grid-template-columns: 1fr;
    }

    .wide-card,
    .full-card,
    .committee-card-wide {
        grid-column: auto;
    }

    .ics-countdown {
        width: calc(100% - 20px);
        margin-top: -42px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ics-countdown div:nth-child(2) {
        border-right: 0;
    }

    .ics-countdown div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .ics-actions,
    .contact-person-box {
        flex-direction: column;
        align-items: stretch;
    }

    .ics-btn,
    .reg-btn,
    .payment-proof-btn,
    .submission-submit-btn {
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .payment-detail-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .conference-contact-box,
    .payment-details-card,
    .payment-scan,
    .reg-instruction-card,
    .reg-mode-card {
        padding: 24px 18px;
    }

    .ics-footer {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 42px 18px 28px;
    }
}

@media (max-width: 560px) {
    .ics-navbar {
        padding-inline: 12px;
    }

    .ics-logo-with-image img {
        width: 44px;
        height: 44px;
    }

    .ics-logo-with-image span {
        font-size: 24px;
    }

    .ics-nav-button {
        width: 40px;
        height: 40px;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        grid-template-columns: 1fr;
    }

    .ics-section,
    .page-content,
    .submission-page,
    .organized-committee,
    .payment-page,
    .contact-us-section,
    .future-plans-section,
    .reg-guidelines-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ics-hero h1 {
        font-size: clamp(2.35rem, 15vw, 3.4rem);
    }

    .ics-hero h2,
    .ics-tag {
        letter-spacing: 0.04em;
    }

    .ics-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-card,
    .ics-card-grid article,
    .page-content .ics-card-grid article,
    .committee-card,
    .submission-guideline-card,
    .future-card,
    .contact-info-card {
        padding: 20px 16px;
    }

    .conference-image,
    .conference-image img {
        min-height: 240px;
    }

    .venue-container {
        width: calc(100% - 16px);
        padding: 12px;
    }

    .map-card iframe {
        height: 240px;
    }

    .ics-fee-table,
    table {
        min-width: 640px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .ics-logo-with-image span {
        font-size: 21px;
    }

    .ics-logo-with-image img {
        width: 40px;
        height: 40px;
    }

    .ics-countdown strong {
        font-size: 1.45rem;
    }

    .ics-countdown span,
    .ics-nav-links a {
        font-size: 13px;
    }
}

/* ===== Device preset media queries ===== */
@media (max-width: 1366px) {
    .ics-navbar {
        width: min(100%, 1280px) !important;
    }

    .page-content,
    .ics-section,
    .organized-committee,
    .submission-page,
    .payment-page,
    .contact-us-section,
    .future-plans-section,
    .reg-guidelines-section {
        max-width: 1180px;
    }
}

@media (max-width: 1024px) {
    .ics-navbar {
        width: 100% !important;
        min-height: 78px;
        padding: 10px 18px;
    }

    .page-hero,
    .committee-hero,
    .submission-hero,
    .conf-page-hero {
        min-height: 340px;
    }

    .page-content,
    .ics-section,
    .organized-committee,
    .submission-page,
    .payment-page,
    .contact-us-section,
    .future-plans-section,
    .reg-guidelines-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .page-grid,
    .ics-card-grid,
    .page-content .ics-card-grid,
    .committee-card-grid,
    .submission-guideline-grid,
    .submission-download-grid,
    .future-plans-grid,
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 912px) {
    .page-hero h1,
    .committee-hero h1,
    .submission-hero h1,
    .conf-page-hero h1 {
        font-size: clamp(2.1rem, 7vw, 3.3rem);
    }

    .ics-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .ics-nav-check:checked ~ .ics-nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scope-card,
    .page-card,
    .committee-card,
    .submission-guideline-card,
    .contact-info-card,
    .future-card {
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .page-grid,
    .ics-card-grid,
    .page-content .ics-card-grid,
    .committee-card-grid,
    .submission-guideline-grid,
    .submission-download-grid,
    .conference-process-grid,
    .future-plans-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .ics-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .ics-logo-with-image span {
        font-size: 23px;
    }

    .page-hero,
    .committee-hero,
    .submission-hero,
    .conf-page-hero {
        min-height: 280px;
        padding: 48px 14px;
    }

    .page-content,
    .ics-section,
    .organized-committee,
    .submission-page,
    .payment-page,
    .contact-us-section,
    .future-plans-section,
    .reg-guidelines-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ics-nav-check:checked ~ .ics-nav-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .ics-navbar {
        min-height: 68px;
        padding: 8px 10px;
    }

    .ics-logo-with-image img {
        width: 40px;
        height: 40px;
    }

    .ics-logo-with-image span {
        font-size: 21px;
    }

    .ics-nav-button {
        width: 38px;
        height: 38px;
    }

    .page-hero h1,
    .committee-hero h1,
    .submission-hero h1,
    .conf-page-hero h1 {
        font-size: clamp(1.8rem, 11vw, 2.55rem);
    }

    .page-hero p,
    .committee-hero p,
    .submission-hero p,
    .conf-page-hero p {
        font-size: 0.95rem;
    }
}

@media (max-width: 390px) {
    .page-card,
    .ics-card-grid article,
    .page-content .ics-card-grid article,
    .scope-card,
    .committee-card,
    .submission-guideline-card,
    .future-card,
    .contact-info-card {
        padding: 18px 14px;
    }

    .scope-list li {
        padding-left: 24px;
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .ics-logo-with-image {
        gap: 8px;
    }

    .ics-logo-with-image span {
        font-size: 20px;
    }

    .page-hero,
    .committee-hero,
    .submission-hero,
    .conf-page-hero {
        min-height: 250px;
    }
}

@media (max-width: 360px) {
    .ics-logo-with-image span {
        font-size: 18px;
    }

    .ics-nav-button {
        width: 36px;
        height: 36px;
    }

    .ics-nav-links {
        left: 8px;
        right: 8px;
    }
}

@media (max-width: 344px) {
    .ics-logo-with-image img {
        width: 36px;
        height: 36px;
    }

    .ics-logo-with-image span {
        font-size: 17px;
    }

    .page-content,
    .ics-section,
    .organized-committee,
    .submission-page,
    .payment-page,
    .contact-us-section,
    .future-plans-section,
    .reg-guidelines-section {
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* ============================================================
               BASE RESET & TYPOGRAPHY
               ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f0f5f5;
        }

        /* ============================================================
               VENUE PAGE
               ============================================================ */
        .venue-page-section {
            background:
                linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 252, 248, 0.94)),
                url("../img/tech-conference-bg.png") center top / cover fixed;
            padding: 55px 20px 70px;
            overflow: hidden;
            /* keep children in bounds */;
        }

        /* ---- Headings ---- */
        .venue-heading {
            max-width: 720px;
            margin: 0 auto 40px;
            text-align: center;
            opacity: 0;
            animation: fadeInDown 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        }

        .venue-heading span {
            display: inline-block;
            padding: 7px 18px;
            border-radius: 25px;
            background: #fdfdfd;
            border: 1px solid #ececec;
            color: #db6541;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            animation: pulseGlow 2.8s ease-in-out infinite;
        }

        .venue-heading h2 {
            margin: 15px 0 10px;
            color: #081b2d;
            font-size: 40px;
            font-weight: 800;
        }

        .venue-heading h2 b {
            color: #3509d4;
        }

        .venue-heading p {
            color: #1855be;
            line-height: 1.7;
        }

        /* ---- Grid ---- */
        .venue-top-grid {
            max-width: 1050px;
            margin: 0 auto 28px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        /* ---- Cards ---- */
        .venue-info-card {
            background: #fff;
            padding: 35px;
            border-radius: 14px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
            opacity: 0;
            transform: translateY(40px);
            transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s ease;
            will-change: transform, box-shadow;
        }

        .venue-info-card.offline {
            border-top: 4px solid #1224c5;
            animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
        }

        .venue-info-card.online {
            border-top: 4px solid #1224c5;
            animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s forwards;
        }

        .venue-info-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 28px 55px rgba(0, 0, 0, .13);
        }

        /* ---- Icon ---- */
        .venue-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: #dedee6;
            color: #1e09e2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
            transition: background 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: floatIcon 3.8s ease-in-out infinite;
        }

        .venue-info-card:hover .venue-icon {
            transform: scale(1.12) rotate(-4deg);
            background: #c8c8e0;
            color: #0d00b3;
        }

        .online .venue-icon {
            background: #eef4ff;
            color: #2866ff;
            animation-delay: 0.6s;
        }

        .online:hover .venue-icon {
            background: #d4e0ff;
            color: #0044cc;
        }

        /* ---- Card content ---- */
        .venue-info-card small {
            color: #171adb;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .online small {
            color: #1c57ec;
        }

        .venue-info-card h3 {
            margin: 8px 0 5px;
            color: #071b2d;
            font-size: 28px;
        }

        .venue-info-card p {
            color: #777;
            margin-bottom: 22px;
        }

        .venue-info-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
        }

        .venue-info-card li {
            margin-bottom: 13px;
            color: #34415a;
            font-size: 14px;
            opacity: 0;
            transform: translateX(-12px);
            animation: slideInLeft 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        }

        .venue-info-card.offline li:nth-child(1) {
            animation-delay: 0.35s;
        }
        .venue-info-card.offline li:nth-child(2) {
            animation-delay: 0.50s;
        }
        .venue-info-card.offline li:nth-child(3) {
            animation-delay: 0.65s;
        }
        .venue-info-card.offline li:nth-child(4) {
            animation-delay: 0.80s;
        }

        .venue-info-card.online li:nth-child(1) {
            animation-delay: 0.55s;
        }
        .venue-info-card.online li:nth-child(2) {
            animation-delay: 0.70s;
        }
        .venue-info-card.online li:nth-child(3) {
            animation-delay: 0.85s;
        }

        .venue-info-card li i {
            width: 26px;
            height: 26px;
            background: #edfafa;
            color: #07877c;
            border-radius: 7px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: background 0.25s, color 0.25s, transform 0.3s;
        }

        .venue-info-card li:hover i {
            background: #07877c;
            color: #fff;
            transform: scale(1.15) rotate(6deg);
        }

        .online li i {
            background: #eef4ff;
            color: #2866ff;
        }

        .online li:hover i {
            background: #2866ff;
            color: #fff;
        }

        /* ---- Buttons ---- */
        .direction-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0593e6;
            color: #fff;
            padding: 13px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 800;
            transition: background 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .direction-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .direction-btn:hover::after {
            transform: translateX(100%);
        }

        .direction-btn:hover {
            background: #0142cc;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 10px 28px rgba(7, 135, 124, 0.35);
        }

        .direction-btn i {
            transition: transform 0.35s;
        }

        .direction-btn:hover i {
            transform: translateX(6px) scale(1.1);
        }

        .update-badge {
            display: inline-block;
            background: #fff7e6;
            border: 1px solid #ffd47a;
            color: #a65b00;
            padding: 7px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 18px;
            animation: pulseGlow 2.4s ease-in-out infinite;
        }

        .coming-btn {
            display: block;
            border: 0;
            background: #819beb;
            color: #fff;
            padding: 13px 22px;
            border-radius: 8px;
            font-weight: 800;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .coming-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .coming-btn:hover::after {
            transform: translateX(100%);
        }

        .coming-btn:hover {
            background: #6078d4;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 28px rgba(97, 120, 212, 0.35);
        }

        /* ---- Map card ---- */
        .location-map-card {
            max-width: 1050px;
            margin: 0 auto;
            background: #fff;
            padding: 18px;
            border-radius: 14px;
            border-top: 4px solid #07877c;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s forwards;
            transition: box-shadow 0.4s, transform 0.4s;
        }

        .location-map-card:hover {
            box-shadow: 0 28px 60px rgba(0, 0, 0, .14);
            transform: translateY(-4px);
        }

        .map-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }

        .map-title h3 {
            margin: 0;
            color: #071b2d;
            font-size: 20px;
        }

        .map-title a {
            color: #07877c;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            transition: color 0.3s, transform 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .map-title a:hover {
            color: #044f48;
            transform: translateX(4px);
        }

        .location-map-card iframe {
            width: 100%;
            height: 330px;
            border: 0;
            border-radius: 10px;
            transition: filter 0.4s;
        }

        .location-map-card:hover iframe {
            filter: brightness(1.02) contrast(1.04);
        }

        /* /* ============================================================
               TRAVEL / HOW TO REACH
               ============================================================ */
        .travel-section {
            padding: 30px 10px;
            background:
                linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 252, 248, 0.94)),
                url("../img/tech-conference-bg.png") center top / cover fixed;
            overflow: hidden;
        }

        /* ---- Heading ---- */
        .travel-heading {
            text-align: center;
            margin-bottom: 55px;
            opacity: 0;
            animation: fadeInDown 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards;
        }

        .travel-heading span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 22px;
            border-radius: 30px;
            background: #cfd6d6;
            border: 1px solid #1b29ad;
            color: #7071bd;
            /* font-size: 13px; */
            font-weight: 700;
            letter-spacing: 1px;
            animation: pulseGlow 3.2s ease-in-out infinite;
        }

        .travel-heading h4 {
            margin: 20px 0 15px;
            font-size: 54px;
            font-family: "Jost", sans-serif;
            color: #0f1f34;
            font-weight: 800;
        }

        .travel-heading h4 span {
            color: #0f9088;
            background: none;
            border: none;
            padding: 0;
            display: inline;
            animation: none;
        }

        .travel-line {
            width: 70px;
            height: 4px;
            background: #10b9a7;
            margin: 0 auto;
            border-radius: 30px;
            animation: expandLine 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
            transform: scaleX(0);
            transform-origin: center;
        }

        /* ---- Grid ---- */
        .travel-grid {
            max-width: 1300px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        /* ---- Cards ---- */
        .travel-card {
            background: #fff;
            border-radius: 18px;
            padding: 35px 28px;
            text-align: center;
            border: 1px solid #dbe9ea;
            opacity: 0;
            transform: translateY(45px);
            transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.3s;
            will-change: transform, box-shadow;
        }

        .travel-card:nth-child(1) {
            animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.20s forwards;
        }
        .travel-card:nth-child(2) {
            animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.40s forwards;
        }
        .travel-card:nth-child(3) {
            animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.60s forwards;
        }
        .travel-card:nth-child(4) {
            animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.80s forwards;
        }

        .travel-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 24px 48px rgba(0, 0, 0, .12);
            border-color: #10b9a7;
        }

        /* ---- Icon ---- */
        .travel-icon {
            width: 58px;
            height: 58px;
            margin: auto;
            border-radius: 16px;
            background: #eaf7f7;
            border: 1px solid #b8e0dc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #117d75;
            font-size: 24px;
            margin-bottom: 22px;
            transition: background 0.35s, color 0.35s, border-color 0.35s,
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s;
            animation: floatIcon 4.2s ease-in-out infinite;
        }

        .travel-card:nth-child(2) .travel-icon {
            animation-delay: 0.3s;
        }
        .travel-card:nth-child(3) .travel-icon {
            animation-delay: 0.6s;
        }
        .travel-card:nth-child(4) .travel-icon {
            animation-delay: 0.9s;
        }

        .travel-card:hover .travel-icon {
            background: #10b9a7;
            color: #fff;
            border-color: #10b9a7;
            transform: scale(1.14) rotate(-6deg);
            box-shadow: 0 12px 30px rgba(16, 185, 167, 0.30);
        }

        /* ---- Typography ---- */
        .travel-card h3 {
            font-size: 30px;
            margin-bottom: 18px;
            font-family: "Jost", sans-serif;
            color: #13253d;
            transition: color 0.3s;
        }

        .travel-card:hover h3 {
            color: #0f9088;
        }

        .travel-card p {
            font-size: 17px;
            line-height: 1.8;
            color: black;
            transition: color 0.3s;
            text-align: justify;
            font-family: "Inter", Times New Roman, serif;
        }

        .travel-card:hover p {
            color: #3f4a5a;
        }

        /* ============================================================
               KEYFRAME ANIMATIONS
               ============================================================ */

        /* ---- Fade In Up ---- */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ---- Fade In Down ---- */
        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ---- Slide In Left (for list items) ---- */
        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-16px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ---- Float Icon ---- */
        @keyframes floatIcon {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* ---- Pulse Glow (badges, tags) ---- */
        @keyframes pulseGlow {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(219, 101, 65, 0);
            }
            50% {
                transform: scale(1.04);
                box-shadow: 0 0 0 6px rgba(219, 101, 65, 0.08);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(219, 101, 65, 0);
            }
        }

        /* ---- Expand Line ---- */
        @keyframes expandLine {
            0% {
                transform: scaleX(0);
                opacity: 0.4;
            }
            100% {
                transform: scaleX(1);
                opacity: 1;
            }
        }

        /* ============================================================
               RESPONSIVE
               ============================================================ */
        @media (max-width: 991px) {
            .venue-top-grid {
                grid-template-columns: 1fr;
            }

            .venue-heading h2 {
                font-size: 34px;
            }

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

            .travel-heading h4 {
                font-size: 42px;
            }
        }

        @media (max-width: 600px) {
            .venue-page-section {
                padding: 40px 14px 55px;
            }

            .venue-heading h2 {
                font-size: 28px;
            }

            .venue-info-card {
                padding: 25px 20px;
            }

            .venue-info-card h3 {
                font-size: 24px;
            }

            .map-title {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .location-map-card iframe {
                height: 260px;
            }

            .direction-btn,
            .coming-btn {
                width: 100%;
                justify-content: center;
            }

            .travel-section {
                padding: 50px 14px;
            }

            .travel-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .travel-heading h4 {
                font-size: 32px;
            }

            .travel-card {
                padding: 24px 18px;
            }

            .travel-card h3 {
                font-size: 26px;
            }
        }

        /* ---- small extra touch: reduced motion ---- */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
/* Conference Title */

.conference-title{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#fff;
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:22px;
    box-shadow:0 6px 15px rgba(0,0,0,.08);
}

.conference-edition{
    background:#fff5ea;
    color:#8d673f;
    padding:8px 14px;
    border-radius:30px;
    font-family:"Jost",sans-serif;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
}

.conference-edition sup{
    font-size:10px;
}

.conference-name{
    color:#8d673f;
    font-family:"Jost",sans-serif;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    white-space:nowrap;
}

/* Responsive */

@media (max-width:768px){

    .conference-title{
        flex-wrap:wrap;
        padding:10px 15px;
        gap:8px;
    }

    .conference-edition{
        font-size:16px;
    }

    .conference-name{
        font-size:15px;
        letter-spacing:1px;
        text-align:center;
        white-space:normal;
    }
} 
/* =====================================================
   PUBLICATION BOX ONLY
===================================================== */

.icofe-pub-section,
.icofe-pub-section * {
    box-sizing: border-box;
}

/* Outer section has no background */
.icofe-pub-section {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 35px 20px 45px;
    background: transparent;
}

/* Marked box */
.icofe-pub-container {
    position: relative;
    width: min(980px, 100%);
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 45px 42px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(248, 245, 252, 0.94),
            rgba(255, 249, 245, 0.95)
        );

    border: 1px solid rgba(91, 75, 138, 0.15);
    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(91, 75, 138, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Top-left purple circle */
.icofe-pub-container::before {
    position: absolute;
    top: -115px;
    left: -105px;
    content: "";
    width: 250px;
    height: 250px;
    pointer-events: none;
    background: rgba(91, 75, 138, 0.08);
    border-radius: 50%;
}

/* Bottom-right gold circle */
.icofe-pub-container::after {
    position: absolute;
    right: -105px;
    bottom: -125px;
    content: "";
    width: 250px;
    height: 250px;
    pointer-events: none;
    background: rgba(140, 106, 67, 0.09);
    border-radius: 50%;
}

/* Keep content above circles */
.icofe-pub-heading,
.icofe-pub-cards,
.icofe-pub-swipe,
.icofe-pub-notice {
    position: relative;
    z-index: 2;
}

/* =====================================================
   HEADING
===================================================== */

.icofe-pub-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
    animation: pubBoxShow 0.7s ease both;
}

.icofe-pub-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 15px;
    color: #5b4b8a;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(91, 75, 138, 0.22);
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(91, 75, 138, 0.07);
    font-family: "Jost", Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.icofe-pub-label i {
    color: #8c6a43;
}

.icofe-pub-heading h2 {
    margin: 14px 0 7px;
    color: #5b4b8a;
    font-family: "Jost", Arial, sans-serif;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.15;
}

.icofe-pub-heading h2 span {
    color: #8c6a43;
}

.icofe-pub-line {
    position: relative;
    width: 68px;
    height: 4px;
    margin: 14px auto 16px;
    overflow: hidden;
    background: #8c6a43;
    border-radius: 20px;
}

.icofe-pub-line::after {
    position: absolute;
    top: 0;
    left: -25px;
    content: "";
    width: 22px;
    height: 100%;
    background: #ffffff;
    animation: pubLineMove 2s linear infinite;
}

.icofe-pub-heading p {
    max-width: 750px;
    margin: 0 auto;
    color: #52525b;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

/* =====================================================
   FIVE HORIZONTAL CARDS
===================================================== */

.icofe-pub-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 13px;
    width: 100%;
    margin: 0;
    padding: 5px 0 22px;
}

.icofe-pub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 225px;
    padding: 31px 9px 18px;
    overflow: hidden;
    text-align: center;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.97),
        rgba(247, 243, 251, 0.9)
    );

    border: 1px solid rgba(91, 75, 138, 0.2);
    border-radius: 10px 24px 10px 24px;

    box-shadow:
        0 12px 27px rgba(91, 75, 138, 0.11);

    animation: pubBoxShow 0.7s ease both;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Card top line */
.icofe-pub-card::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #5b4b8a,
        #8c6a43,
        #5b4b8a
    );

    transform: scaleX(0.3);
    transition: transform 0.4s ease;
}

/* Card shining animation */
.icofe-pub-card::after {
    position: absolute;
    top: -60%;
    left: -100%;
    content: "";
    width: 45%;
    height: 220%;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.85),
        transparent
    );

    transform: rotate(25deg);
    transition: left 0.65s ease;
}

.icofe-pub-card:hover {
    border-color: rgba(140, 106, 67, 0.7);

    box-shadow:
        0 21px 40px rgba(91, 75, 138, 0.2);

    transform: translateY(-8px);
}

.icofe-pub-card:hover::before {
    transform: scaleX(1);
}

.icofe-pub-card:hover::after {
    left: 145%;
}

/* Card entrance delay */
.icofe-pub-card:nth-child(1) {
    animation-delay: 0.1s;
}

.icofe-pub-card:nth-child(2) {
    animation-delay: 0.2s;
}

.icofe-pub-card:nth-child(3) {
    animation-delay: 0.3s;
}

.icofe-pub-card:nth-child(4) {
    animation-delay: 0.4s;
}

.icofe-pub-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Card numbers */
.icofe-pub-number {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(91, 75, 138, 0.12);
    font-family: "Jost", Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

/* Icons */
.icofe-pub-icon {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    place-items: center;
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #5b4b8a,
        #7665a7
    );

    border: 4px solid rgba(140, 106, 67, 0.14);
    border-radius: 16px 7px 16px 7px;

    box-shadow:
        0 10px 20px rgba(91, 75, 138, 0.23);

    transition:
        transform 0.5s ease,
        background 0.5s ease;
}

.icofe-pub-icon i {
    color: #ffffff;
    font-size: 20px;
}

.icofe-pub-card:hover .icofe-pub-icon {
    background: linear-gradient(
        135deg,
        #8c6a43,
        #bc8a5f
    );

    transform: rotateY(360deg) scale(1.05);
}

/* Publisher title */
.icofe-pub-card h3 {
    display: flex;
    min-height: 45px;
    margin: 0;
    align-items: center;
    justify-content: center;
    color: #5b4b8a;
    font-family: "Jost", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.icofe-pub-card small {
    display: block;
    min-height: 20px;
    color: #52525b;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 9px;
}

/* Publication type */
.icofe-pub-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: auto;
    padding: 6px 7px;
    color: #8c6a43;
    background: rgba(140, 106, 67, 0.11);
    border-radius: 50px;
    font-family: "Jost", Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.icofe-pub-type i {
    color: #8c6a43;
}

/* =====================================================
   SWIPE MESSAGE
===================================================== */

.icofe-pub-swipe {
    display: none;
    margin: 0;
    color: #8c6a43;
    font-family: "Jost", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

/* =====================================================
   NOTICE BOX
===================================================== */

.icofe-pub-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 800px;
    margin: 23px auto 0;
    padding: 17px 20px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.88),
        rgba(244, 239, 249, 0.8)
    );

    border: 1px solid rgba(91, 75, 138, 0.17);
    border-left: 4px solid #8c6a43;
    border-radius: 7px 18px 7px 18px;

    box-shadow:
        0 11px 26px rgba(91, 75, 138, 0.09);
}

.icofe-pub-notice-icon {
    flex: 0 0 34px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ffffff;
    background: #5b4b8a;
    border-radius: 50%;
}

.icofe-pub-notice-icon i {
    color: #ffffff;
    font-size: 12px;
}

.icofe-pub-notice p {
    margin: 0;
    color: #52525b;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.7;
    text-align: justify;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes pubBoxShow {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pubLineMove {
    from {
        left: -25px;
    }

    to {
        left: 100%;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
    .icofe-pub-container {
        padding: 42px 30px 36px;
    }

    .icofe-pub-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 13px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }

    .icofe-pub-card {
        flex: 0 0 190px;
        min-width: 190px;
        scroll-snap-align: start;
    }

    .icofe-pub-swipe {
        display: block;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
    .icofe-pub-section {
        padding: 25px 12px 35px;
    }

    .icofe-pub-container {
        width: 100%;
        padding: 35px 16px 30px;
        border-radius: 17px;
    }

    .icofe-pub-heading {
        margin-bottom: 27px;
    }

    .icofe-pub-heading h2 {
        font-size: 29px;
    }

    .icofe-pub-heading p {
        font-size: 12px;
    }

    .icofe-pub-card {
        flex: 0 0 78%;
        min-width: 215px;
    }

    .icofe-pub-notice {
        padding: 15px 13px;
    }

    .icofe-pub-notice p {
        font-size: 11px;
        text-align: left;
    }
}