    font-family: "Garet";
    src: url("fonts/Garet-Book.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face{
    font-family: "Garet";
    src: url("fonts/Garet-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  
:root {
  --bg: #f4f4f4;
  --text: #183540;
  --muted: #647b88;
  --card-bg: rgba(255, 255, 255, 0.98);


  --expo-navy: #16224d;
  --expo-pink: #c21674;
  --expo-pink-dark: #aa1065;
}

  :root{
  /* =========================================================
     GEOED BRAND COLORS
  ========================================================= */
  --geoed-white: #ffffff;
  --geoed-navy:  #101b37;
  --geoed-cyan:  #01c8ef;
  --geoed-magenta: #b6056f;

  /* Optional shades (for hover / depth) */
  --geoed-magenta-dark: #990458;
  --geoed-navy-light: #12385f;
}

  :root{
    --bg: #ffffff;
    --ink: #0b1326;
    --muted: #5b6477;

    --brand: #00b3e6;
    --brand2: #b10d7b;

    --border: rgba(10, 20, 40, 0.10);
    --shadow: 0 20px 50px rgba(10, 20, 40, 0.10);

    --count-bg: #B6056F;

    /* HERO sizing knobs */
    --hero-pad-y: 104px;
    --hero-max: 1200px;

    /* ✅ logo big but controlled */
    --logo-max: 880px;

    /* ✅ Save The Date noticeably bigger */
    --save-max: 620px;
    --save-scale: 1.35;

    --stack-gap: 44px;
    --stack-pad-top: 6px;
    --stack-pad-bottom: 6px;
  }
  
 /* =========================================================
   GEOED PAGE BUTTON — FINAL VERSION
========================================================= */

.geoed-page-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: auto !important;
  min-height: 0;
  padding: 14px 30px;

  border: 0;
  border-radius: 18px;

  background: linear-gradient(180deg, #c91886 0%, #a90f72 100%);
  color: #ffffff !important;
  text-decoration: none !important;

  /* 🔥 STRONGER TYPOGRAPHY */
  font-family: "Avenir Next", Avenir, "Avenir LT Std", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900; /* ← more bold */
  line-height: 1;
  letter-spacing: 0.02em;

  /* 🔥 SOFTER, DEEPER SHADOW */
  box-shadow:
    0 14px 28px rgba(201, 24, 134, 0.28),
    0 6px 14px rgba(10,20,40,0.10);

  /* 🔥 SMOOTH ANIMATION */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;

  transform: translateY(0);
  will-change: transform;
}

/* text */
.geoed-page-btn strong{
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* icon */
.geoed-page-btn svg{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* =========================================================
   GLOBAL SECTION TITLE (REUSABLE)
========================================================= */

.section-title{
  font-family: "Avenir Next", Avenir, "Avenir LT Std", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 1000;                 /* strong like keynote */
  letter-spacing: -0.02em;
  line-height: 1.05;

  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--geoed-navy); /* ✅ consistent */

  margin: 0 0 12px;
}

/* =========================================================
   🔥 HOVER EFFECT (SUBTLE LIFT + SCALE)
========================================================= */

.geoed-page-btn:hover{
  transform: translateY(-3px) scale(1.04); /* lift + grow */
  box-shadow:
    0 20px 40px rgba(201, 24, 134, 0.35),
    0 10px 24px rgba(10,20,40,0.14);
  filter: brightness(1.05);
  text-decoration: none !important;
}

/* click feel */
.geoed-page-btn:active{
  transform: translateY(0) scale(1);
  box-shadow:
    0 10px 20px rgba(201, 24, 134, 0.25),
    0 6px 12px rgba(10,20,40,0.10);
}

/* accessibility focus */
.geoed-page-btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.9),
    0 0 0 6px rgba(201, 24, 134, 0.35),
    0 18px 36px rgba(201, 24, 134, 0.30);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 640px){
  .geoed-page-btn{
    padding: 12px 24px;
    border-radius: 16px;
    font-size: 14px;
  }

  .geoed-page-btn svg{
    width: 14px;
    height: 14px;
  }
}

  *{ box-sizing: border-box; }
  body{
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.45;
  }
  a{ color: inherit; text-decoration: none; }
  img{ max-width: 100%; display: block; }

  .page-container{
    width: min(var(--hero-max), calc(100% - 48px));
    margin: 0 auto;
  }
/* -------------------------
   HERO (SIDE-BY-SIDE, TOP-ALIGNED) + TOPO BACKGROUND
------------------------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: var(--hero-pad-y) 0;

  /* ONLY the topography */
  background-image: url("../img/Top Texture background.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;

  background-color: #ffffff; /* fallback */
}

/* Optional overlay to soften topo */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.35);
  pointer-events:none;
  z-index:0;
}

/* keep content above the overlay */
.hero .page-container{
  position: relative;
  z-index: 1;
}

/* ✅ KEY FIX: TOP ALIGN the left and right elements */
.hero-stack{
  display: flex;
  align-items: flex-start;          /* was center */
  justify-content: center;
  gap: clamp(24px, 3.5vw, 72px);
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-main-logo{
  display: block;                   /* avoids baseline quirks */
  flex: 0 1 60%;
  width: 100%;
  max-width: var(--logo-max);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(10,20,40,0.12));
}

/* ✅ single definition (removed duplicate) */
.save-date-block{
  flex: 0 0 34%;
  display: flex;
  flex-direction: column;

  justify-content: flex-start;      /* top of the column */
  align-items: center;              /* center contents horizontally */
  gap: clamp(12px, 2vw, 14px);
  text-align: center;

  margin: 0;
  padding: 0;
}

/* Wrapper forces ALL corners rounded */
.save-date-wrapper{
  display: block;
  border-radius: 24px;
  overflow: hidden; /* clips SVG */
  box-shadow: 0 18px 34px rgba(10,20,40,0.12);
}

.save-date-img{
  display: block;
  width: 100%;
  max-width: calc(var(--save-max) * var(--save-scale));
  height: auto;
  transform: scale(1.05);
}

/* -------------------------
   ADD TO CALENDAR BUTTON
------------------------- */
.calendar-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;
  padding: 12px 18px;
  border-radius: 12px;

  background: #b0126b;              /* magenta button */
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-decoration: none;

  box-shadow:
    0 10px 22px rgba(0,0,0,0.12),s
    0 14px 34px rgba(219,0,127,0.35);

  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  will-change: transform, box-shadow;
}

.calendar-btn:hover{
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.16),
    0 26px 60px rgba(219,0,127,0.65);
}

.calendar-btn:active{
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.12),
    0 18px 40px rgba(219,0,127,0.45);
}

.calendar-btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.95),
    0 0 0 6px rgba(219,0,127,0.40),
    0 18px 40px rgba(219,0,127,0.45);
}

/* keep your existing styles below (unchanged) */
.event-date{
  margin: 0;
  font-weight: 1050;
  font-size: clamp(35px, 3vw, 38px);
  letter-spacing: -0.01em;
  color: var(--brand2);
  text-align: center;
}

.event-details {
  text-align: center;
}

.event-line {
  font-family: "Garet", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d63384;
  margin: 0;
}

.event-location {
  font-family: "Garet", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d63384;
  margin-top: 6px;
}

/* PHOTO GALLERY SECTION */
.expo-gallery-section {
  width: 100%;
  padding: 34px 20px 54px;
  position: relative;
}

.expo-gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.expo-gallery-header {
  text-align: center;
  margin-bottom: 24px;
}

.expo-gallery-eyebrow {
  margin: 0 0 8px;
  font-family: "Avenir Next", Avenir, "Avenir LT Std", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cc1981;
}

.expo-gallery-title{
  margin-bottom: 10px; /* spacing only */
}
.expo-gallery-text {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5b6b;
}

.expo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}

.expo-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #eef3f8;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expo-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.expo-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.expo-gallery-card.tall {
  grid-row: span 2;
}

.expo-gallery-card.wide {
  grid-column: span 2;
}

.expo-gallery-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 56, 95, 0.82);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.expo-gallery-actions {
  margin-top: 24px;
  text-align: center;
}

.expo-gallery-btn {
  display: inline-flex;
}

.expo-gallery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(204, 25, 129, 0.28);
  background: #b61572;
}

.expo-gallery-btn svg {
  width: 18px;
  height: 18px;
}

/* TABLET */
@media (max-width: 980px) {
  .expo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .expo-gallery-card.wide {
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .expo-gallery-section {
    padding: 26px 14px 42px;
  }

  .expo-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 12px;
  }

  .expo-gallery-card,
  .expo-gallery-card.tall,
  .expo-gallery-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .expo-gallery-overlay {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 0.86rem;
  }
}

/* KEYNOTE SPEAKER */
.hero-stack {
  margin-bottom: 0;
  padding-bottom: 0;
}

.keynote-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -30px;
  overflow: visible; /* allow button to hang below image on desktop */
  display: flex;
  justify-content: center;
}

.keynote-banner img {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
}

.keynote-btn {
  position: absolute;
  z-index: 3;

  left: 24%;
  top: 93%;
  transform: translate(-50%, -50%);

  padding: 8px 18px;
  min-height: 36px;
  border-radius: 12px;
  font-size: 13px;
}

/* keep text styling */
.keynote-btn strong {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1;
}

/* desktop hover */
.keynote-btn:hover {
  transform: translate(-50%, calc(-50% - 3px)) !important;
}

.keynote-btn:active {
  transform: translate(-50%, calc(-50% - 1px)) !important;
}

/* tablet */
@media (max-width: 768px) {
  .keynote-btn {
    left: 50%;
    top: 95%;
  }

  .keynote-btn:hover {
    transform: translate(-50%, -53%) scale(1.04);
  }

  .keynote-btn:active {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* mobile only: button goes UNDER the image */
@media (max-width: 520px) {
  .keynote-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 24px;
    padding: 0 14px;
    overflow: visible;
  }

  .keynote-banner img {
    width: 100%;
    max-width: 100%;
  }

  .keynote-btn {
    position: static;
    transform: none;
    left: auto;
    top: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 90px; /* was 14px → increase spacing */
    padding: 5px 12px;
    min-height: 26px;
    font-size: 10px;
    border-radius: 9px;
  }

  .keynote-btn:hover {
    transform: translateY(-2px) scale(1.04) !important;
  }

  .keynote-btn:active {
    transform: translateY(0) scale(1) !important;
  }
}

}

/* -------------------------
   INFO BAR (below HERO)
------------------------- */

.event-info-bar{
  position: relative;
  padding: 18px 0 0;               /* space from hero */
}

.info-bar{
  display: flex;
  align-items: stretch;
  justify-content: center;

  background: #14a9d6;             /* bright blue strip */
  border-radius: 10px;
  overflow: hidden;

  box-shadow: 0 14px 30px rgba(10,20,40,0.12);
}

/* Each segment */
.info-item{
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 18px;
  color: #ffffff;
  text-decoration: none;

  min-height: 66px;

  /* Updated typography */
  font-family: "Avenir Next", Avenir, "Avenir LT Std", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-style: normal;
}

/* Divider lines like the sample bar */
.info-item + .info-item{
  border-left: 1px solid rgba(255,255,255,0.28);
}

.info-icon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  flex: 0 0 36px;
}

.info-icon svg{
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.info-text{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

/* Label (EMAIL / PHONE / etc) */
.info-label{
  font-family: "Avenir Next", Avenir, "Avenir LT Std", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 600;              /* semibold instead of heavy bold */
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.92;

  text-shadow: 0 1px 6px rgba(0,0,0,0.18); /* subtle readability */
}

/* Value text (email, phone, etc) */
.info-value{
  font-family: "Avenir Next", Avenir, "Avenir LT Std", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 500;              /* medium for cleaner hierarchy */
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.02em;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

/* Hover feel */
.info-item:hover{
  background: #152d56;
  text-decoration: none;
  color: white;
}

/* Responsive: wrap into 2 rows then 1 column */
@media (max-width: 980px){
  .info-bar{
    flex-wrap: wrap;
  }

  .info-item{
    flex: 1 1 50%;
  }

  .info-item:nth-child(3){
    border-left: none; /* new row */
  }
}

@media (max-width: 560px){
  .info-item{
    flex: 1 1 100%;
  }

  .info-item + .info-item{
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.28);
  }

  .info-item:hover{
    background: rgba(0,0,0,0.06);
  }
}

/* SCHOOL DASHBOARD EXPERIENCE BUILDER */
.dashboard-section{
  padding: 0 !important;
  margin: 0 !important;
    position: relative;
  z-index: 5; /* higher than hero overlay */
}

.experience-fullwidth{
  width: 100%;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.arcgis-experience-wrapper{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  line-height: 0;
}

.arcgis-experience-wrapper iframe{
  width: 100%;
  height: 100vh;
  border: 0;
  border-radius: 0;
  display: block;
  margin: 0;
  padding: 0;
}

  /* -------------------------
     COUNTDOWN
  ------------------------- */
  .countdown{
    padding: 72px 0 78px;
    background: var(--count-bg);
    color: #fff;
  }

  .countdown h2{
    text-align: center;
    font-size: clamp(26px, 2.6vw, 40px);
    margin: 0;
    letter-spacing: -0.02em;
    color: #fff;

    font-family: "Garet Book", sans-serif;
    font-weight: 700;
  }

  .timer{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 18px;
    justify-items: center;
  }
  .time-card{
    width: 100%;
    max-width: 210px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 22px;
    padding: 26px 16px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    backdrop-filter: blur(8px);
  }
  .time-card .num{
    font-size: 44px;
    font-weight: 950;
    letter-spacing: -0.03em;
    margin: 0;
    color: #fff;
  }
  .time-card .lbl{
    margin-top: 6px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.92);
  }

  /* -------------------------
     STORYMAP SPLIT CARD
  ------------------------- */
 /* STORY SECTION (WITH TOPO BACKGROUND) */
.story {
  position: relative;
  overflow: hidden;

  /* topo background */
  background-image: url("../img/Top Texture background.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;

  background-color: #ffffff;
  padding: 80px 0; /* adjust if needed */
}

/* soft overlay (same as hero) */
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 0;
}



/* keep content above overlay */
.story .page-container {
  position: relative;
  z-index: 1;
}
  .story-card{
    border-radius: 34px;
    border: 1px solid rgba(10,20,40,0.10);
    box-shadow: 0 20px 55px rgba(10,20,40,0.08);
    overflow: hidden;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    min-height: 420px;
  }
  .story-left{
    padding: 60px 54px;
    display: grid;
    align-content: center;
    gap: 14px;
  }

  .story-left h2{
    margin: 0;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.02em;

    font-family: "Garet Book", sans-serif;
    font-weight: 400;
  }
  .garet-regular{ font-weight: 400; }
  .garet-bold{ font-weight: 700; }

  .story-left .hot{
    color: var(--brand2);
    font-weight: 700;
  }

  .story-left p{
    margin: 0;
    color: var(--muted);
    max-width: 55ch;
    font-size: 15px;
    line-height: 1.7;
  }

  .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(10,20,40,0.06);
    transition: transform .12s ease, box-shadow .12s ease;
    width: fit-content;
  }
  .btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(10,20,40,0.10);
  }
  .btn.magenta{
    margin-top: 18px;
    background: var(--brand2);
    border-color: rgba(177,13,123,0.25);
    color: #fff;
    box-shadow: 0 18px 38px rgba(177,13,123,0.22);
    padding: 0 22px;
    height: 52px;
    border-radius: 14px;
  }
  .btn.magenta svg{ width: 18px; height: 18px; }

  .story-right{
    background: #eef2fb;
    position: relative;
    min-height: 420px;
    overflow: hidden;
  }
  .story-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* -------------------------
     Responsive
  ------------------------- */
  @media (max-width: 1300px){
    :root{
      --hero-max: 1100px;
      --logo-max: 820px;

      /* keep it big, just slightly smaller */
      --save-max: 590px;
      --save-scale: 1.25;
    }
  }

  @media (max-width: 980px){
    .timer{
      grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
    .story-card{
      grid-template-columns: 1fr;
    }
    .story-left{
      padding: 44px 26px;
    }
    .story-right{
      min-height: 280px;
    }
    :root{
      --hero-pad-y: 84px;
      --save-max: 540px;
      --save-scale: 1.15;
    }
  }

  /* stack the hero on small screens */
  @media (max-width: 768px){
    .hero-stack{
      flex-direction: column;
      text-align: center;
    }
    .save-date-block{
      flex: 0 0 auto;
      align-items: center;
    }
    .event-date{
      text-align: center;
    }
    .save-date-img{
      max-width: min(520px, 100%);
      transform: none;
    }
  }

  @media (max-width: 520px){
    .timer{ grid-template-columns: 1fr; }
    :root{
      --hero-max: 980px;
      --save-max: 420px;
      --save-scale: 1.05;
    }
  }
  
  /* =========================
   HERO TEXT + BUTTON (match "Your paragraph text" style)
   ========================= */

/* keep the text block on the left and constrain width */
.hero-banner-paginated .content-container{
  padding: clamp(28px, 4vw, 64px);
}

.hero-banner-paginated .content-container > div{
  max-width: 520px;
}

/* Large heading styling */
.hero-banner-paginated .cc-slides-label{
  margin: 0 0 18px 0;
  color: #ffffff !important;
  font-weight: 300;
  line-height: 1.05;
  font-size: clamp(44px, 4.4vw, 78px);
  letter-spacing: -0.02em;
}

/* Remove link default styling inside label */
.hero-banner-paginated .cc-slides-label a{
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Small date/subtitle under the heading */
.hero-banner-paginated .cc-slides-label small{
  display: inline-block;
  margin-top: 14px;
  font-size: clamp(16px, 1.6vw, 26px);
  font-weight: 300;
  opacity: 0.92;
  line-height: 1.25;
}

/* Button styling (magenta pill) */
.hero-banner-paginated .cc-slides-action{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  background: #c11277 !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 14px 26px rgba(193, 18, 119, 0.28);
}

/* Button hover */
.hero-banner-paginated .cc-slides-action:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Optional: ensure the slide has the dark panel feel */
.hero-banner-paginated .cc-slides-slide.dark-gradient .content-container{
  background: linear-gradient(90deg, rgba(13, 25, 53, 0.92) 0%, rgba(13, 25, 53, 0.72) 25%, rgba(13, 25, 53, 0.0) 85%);
}

/* Mobile: center text */
@media (max-width: 768px){
  .hero-banner-paginated .content-container > div{
    max-width: 100%;
  }
  .hero-banner-paginated .cc-slides-label{
    font-size: clamp(34px, 8vw, 54px);
    text-align: left;
  }
}
  
 .hero-banner-paginated .content-container{
  padding-top: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(28px, 4vw, 64px);
  padding-left: clamp(80px, 9vw, 180px);  /* main alignment control */
  padding-right: clamp(20px, 3vw, 40px);
}

:root {
  --duration: 24s;
  --ring-size: 340px;
  --card-width: 200px;
  --card-height: 300px;
}

.exhibitors {
  position: relative;
  margin-top: -5%;
  padding: 28px 20px 80px;
  background: transparent;
  overflow: hidden;
  min-height: 100vh;
  background-image: url("../img/Top Texture background.svg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 5;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.02;
  margin-bottom: 10px;
  color: var(--expo-navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 1rem;
  color: var(--muted);
}

/* GEOED exhibitors spacing fix */
.exhibitors .section-header {
  margin: 0 auto 6px;
  max-width: 900px;
  text-align: center;
}

.exhibitors .section-header h2 {
  margin: 0 0 6px;
  line-height: 1.02;
}

.exhibitors .section-header p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
  max-width: 820px;
  margin-inline: auto;
}

/* =========================================================
   SPONSOR BANNER — FULL WIDTH
========================================================= */
/* =========================================================
   SPONSOR BANNER — CENTERED ROUNDED CARD
========================================================= */

.exhibitor-banner-section{
  position: relative;
  width: 100%;
  margin: 0;
  padding: 28px 0 10px;
  overflow: visible;

}

/* remove accidental spacing from surrounding layout */
.exhibitor-banner-section,
.exhibitor-banner-section + *{
  margin-top: 0 !important;
}

/* if dashboard section above has spacing, keep it tight */
.arcgis-experience-wrapper,
.experience-fullwidth,
.arcgis-experience-wrapper iframe{
  margin-bottom: 0 !important;
}

/* soft overlay behind section only */
.exhibitor-banner-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 0;
}

/* centered banner card */
.exhibitor-banner-full{
  position: relative;
  z-index: 1;

  width: min(1050px, calc(100% - 160px));
  margin: 0 auto;

  border-radius: 38px;
  overflow: hidden;
  line-height: 0;

  box-shadow: 0 18px 40px rgba(10,20,40,0.08);
}

/* make picture/image fill card */
.exhibitor-banner-full picture,
.exhibitor-banner-img{
  display: block;
  width: 100%;
}

.exhibitor-banner-img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================================================
   BUTTON OVERLAY
========================================================= */

.exhibitor-banner-btn{
  position: absolute;
  z-index: 3;

  left: 22%;
  top: 66%;
  transform: translate(-50%, -50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
    height: auto !important;

  padding: 20px 25px;
  min-height: 30px;
  border-radius: 10px;
  font-size: 11px;
  box-shadow: 0 10px 24px rgba(177,13,123,0.24);
}

.exhibitor-banner-btn strong{
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.2px;
  white-space: nowrap;
  line-height: 1;
}

.exhibitor-banner-btn svg{
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

/* remove hover motion */
.exhibitor-banner-btn,
.exhibitor-banner-btn:hover,
.exhibitor-banner-btn:active,
.exhibitor-banner-btn:focus{
  box-shadow: 0 10px 24px rgba(177,13,123,0.24) !important;
  filter: none !important;
  transition: none !important;
  text-decoration: none !important;
}

.exhibitor-banner-btn:hover{
  background: var(--brand2) !important;
}

.exhibitor-banner-btn:focus-visible{
  outline: none;
  box-shadow: 0 10px 24px rgba(177,13,123,0.24) !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px){
  .exhibitor-banner-full{
    width: min(960px, calc(100% - 80px));
    border-radius: 32px;
  }

  .exhibitor-banner-btn{
    left: 25%;
    top: 80%;
  }
}

@media (max-width: 768px){
  .exhibitor-banner-section{
    padding: 20px 0 8px;
  }

  .exhibitor-banner-full{
    width: calc(100% - 28px);
    border-radius: 24px;
  }

  .exhibitor-banner-btn{
    left: 22%;
    top: 73%;
    padding: 5px 10px;
    min-height: 24px;
    font-size: 9px;
    border-radius: 8px;
    gap: 4px;
  }

  .exhibitor-banner-btn svg{
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
  }
}

@media (max-width: 520px){
  .exhibitor-banner-full{
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .exhibitor-banner-btn{
    left: 22%;
    top: 73%;
    padding: 4px 8px;
    min-height: 20px;
    font-size: 8px;
    border-radius: 7px;
    gap: 3px;
  }

  .exhibitor-banner-btn svg{
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
  }
}


/* =========================================================
   REMOVE HOVER EFFECT (BANNER BUTTON ONLY)
========================================================= */

.exhibitor-banner-btn,
.exhibitor-banner-btn:hover,
.exhibitor-banner-btn:active,
.exhibitor-banner-btn:focus{
  transform: none !important;
  box-shadow: 0 16px 34px rgba(177,13,123,0.30) !important;
  filter: none !important;
  transition: none !important;
}

/* also prevent inherited .btn hover */
.exhibitor-banner-btn:hover{
  background: var(--brand2) !important; /* keep same color */
}

/* remove focus glow */
.exhibitor-banner-btn:focus-visible{
  outline: none;
  box-shadow: 0 16px 34px rgba(177,13,123,0.30) !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px){
  .exhibitor-banner-btn{
    left: 27%;
    top: 70%;
    padding: 11px 18px;
    font-size: 14px;
  }
}

@media (max-width: 768px){
  .exhibitor-banner-btn{
    left: 25%;
    top: 66%;
    transform: translate(-50%, -50%);
    padding: 10px 16px;
    min-height: 42px;
    font-size: 13px;
    border-radius: 12px;
  }

  .exhibitor-banner-btn svg{
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }
}

@media (max-width: 520px){
  .exhibitor-banner-btn{
    left: 12%;
    top: 68%;
    padding: 3px 9px;
    min-height: 22px;
    height: auto !important;
    font-size: 9px;
    border-radius: 7px;
    gap: 3px;
    line-height: 1;
  }
  

  .exhibitor-banner-btn svg{
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
  }
}

  
/* ===== CAROUSEL STAGE (MAIN FIX) ===== */

.carousel-stage {
  position: relative;
  height: 450px; /* reduced from 700px */
  display: grid;
  place-items: center;
  margin: 0 0 10px; /* reduced spacing below */
  isolation: isolate;
  overflow: visible;
}

.exhibitors .carousel-stage {
  margin: 0 0 10px;
}


.carousel-scene {
  width: min(1100px, 100%);
  height: 100%;
  position: relative;
  perspective: 1600px;
  display: grid;
  place-items: center;
  z-index: 1;
}

@keyframes spinCarousel {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}

.card-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: spinCarousel var(--duration) linear infinite;
  will-change: transform;
}

.card-3d.is-paused {
  animation-play-state: paused;
}

.carousel-card,
.focus-card {
  width: var(--card-width);
  height: var(--card-height);
  border-radius: 26px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 36px rgba(17, 29, 74, 0.08),
    0 8px 20px rgba(17, 29, 74, 0.05),
    0 0 16px rgba(17, 29, 74, 0.14);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.carousel-card:hover {
  box-shadow:
    0 24px 48px rgba(17, 29, 74, 0.12),
    0 10px 24px rgba(17, 29, 74, 0.08),
    0 0 24px rgba(17, 29, 74, 0.24);
}

.card-3d.dimmed .carousel-card {
  opacity: 0.16;
  filter: saturate(0.82);
}

.card-3d.dimmed .carousel-card.is-source {
  opacity: 0.28;
}

.card-top {
  height: 150px;
  background: linear-gradient(180deg, #edf4f5 0%, #e8f0f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.card-top img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.card-body {
  padding: 18px 16px 20px;
  text-align: center;
  background: #ffffff;
  min-height: calc(var(--card-height) - 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.card-body h3 {
  font-size: 1rem;
  line-height: 1.18;
  margin: 0;
  color: var(--expo-navy);
  font-weight: 700;
}

.expo-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 10px 16px;
  border-radius: 14px;
  text-decoration: none;
  background: linear-gradient(180deg, #cf1d7d 0%, #b3146b 100%);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    0 12px 24px rgba(194, 22, 116, 0.28),
    0 0 20px rgba(194, 22, 116, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.expo-link-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(194, 22, 116, 0.34),
    0 0 28px rgba(194, 22, 116, 0.28);
  text-decoration: none;
}

.expo-link-btn:focus-visible {
  outline: 3px solid rgba(194, 22, 116, 0.22);
  outline-offset: 3px;
}

.focus-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  z-index: 100;
  opacity: 0;
  pointer-events: auto;
  box-shadow:
    0 30px 65px rgba(17, 29, 74, 0.18),
    0 0 34px rgba(17, 29, 74, 0.22);
  transition:
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.35s ease;
}

.focus-card.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

.below-copy {
  text-align: center;
  max-width: 760px;
  margin: 10px auto 20px; /* reduced top gap */
  color: var(--muted);
  font-size: 1rem;
  position: relative;
  z-index: 5;
}

.cta-row {
  text-align: center;
  position: relative;
  z-index: 5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--expo-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 10px 24px rgba(22, 34, 77, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(22, 34, 77, 0.22);
  outline-offset: 3px;
}

.expo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.expo-modal.is-open {
  display: block;
}

.expo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 45, 0.45);
  backdrop-filter: blur(6px);
}

.expo-modal-dialog {
  position: relative;
  width: min(1280px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  box-shadow:
    0 30px 80px rgba(17, 29, 74, 0.18),
    0 0 28px rgba(17, 29, 74, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.expo-modal-header {
  padding: 28px 28px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(22, 34, 77, 0.08);
}

.expo-modal-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--expo-navy);
  line-height: 1.05;
  margin-bottom: 8px;
  font-weight: 800;
}

.expo-modal-header p {
  color: var(--muted);
  font-size: 0.98rem;
}

.expo-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(22, 34, 77, 0.08);
  color: var(--expo-navy);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, transform 0.25s ease;
}

.expo-modal-close:hover {
  background: rgba(22, 34, 77, 0.14);
  transform: scale(1.05);
}

.expo-modal-grid {
  padding: 30px 30px 34px;
  overflow-y: auto;
  display: grid;
 grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 26px;
}

.expo-modal-grid {
  padding: 30px 30px 34px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 26px;
}

.expo-modal-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 36px rgba(17, 29, 74, 0.08),
    0 8px 20px rgba(17, 29, 74, 0.05),
    0 0 16px rgba(17, 29, 74, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.expo-modal-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 48px rgba(17, 29, 74, 0.12),
    0 10px 24px rgba(17, 29, 74, 0.08),
    0 0 24px rgba(17, 29, 74, 0.24);
}

.expo-modal-card-top {
  height: 200px;
  flex: 0 0 200px;
  background: linear-gradient(180deg, #edf4f5 0%, #e8f0f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.expo-modal-card-top img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  display: block;
}

.expo-modal-card-body {
  background: #ffffff;
  padding: 22px 18px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 180px;
  flex: 1 1 auto;
}

.expo-modal-card-body h3 {
  color: var(--expo-navy);
  font-size: 1.15rem;
  line-height: 1.22;
  margin: 0;
  font-weight: 700;
}
@media (max-width: 900px) {
  :root {
    --ring-size: 300px;
    --card-width: 200px;
    --card-height: 280px;
  }

  .carousel-stage {
    height: 500px;
  }

  .carousel-scene {
    width: min(940px, 100%);
  }

  .card-top {
    height: 138px;
    padding: 16px;
  }

  .card-top img {
    max-height: 66px;
  }

  .card-body {
    min-height: calc(var(--card-height) - 138px);
    padding: 16px 14px 18px;
    gap: 10px;
  }

  .card-body h3 {
    font-size: 0.95rem;
  }

  .expo-link-btn {
    min-width: 122px;
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .btn {
    padding: 13px 22px;
    font-size: 0.92rem;
  }

  .expo-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expo-modal-card {
    min-height: 340px;
  }

  .expo-modal-card-top {
    height: 170px;
    flex: 0 0 170px;
    padding: 22px;
  }

  .expo-modal-card-top img {
    max-height: 88px;
  }

  .expo-modal-card-body {
    min-height: auto;
    padding: 18px 14px 20px;
  }

  .expo-modal-card-body h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  :root {
    --ring-size: 315px;
    --card-width: 180px;
    --card-height: 235px;
  }

  .exhibitors {
    padding: 24px 16px 64px;
  }

  .carousel-stage {
    height: 400px;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .carousel-scene {
    width: 100%;
    perspective: 1300px;
  }

  .card-top {
    height: 120px;
    padding: 14px;
  }

  .card-top img {
    max-height: 56px;
  }

  .card-body {
    min-height: calc(var(--card-height) - 120px);
    padding: 14px 10px 14px;
    gap: 8px;
  }

  .card-body h3 {
    font-size: 0.86rem;
    line-height: 1.16;
  }

  .expo-link-btn {
    min-width: 108px;
    padding: 8px 12px;
    font-size: 0.72rem;
    border-radius: 12px;
  }

  .focus-card.is-visible {
    transform: translate(-50%, -50%) scale(1.04);
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .expo-modal-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 22px;
  }

  .expo-modal-header {
    padding: 22px 18px 16px;
  }

  .expo-modal-grid {
    padding: 18px 18px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .expo-modal-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
  }

  .expo-modal-card-top {
    height: 135px;
    flex: 0 0 135px;
    padding: 18px;
  }

  .expo-modal-card-top img {
    max-height: 72px;
    display: block;
  }

  .expo-modal-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1 1 auto;
    min-height: 120px;
    padding: 18px 14px 20px;
    background: #ffffff;
  }

  .expo-modal-card-body h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
  }

  .expo-modal-card .expo-link-btn {
    min-width: 120px;
    font-size: 0.78rem;
    padding: 9px 14px;
  }
}

/* SPONSORS FULL-WIDTH BANNER */
.sponsors-banner {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.sponsors-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 0;
}

.sponsors-banner {
  position: relative;
}

.sponsors-banner img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}


