.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;
    }
}

.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 {
    background: linear-gradient(180deg, #f2f4f8 0%, #eceff5 100%) !important;
    padding-top: 72px;
    padding-bottom: 72px;
    border-top: 1px solid #e3e8f2;
    border-bottom: 1px solid #e3e8f2;
}

.home-sponsors__head {
    max-width: 760px;
    margin: 0 auto 48px;
}

.home-sponsors__kicker {
    color: #c2843a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-sponsors__title {
    color: #c97b2f;
    font-family: "Raleway", sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.home-sponsors__sub {
    color: #6b7280;
    font-size: 15px;
}

.home-sponsors__group {
    margin-bottom: 52px;
}

.home-sponsors__group:last-child {
    margin-bottom: 0;
}

.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__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));
    }
}

@media (max-width: 767.98px) {
    .home-sponsors {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .home-sponsors__head {
        margin-bottom: 38px;
    }

    .home-sponsors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-sponsors__item {
        min-height: 74px;
        padding: 10px;
    }
}
