.expo-hero-section {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url("../img/gallery/download.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.expo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 17, 52, 0.78) 0%, rgba(8, 17, 52, 0.62) 50%, rgba(8, 17, 52, 0.78) 100%);
    z-index: 1;
}

.expo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 40px 20px;
}

.expo-hero-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #f7b544;
    color: #1f2538;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.expo-hero-title {
    margin: 0 0 16px;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 1.1;
}

.expo-hero-title-white {
    color: #ffffff;
}

.expo-hero-title-gold,
.expo-hero-year {
    color: #f7b544;
}

.expo-hero-year {
    display: block;
    margin-top: 6px;
}

.expo-hero-subtitle {
    margin: 0 auto 34px;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(16px, 2vw, 27px);
    line-height: 1.45;
    font-weight: 400;
}

.expo-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 999px;
    background: #f7b544;
    color: #182235;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.expo-hero-btn:hover {
    background: #ffc35a;
    color: #182235;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.expo-hero-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
}

.expo-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 34px;
    line-height: 1;
    animation: expoScrollBounce 1.9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes expoScrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.75;
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .expo-hero-section {
        min-height: calc(100vh - 94px);
    }

    .expo-hero-content {
        padding: 34px 20px;
    }
}

@media (max-width: 575.98px) {
    .expo-hero-badge {
        font-size: 11px;
        padding: 7px 14px;
    }

    .expo-hero-subtitle {
        margin-bottom: 26px;
    }

    .expo-hero-btn {
        padding: 11px 24px;
        font-size: 15px;
    }

    .expo-scroll-indicator {
        bottom: 14px;
        font-size: 30px;
    }
}

.expo-trust-section {
    background: #f3f5fb;
    padding: 82px 0 72px;
}

.expo-trust-heading {
    max-width: 760px;
    margin: 0 auto 42px;
}

.expo-trust-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 16px;
    border-radius: 999px;
    background: #f7b544;
    color: #1f2538;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
}

.expo-trust-heading h2 {
    margin: 0 0 12px;
    color: #12172b;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.16;
}

.expo-trust-heading p {
    margin: 0;
    color: #5a6178;
    font-size: 21px;
}

.expo-main-card {
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1.5px solid #1f2538;
    border-radius: 18px;
    background: #fff;
    padding: 30px 30px;
    margin-bottom: 30px;
}

.expo-main-card-logo {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: #f7f8fc;
    border: 1px solid #e4e7f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expo-main-card-logo img {
    width: 72px;
    max-width: 80%;
    object-fit: contain;
}

.expo-main-card-content {
    flex: 1;
}

.expo-card-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #b8871f;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: 11px;
    font-weight: 700;
}

.expo-main-card-content h3 {
    margin: 0 0 10px;
    color: #111629;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
}

.expo-main-card-content p {
    margin: 0;
    max-width: 680px;
    color: #545d75;
    font-size: 18px;
    line-height: 1.5;
}

.expo-main-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #f7b544;
    color: #182235;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.expo-mini-card {
    height: 100%;
    border: 1px solid #e1e6f1;
    border-radius: 14px;
    background: #fff;
    padding: 18px 16px 20px;
    text-align: center;
}

.expo-mini-logo {
    width: 170px;
    margin: 12px auto 14px;
    border-radius: 12px;
    background: #f7f8fc;
    border: 1px solid #e4e7f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expo-mini-logo img {
    width: 120px;
    height: 64px;
    max-width: 120px;
    max-height: 64px;
    object-fit: contain;
    display: block;
}

.expo-mini-card h4 {
    margin: 0 0 8px;
    color: #111629;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.expo-mini-card p {
    margin: 0;
    color: #5c6378;
    font-size: 15px;
    line-height: 1.45;
}

.expo-legacy-pill {
    margin-top: 28px;
}

.expo-legacy-pill span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e1e6f1;
    border-radius: 999px;
    padding: 10px 18px;
    color: #50586f;
    font-size: 14px;
}

.expo-legacy-pill i {
    color: #f7b544;
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .expo-trust-section {
        padding: 64px 0 56px;
    }

    .expo-main-card {
        flex-wrap: wrap;
        padding: 24px;
    }

    .expo-main-card-content h3 {
        font-size: 32px;
    }

    .expo-main-card-content p,
    .expo-trust-heading p {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .expo-trust-heading {
        margin-bottom: 30px;
    }

    .expo-main-card {
        gap: 16px;
        border-radius: 14px;
        padding: 18px;
    }

    .expo-main-card-content h3 {
        font-size: 26px;
    }

    .expo-main-card-content p,
    .expo-trust-heading p {
        font-size: 15px;
    }

    .expo-main-card-logo {
        width: 84px;
        height: 84px;
    }

    .expo-main-card-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .expo-mini-card h4 {
        font-size: 20px;
    }

    .expo-mini-card p {
        font-size: 14px;
    }
}

.expo-previous-organizer-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eef2fb 0%, #e9eefb 100%);
    padding: 44px 0 92px;
}

.expo-previous-organizer-section::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 181, 68, 0.16) 0%, rgba(247, 181, 68, 0) 70%);
    top: -120px;
    right: -120px;
    pointer-events: none;
}

.expo-previous-organizer-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32, 45, 92, 0.12) 0%, rgba(32, 45, 92, 0) 72%);
    bottom: -100px;
    left: -90px;
    pointer-events: none;
}

.expo-previous-organizer-section .container {
    position: relative;
    z-index: 1;
}

.expo-previous-organizer-section .expo-trust-badge {
    background: #ffffff;
    border: 1px solid #d8dfef;
    color: #2c3657;
}

.expo-previous-organizer-section .expo-trust-heading h2 {
    color: #0f1730;
}

.expo-previous-organizer-section .expo-trust-heading p {
    color: #4f5a78;
    font-size: 19px;
}

.expo-previous-card {
    height: 100%;
    border: 1px solid #d7deef;
    border-radius: 18px;
    background: #fff;
    padding: 22px 18px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(16, 28, 60, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 4px solid #f7b544;
}

.expo-previous-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(16, 28, 60, 0.14);
}

.expo-previous-logo {
    width: 138px;
    margin: 14px auto 14px;
    border-radius: 12px;
    background: #f7f8fc;
    border: 1px solid #e4e7f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}

.expo-previous-logo img {
    max-height: 98px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.expo-previous-card h4 {
    margin: 0 0 8px;
    color: #111629;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: 25px;
}

.expo-previous-card p {
    margin: 0;
    color: #4e5875;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 575.98px) {
    .expo-previous-organizer-section {
        padding: 24px 0 60px;
    }

    .expo-previous-card h4 {
        font-size: 22px;
    }
}

.home-school-stall {
    padding: 0 0 76px;
    margin-top: -28px;
    background: linear-gradient(180deg, #e9eefb 0%, #f2f4fa 100%);
}

.home-school-stall__card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: clamp(28px, 4vw, 48px);
    background: linear-gradient(135deg, #0c1535 0%, #152048 52%, #1a2858 100%);
    border: 1px solid rgba(247, 181, 68, 0.28);
    box-shadow: 0 24px 56px rgba(8, 17, 52, 0.28);
}

.home-school-stall__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-school-stall__glow--1 {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -80px;
    background: radial-gradient(circle, rgba(247, 181, 68, 0.22) 0%, rgba(247, 181, 68, 0) 72%);
}

.home-school-stall__glow--2 {
    width: 240px;
    height: 240px;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(99, 130, 255, 0.18) 0%, rgba(99, 130, 255, 0) 72%);
}

.home-school-stall__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(247, 181, 68, 0.14);
    border: 1px solid rgba(247, 181, 68, 0.45);
    color: #f7b544;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.home-school-stall__title {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1.2;
}

.home-school-stall__title span {
    color: #f7b544;
}

.home-school-stall__lead {
    margin: 0 0 24px;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
}

.home-school-stall__perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.home-school-stall__perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
}

.home-school-stall__perks strong {
    color: #ffffff;
    font-weight: 700;
}

.home-school-stall__perk-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 181, 68, 0.16);
    color: #f7b544;
    font-size: 16px;
}

.home-school-stall__action {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.home-school-stall__action-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f7b544 0%, #e8a020 100%);
    color: #182235;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(247, 181, 68, 0.35);
}

.home-school-stall__action-kicker {
    margin: 0 0 6px;
    color: #f7b544;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-school-stall__action-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.25;
}

.home-school-stall__action-sub {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.home-school-stall__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #f7b544;
    color: #182235;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.home-school-stall__btn:hover {
    background: #ffc35a;
    color: #182235;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.home-school-stall__btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

.home-school-stall__note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.home-school-stall__note .bi {
    color: #f7b544;
}

@media (max-width: 991.98px) {
    .home-school-stall {
        margin-top: -12px;
        padding-bottom: 64px;
    }

    .home-school-stall__action {
        margin-top: 8px;
    }
}

@media (max-width: 575.98px) {
    .home-school-stall {
        padding-bottom: 56px;
    }

    .home-school-stall__card {
        border-radius: 16px;
        padding: 22px 18px;
    }

    .home-school-stall__lead {
        font-size: 15px;
    }

    .home-school-stall__perks li {
        font-size: 14px;
    }
}

.expo-about-section {
    background: #f2f4fa;
    padding: 76px 0 84px;
}

.expo-about-heading {
    max-width: 980px;
    margin: 0 auto 46px;
}

.expo-about-badge {
    display: inline-block;
    margin-bottom: 16px;
    color: #b8871f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expo-about-heading h2 {
    margin: 0 0 16px;
    color: #131a2d;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 3.2vw, 52px);
    line-height: 1.15;
}

.expo-about-heading p {
    max-width: 860px;
    margin: 0 auto;
    color: #565f78;
    font-size: 16px;
    line-height: 1.6;
}

.expo-about-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e1e6f1;
    border-radius: 14px;
    padding: 20px 20px 18px;
}

.expo-about-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff6e8;
    color: #b8871f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.expo-about-card h4 {
    margin: 0 0 10px;
    color: #1a2238;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.expo-about-card p {
    margin: 0;
    color: #5d667f;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .expo-about-section {
        padding: 62px 0 70px;
    }

    .expo-about-heading p {
        font-size: 15px;
    }

    .expo-about-card h4 {
        font-size: 26px;
    }

    .expo-about-card p {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .expo-about-section {
        padding: 52px 0 56px;
    }

    .expo-about-heading {
        margin-bottom: 30px;
    }

    .expo-about-heading h2 {
        font-size: 30px;
    }

    .expo-about-heading p {
        font-size: 14px;
    }

    .expo-about-card h4 {
        font-size: 24px;
    }

    .expo-about-card p {
        font-size: 15px;
    }
}

.expo-glimpses-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111a34 0%, #1d2952 55%, #263766 100%);
    padding: 82px 0 86px;
}

.expo-glimpses-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 181, 68, 0.25) 0%, rgba(247, 181, 68, 0) 72%);
    right: -120px;
    top: -130px;
    pointer-events: none;
}

.expo-glimpses-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
    left: -100px;
    bottom: -120px;
    pointer-events: none;
}

.expo-glimpses-section .container {
    position: relative;
    z-index: 1;
}

.expo-glimpses-heading {
    max-width: 930px;
    margin: 0 auto 40px;
}

.expo-glimpses-badge {
    display: inline-block;
    margin-bottom: 16px;
    color: #f7c15e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expo-glimpses-heading h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: clamp(30px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
}

.expo-glimpses-heading p {
    margin: 0 auto;
    max-width: 860px;
    color: rgba(234, 240, 255, 0.86);
    font-size: 15px;
    line-height: 1.65;
}

.expo-glimpse-image {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 34px rgba(8, 12, 27, 0.35);
}

.expo-glimpses-carousel {
    padding: 0 36px;
}

.expo-glimpses-carousel .carousel-control-prev,
.expo-glimpses-carousel .carousel-control-next {
    width: 36px;
    opacity: 1;
}

.expo-glimpses-carousel .carousel-control-prev {
    left: 0;
}

.expo-glimpses-carousel .carousel-control-next {
    right: 0;
}

.expo-glimpses-carousel .carousel-control-prev-icon,
.expo-glimpses-carousel .carousel-control-next-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.26);
    background-size: 54% 54%;
}

.expo-glimpse-point {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    color: #2c3553;
    font-size: 14px;
    line-height: 1.55;
    padding: 12px 16px 12px 26px;
    box-shadow: 0 10px 22px rgba(8, 12, 27, 0.2);
    height: 56px; /* keep all 4 boxes same height */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.expo-glimpse-point::before {
    content: "\2713";
    position: absolute;
    left: 10px;
    top: 10px;
    color: #f29c2b;
    font-weight: 700;
}


@media (max-width: 991.98px) {
    .expo-glimpses-section {
        padding: 64px 0 68px;
    }

    .expo-glimpse-image {
        height: 220px;
    }

    .expo-glimpses-carousel {
        padding: 0 28px;
    }

    .expo-glimpse-point {
        height: 68px;
        align-items: flex-start;
        padding-top: 16px;
    }
}

@media (max-width: 575.98px) {
    .expo-glimpses-section {
        padding: 52px 0 56px;
    }

    .expo-glimpses-heading h2 {
        font-size: 32px;
    }

    .expo-glimpses-heading p {
        font-size: 14px;
    }

    .expo-glimpse-image {
        height: 200px;
    }

    .expo-glimpses-carousel {
        padding: 0 24px;
    }

    .expo-glimpse-point {
        height: 74px;
        align-items: flex-start;
        padding-top: 16px;
    }
}

.expo-glimpse-story-section {
    background: #f2f4fa;
    padding: 76px 0 84px;
}

.expo-glimpse-story-heading {
    max-width: 100%;
    margin: 0 auto 34px;
}

.expo-glimpse-story-badge {
    display: inline-block;
    margin-bottom: 12px;
    color: #d78d1f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expo-glimpse-story-heading h2 {
    margin: 0 0 10px;
    color: #1b2237;
    font-family: "Raleway", sans-serif;
    font-size: clamp(30px, 3.4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
}

.expo-glimpse-story-heading p {
    margin: 0;
    color: #6a7288;
    font-size: 16px;
}

.expo-media-collage {
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e3e8f2;
    border-radius: 22px;
    padding: 10px;
}

.expo-media-video {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 420px;
}

.expo-media-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.expo-video-thumb-link {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.expo-video-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    background: #0b1022;
}

.expo-video-thumb-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 12, 31, 0.1) 40%, rgba(7, 12, 31, 0.56) 100%);
}

.expo-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 29, 37, 0.6);
    color: #ff8d2a;
    font-size: 42px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.expo-media-video-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.expo-media-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.expo-media-small {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.expo-media-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expo-media-small span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.expo-story-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e1e6f1;
    border-radius: 22px;
    padding: 26px 22px;
}

.expo-story-card h3 {
    margin: 0 0 12px;
    color: #2f58be;
    font-family: "Raleway", sans-serif;
    font-size: clamp(26px, 3.2vw, 45px);
    line-height: 1.15;
    font-weight: 700;
}

.expo-story-card p {
    margin: 0 0 12px;
    color: #5f6780;
    font-size: 14px;
    line-height: 1.72;
}

.expo-story-points {
    margin: 14px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid #e7ebf5;
    list-style: none;
}

.expo-story-points li {
    position: relative;
    padding-left: 17px;
    color: #5b637c;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 8px;
}

.expo-story-points li::before {
    content: "\203A";
    position: absolute;
    left: 0;
    top: 0;
    color: #f09a2b;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .expo-glimpse-story-section {
        padding: 60px 0 66px;
    }

    .expo-media-video {
        min-height: 360px;
    }
}

@media (max-width: 575.98px) {
    .expo-glimpse-story-section {
        padding: 50px 0 56px;
    }

    .expo-glimpse-story-heading h2 {
        font-size: 32px;
    }

    .expo-media-collage {
        grid-template-columns: 1fr;
    }

    .expo-media-video {
        min-height: 280px;
    }

    .expo-media-side {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }
}

/* Home Sponsors Section */
.home-sponsors.section {
    position: relative;
    overflow: hidden;
    background: #f2f4fa !important;
    padding-top: 72px;
    padding-bottom: 72px;
}

.home-sponsors__intro {
    max-width: 820px;
    margin: 0 auto 52px;
}

.home-sponsors__intro-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}

.home-sponsors__intro-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0c9a0, transparent);
}

.home-sponsors__intro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #f0e0c4;
    color: #c97b2f;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(201, 123, 47, 0.12);
}

.home-sponsors__intro-kicker {
    margin: 0 0 12px;
    color: #b8871f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-sponsors__intro-title {
    margin: 0 0 16px;
    color: #12172b;
    font-family: "Raleway", sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.home-sponsors__intro-title span {
    color: #c97b2f;
}

.home-sponsors__intro-divider {
    width: 64px;
    height: 4px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7b544 0%, #e8a030 100%);
}

.home-sponsors__intro-lead {
    max-width: 680px;
    margin: 0 auto;
    color: #5a6178;
    font-size: 17px;
    line-height: 1.65;
}

.home-sponsors__intro-year {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e8ecf4;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    vertical-align: middle;
}

.home-sponsors__venue-block {
    margin-bottom: 32px;
    padding: 32px 28px 36px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e8ecf4;
    box-shadow: 0 10px 32px rgba(18, 23, 43, 0.06);
}

.home-sponsors__venue-block + .home-sponsors__venue-block {
    margin-top: 24px;
}

.home-sponsors__venue-block:last-child {
    margin-bottom: 0;
}

.home-sponsors__venue-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 0 28px;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 800;
    color: #12172b;
    letter-spacing: 0.02em;
}

.home-sponsors__venue-title::before,
.home-sponsors__venue-title::after {
    content: "";
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f7b544);
}

.home-sponsors__venue-title::after {
    background: linear-gradient(90deg, #f7b544, transparent);
}

.home-sponsors__group {
    margin-bottom: 36px;
}

.home-sponsors__group:last-child {
    margin-bottom: 0;
}

.home-sponsors__group--partners {
    margin-bottom: 0;
}

.home-sponsors__cta {
    margin-top: 40px;
}

.home-sponsors__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7b544 0%, #e8a030 100%);
    color: #182235;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(232, 160, 48, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-sponsors__cta-btn:hover {
    color: #182235;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(232, 160, 48, 0.38);
}

.home-sponsors__cta-btn:focus-visible {
    outline: 3px solid rgba(201, 123, 47, 0.45);
    outline-offset: 3px;
}

.home-sponsors__silver-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.home-sponsors__item--silver {
    flex: 0 1 auto;
    min-width: 180px;
    max-width: 220px;
    min-height: 88px;
    padding: 14px 16px;
}

.home-sponsors__item--silver img {
    display: block;
    width: auto;
    height: 64px;
    max-width: 100%;
    max-height: none;
    margin: 0 auto;
    object-fit: contain;
}

.home-sponsors__partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.home-sponsors__partner-col {
    flex: 0 1 160px;
    max-width: 180px;
    text-align: center;
}

.home-sponsors__partner-label {
    margin: 0 0 10px;
    min-height: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4b5563;
    line-height: 1.35;
}

.home-sponsors__item--partner {
    min-height: 88px;
    padding: 14px 16px;
}

.home-sponsors__item--partner img {
    width: 100%;
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.home-sponsors__group-title {
    margin: 0;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 700;
    color: #1f2937;
}

.home-sponsors__line {
    width: 40px;
    height: 3px;
    background: #c97b2f;
    margin: 10px auto 26px;
    border-radius: 2px;
}

.home-sponsors__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.home-sponsors__grid--two-rows {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.home-sponsors__grid.home-sponsors__grid--gold {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.home-sponsors__grid.home-sponsors__grid--gold .home-sponsors__item {
    flex: 0 1 calc(16.666% - 10px);
    min-width: 140px;
    max-width: 180px;
}

.home-sponsors__item {
    background: #ffffff;
    border: 1px solid #ebeef3;
    border-radius: 10px;
    min-height: 86px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.home-sponsors__item img {
    width: 100%;
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .home-sponsors__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-sponsors__grid.home-sponsors__grid--gold .home-sponsors__item {
        flex: 0 1 calc(25% - 10px);
        min-width: 130px;
        max-width: 170px;
    }

    .home-sponsors__partners-grid {
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .home-sponsors {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .home-sponsors__intro {
        margin-bottom: 36px;
    }

    .home-sponsors__intro-lead {
        font-size: 15px;
    }

    .home-sponsors__intro-year {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }

    .home-sponsors__venue-block {
        padding: 24px 16px 28px;
    }

    .home-sponsors__venue-title::before,
    .home-sponsors__venue-title::after {
        max-width: 40px;
    }

    .home-sponsors__grid.home-sponsors__grid--gold {
        gap: 10px;
    }

    .home-sponsors__grid.home-sponsors__grid--gold .home-sponsors__item {
        flex: 0 1 calc(50% - 5px);
        min-width: 0;
        max-width: none;
    }

    .home-sponsors__item--silver {
        flex: 0 1 calc(50% - 7px);
        min-width: 0;
        max-width: none;
    }

    .home-sponsors__partners-grid {
        gap: 10px;
    }

    .home-sponsors__partner-col {
        flex: 0 1 calc(50% - 5px);
        max-width: none;
    }

    .home-sponsors__item {
        min-height: 74px;
        padding: 10px;
    }

    .home-sponsors__venue-block {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}
