/* ==========================================================================
   Digital Transformation in Hotel Technology — Main Stylesheet
   Reusable design tokens & component styles (Bootstrap 5.3 compatible)
   ========================================================================== */

:root {
  /* World BI DHT palette — hotel-technology-conference.worldbigroup.com */
  --color-primary: #1b3738;
  --color-primary-light: #2a4f51;
  --color-primary-deep: #1a4a47;
  --color-primary-dark: #152928;
  --color-accent: #a5d066;
  --color-accent-light: #b8e079;
  --color-accent-dark: #8ab84f;
  --color-highlight: #dbffc3;
  --color-surface: #efefef;
  --color-surface-alt: #f9fbfc;
  --color-white: #ffffff;
  --color-text: #1b3738;
  --color-text-muted: #626262;
  --color-text-body: #373737;

  /* Aliases (reusable across components) */
  --color-navy: var(--color-primary);
  --color-navy-light: var(--color-primary-light);
  --color-navy-dark: var(--color-primary-dark);
  --color-gold: var(--color-accent);
  --color-gold-light: var(--color-accent-light);
  --color-gold-dark: var(--color-accent-dark);
  --color-cream: var(--color-surface-alt);
  --color-cream-dark: #e8e8e8;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --section-padding-y: clamp(2.75rem, 5vw, 4rem);
  --container-max: 1140px;
  --header-height: 72px;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-pill: 3rem;

  /* Effects */
  --shadow-soft: 0 4px 24px rgba(27, 55, 56, 0.08);
  --shadow-medium: 0 12px 40px rgba(27, 55, 56, 0.14);
  --overlay-hero: rgba(27, 55, 56, 0.52);
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-gold);
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}
h2, .h2 {
    font-weight: 700;
    font-size: 38px;
}

section {
   overflow-x: hidden;
}

.thanks-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.thanks-popup.hidden {
    display: none;
}
.thanks-popup.show {
    display: flex;
}
.thanks-message {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgb(0 0 0 / 0.2);
}


/* --------------------------------------------------------------------------
   Buttons (extends Bootstrap)
   -------------------------------------------------------------------------- */

.btn-gold {
  --bs-btn-bg: var(--color-accent);
  --bs-btn-border-color: var(--color-accent);
  --bs-btn-color: var(--color-primary);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--color-accent);
  --bs-btn-hover-color: var(--color-accent);
  --bs-btn-active-bg: var(--color-accent-dark);
  --bs-btn-active-border-color: var(--color-accent-dark);
  --bs-btn-active-color: var(--color-primary);
  --bs-btn-focus-shadow-rgb: 165, 208, 102;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(165, 208, 102, 0.4);
}

.btn-outline-light {
  --bs-btn-color: var(--color-white);
  --bs-btn-border-color: var(--color-white);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--color-accent);
  --bs-btn-hover-color: var(--color-accent);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: relative;
  z-index: 1030;
}

.site-navbar {
  padding-block: 0.75rem;
  background: linear-gradient(
    180deg,
    rgba(12, 22, 24, 0.72) 0%,
    rgba(12, 22, 24, 0.35) 70%,
    transparent 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background var(--transition-slow),
    box-shadow var(--transition-slow),
    padding var(--transition-base),
    border-color var(--transition-base);
}

.site-navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(165, 208, 102, 0.35) 20%,
    var(--color-accent) 50%,
    rgba(165, 208, 102, 0.35) 80%,
    transparent 100%
  );
  opacity: 0.65;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.site-navbar.scrolled {
  padding-block: 0.5rem;
  background: rgba(21, 41, 40, 0.94);
  border-bottom-color: rgba(165, 208, 102, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(165, 208, 102, 0.15) inset;
}

.site-navbar.scrolled::after {
  opacity: 1;
}

.site-navbar__brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 0.5rem;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.site-navbar__brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.site-navbar__logo {
  display: block;
  width: auto;
  height: clamp(2.125rem, 5.5vw, 2.75rem);
  max-width: min(16.75rem, 62vw);
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}

.brand-mark-sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.6rem;
}

.site-navbar__nav {
  gap: 0.15rem;
}

.site-navbar__nav .nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius-pill);
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-navbar__nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.site-navbar__nav .nav-link:hover,
.site-navbar__nav .nav-link:focus-visible {
  color: var(--color-highlight) !important;
  background: rgba(165, 208, 102, 0.12);
}

.site-navbar__nav .nav-link:hover::after,
.site-navbar__nav .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.site-navbar__cta-item {
  margin-top: 0.75rem;
}

.site-navbar__cta {
  padding: 0.5rem 1.35rem !important;
  font-size: 16px !important;
  box-shadow: 0 4px 18px rgba(165, 208, 102, 0.35);
}

.site-navbar__cta:hover {
  box-shadow: 0 8px 24px rgba(165, 208, 102, 0.45);
}

.site-navbar__toggler {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 0.65rem !important;
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-navbar__toggler:hover {
  border-color: rgba(165, 208, 102, 0.55) !important;
  background: rgba(165, 208, 102, 0.12);
}

.site-navbar__toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(165, 208, 102, 0.45);
}

.site-navbar__toggler-icon {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0 auto;
  background: var(--color-accent);
  border-radius: 2px;
  box-shadow:
    0 -6px 0 var(--color-accent),
    0 6px 0 var(--color-accent);
}

@media (min-width: 992px) {
  .site-navbar__cta-item {
    margin-top: 0;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-navbar__nav {
    gap: 0.25rem;
  }
}
.header-logo{width:230px}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-bottom: 10px solid var(--color-accent);
}

/* Full-bleed background video */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

/* Subtle grid + ambient glow (decorative) */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 75%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  animation: heroGlowFloat 12s ease-in-out infinite;
}

.hero-glow-1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: -8%;
  right: -5%;
  background: rgba(165, 208, 102, 0.55);
}

.hero-glow-2 {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  bottom: -25%;
  left: -15%;
  background: rgba(27, 55, 56, 0.9);
  border: 1px solid rgba(165, 208, 102, 0.15);
  animation-delay: -6s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, rgb(6 14 18 / 68%) 0%, rgb(27 55 56 / 29%) 42%, rgb(27 55 56 / 36%) 100%), radial-gradient(ellipse 90% 80% at 20% 50%, rgba(165, 208, 102, 0.14) 0%, transparent 55%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 15%, rgba(165, 208, 102, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-row {
  padding-top: clamp(5rem, 12vh, 7rem);
  padding-bottom: clamp(4rem, 10vh, 6rem);
}

/* Glass content panel — width follows content */
.hero-panel {
  position: relative;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(12, 22, 24, 0.25) 100%
  ); */
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
  /* box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 24px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2); */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: heroPanelIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-panel-accent {
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(165, 208, 102, 0.35) 18%,
    var(--color-accent) 50%,
    rgba(165, 208, 102, 0.35) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(165, 208, 102, 0.45),
    0 0 24px rgba(219, 255, 195, 0.2);
  animation: heroAccentGlow 3s ease-in-out infinite;
}

.hero-panel-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(219, 255, 195, 0.15) 35%,
    rgba(219, 255, 195, 0.5) 50%,
    rgba(219, 255, 195, 0.15) 65%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: heroAccentSweep 2.8s linear infinite;
}

.hero-panel-accent::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 28%;
  height: calc(100% + 2px);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95) 42%,
    var(--color-accent-light) 50%,
    rgba(255, 255, 255, 0.95) 58%,
    transparent
  );
  filter: blur(0.5px);
  opacity: 0.9;
  animation: heroAccentBeam 2.8s linear infinite;
}

.hero-eyebrow {
  animation: fadeUp 0.75s ease 0.05s both;
}

.badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid rgba(165, 208, 102, 0.85);
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  box-shadow: 0 4px 20px rgba(165, 208, 102, 0.35);
}

.badge-eyebrow i {
  font-size: 1rem;
  opacity: 0.85;
}

.badge-eyebrow-soft {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  font-weight: 600;
}

/* Time-sensitive secondary pill — brand lime & teal */
.badge-eyebrow-urgent {
  background: linear-gradient(
    135deg,
    rgba(165, 208, 102, 0.38) 0%,
    rgba(27, 55, 56, 0.72) 42%,
    rgba(165, 208, 102, 0.22) 100%
  );
  color: #f4fce8;
  border-color: rgba(184, 224, 121, 0.65);
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow:
    0 0 0 1px rgba(165, 208, 102, 0.45),
    0 6px 26px rgba(165, 208, 102, 0.22);
  animation: badgeUrgentGlow 2.25s ease-in-out infinite;
}

.badge-eyebrow-urgent i {
  font-size: 1rem;
  color: var(--color-accent-light);
  animation: badgeUrgentIcon 2.25s ease-in-out infinite;
}

@keyframes badgeUrgentGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(165, 208, 102, 0.4),
      0 6px 22px rgba(165, 208, 102, 0.14);
    border-color: rgba(184, 224, 121, 0.48);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(165, 208, 102, 0.65),
      0 10px 34px rgba(165, 208, 102, 0.32);
    border-color: rgba(219, 255, 195, 0.88);
  }
}

@keyframes badgeUrgentIcon {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-title {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease 0.18s both;
}

.hero-title-line {
  display: block;
}

.text-gradient {
  background: linear-gradient(120deg, #fff 0%, #eef6e4 35%, var(--color-accent-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.35));
}

.hero-title-strong {
  margin-top: 0.15em;
  color: var(--color-white);
  text-shadow:
    0 2px 40px rgba(0, 0, 0, 0.45),
    0 0 1px rgba(0, 0, 0, 0.8);
}

.hero-pills {
  animation: fadeUp 0.8s ease 0.24s both;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-pill i {
  color: var(--color-accent-light);
  font-size: 1rem;
}

.hero-pill:hover {
  border-color: rgba(165, 208, 102, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-pill-highlight {
  animation: fadeUp 0.8s ease 0.36s both;
  background: linear-gradient(135deg, rgba(165, 208, 102, 0.35), rgba(165, 208, 102, 0.12));
  border-color: rgba(165, 208, 102, 0.55);
  color: var(--color-white);
}

.hero-pill-highlight i {
  color: var(--color-white);
}

.hero-cta-primary i {
  font-size: 1.35rem;
  line-height: 0;
  vertical-align: -0.1em;
  transition: transform var(--transition-base);
}

.hero-cta-primary:hover i {
  transform: translateX(4px);
}

.hero-cta-primary {
  box-shadow: 0 8px 32px rgba(165, 208, 102, 0.35);
}

.hero-scroll {
  position: fixed;
  right: clamp(1rem, 4vw, 2.75rem);
  bottom: clamp(1.25rem, 4vh, 3rem);
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.25rem, 11vmin, 5.75rem);
  height: clamp(4.25rem, 11vmin, 5.75rem);
  padding: 0;
  color: var(--color-accent);
  font-size: clamp(1.85rem, 4.5vmin, 2.5rem);
  z-index: 1025;
  border-radius: 50%;
  background: rgba(18, 28, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition:
    color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base);
}

.hero-scroll i {
  display: block;
  line-height: 1;
  animation: heroScrollIconBounce 2.4s ease-in-out infinite;
}

.hero-scroll::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.hero-scroll-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(165, 208, 102, 0.4);
  animation: heroRingExpand 2.4s ease-out infinite;
}

.hero-scroll:hover {
  color: var(--color-white);
  transform: translateY(-4px);
  border-color: rgba(165, 208, 102, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero-scroll:hover i {
  animation-play-state: paused;
}

.hero-scroll--top i {
  animation-name: heroScrollIconBounceUp;
}

.hero-scroll:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

@supports not (backdrop-filter: blur(12px)) {
  .hero-panel {
    background: rgba(12, 22, 24, 0.82);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroAccentGlow {
  0%,
  100% {
    opacity: 0.82;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.2);
  }
}

@keyframes heroAccentSweep {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@keyframes heroAccentBeam {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(420%);
  }
}

@keyframes heroGlowFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12px, 16px) scale(1.05);
  }
}

@keyframes heroScrollIconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes heroScrollIconBounceUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroRingExpand {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.42);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding-top: var(--header-height);
  box-sizing: border-box;
}

.hero-row {
  width: 100%;
  min-height: calc(100dvh - var(--header-height));
  margin: 0;
  padding-block: clamp(1.25rem, 3vh, 2rem);
}
/* --------------------------------------------------------------------------
   Sections (shared)
   -------------------------------------------------------------------------- */

.section {
  padding-block: var(--section-padding-y);
}

.section-alt {
  background-color: var(--color-surface);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
}

.section-label.justify-content-center::before {
  display: none;
}

.section-label--pill {
  padding: 0.5rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(138, 184, 79, 0.65);
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  box-shadow: 0 4px 20px rgba(165, 208, 102, 0.35);
  letter-spacing: 0.16em;
  gap: 0;
}

.section-label--pill::before {
  display: none;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0;
}

.section-intro .section-title {
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   About — stage card layout
   -------------------------------------------------------------------------- */

.section-about {
  background: var(--color-surface);
}

.about-stage {
  background: var(--color-white);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-stage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  padding: 2.75rem;
  padding-bottom: 2rem;
}

.about-stage__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-stage__gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: clamp(16rem, 32vw, 22rem);
}

.about-stage__shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-primary-dark);
}

.about-stage__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stage__shot--main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.about-stage__stats {
  --stat-cycle: 12s;
  --stat-step: 3s;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-primary);
}

.about-stage__stats li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.35rem 1.25rem 2rem;
  text-align: center;
  background-color: var(--color-primary);
  animation: about-stat-bg var(--stat-cycle) cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.about-stage__stats li:nth-child(1) {
  animation-delay: 0s;
}

.about-stage__stats li:nth-child(2) {
  animation-delay: calc(var(--stat-step) * 1);
}

.about-stage__stats li:nth-child(3) {
  animation-delay: calc(var(--stat-step) * 2);
}

.about-stage__stats li:nth-child(4) {
  animation-delay: calc(var(--stat-step) * 3);
}

.about-stage__stats li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stage__stats .about-stage__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent-light);
  animation: about-stat-value var(--stat-cycle) cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.about-stage__stats li:nth-child(1) .about-stage__value,
.about-stage__stats li:nth-child(1) .about-stage__label {
  animation-delay: 0s;
}

.about-stage__stats li:nth-child(2) .about-stage__value,
.about-stage__stats li:nth-child(2) .about-stage__label {
  animation-delay: calc(var(--stat-step) * 1);
}

.about-stage__stats li:nth-child(3) .about-stage__value,
.about-stage__stats li:nth-child(3) .about-stage__label {
  animation-delay: calc(var(--stat-step) * 2);
}

.about-stage__stats li:nth-child(4) .about-stage__value,
.about-stage__stats li:nth-child(4) .about-stage__label {
  animation-delay: calc(var(--stat-step) * 3);
}

.about-stage__stats .about-stage__label {
  margin-top: 0.75rem;
  font-size: clamp(0.6875rem, 1.15vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
  animation: about-stat-label var(--stat-cycle) cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes about-stat-bg {
  0% {
    background-color: var(--color-primary);
  }

  6% {
    background-color: var(--color-accent);
  }

  20% {
    background-color: var(--color-accent);
  }

  26% {
    background-color: var(--color-primary);
  }

  100% {
    background-color: var(--color-primary);
  }
}

@keyframes about-stat-value {
  0% {
    color: var(--color-accent-light);
  }

  6% {
    color: var(--color-primary);
  }

  20% {
    color: var(--color-primary);
  }

  26% {
    color: var(--color-accent-light);
  }

  100% {
    color: var(--color-accent-light);
  }
}

@keyframes about-stat-label {
  0% {
    color: rgba(255, 255, 255, 0.78);
  }

  6% {
    color: rgba(27, 55, 56, 0.75);
  }

  20% {
    color: rgba(27, 55, 56, 0.75);
  }

  26% {
    color: rgba(255, 255, 255, 0.78);
  }

  100% {
    color: rgba(255, 255, 255, 0.78);
  }
}

@media (max-width: 991.98px) {
  .about-stage__grid {
    grid-template-columns: 1fr;
    padding: 2rem;
    padding-bottom: 1.5rem;
  }

  .about-stage__stats li {
    padding: 1.5rem 1rem;
  }

  .about-stage__gallery {
    min-height: 18rem;
  }

  .about-stage__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stage__stats li:nth-child(2) {
    border-right: none;
  }

  .about-stage__stats li:nth-child(1),
  .about-stage__stats li:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

}

@media (max-width: 575.98px) {
  .about-stage__grid {
    padding: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .about-stage__stats {
    grid-template-columns: 1fr;
  }

  .about-stage__stats li {
    padding: 1.35rem 1rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-stage__stats li:last-child {
    border-bottom: none;
  }
}

/* --------------------------------------------------------------------------
   Why Attend — editorial panel grid
   -------------------------------------------------------------------------- */

.section-why {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary-dark);
  background-image:
    linear-gradient(
      168deg,
      rgba(21, 41, 40, 0.72) 0%,
      rgba(30, 58, 57, 0.55) 38%,
      rgba(38, 72, 70, 0.42) 62%,
      rgba(21, 41, 40, 0.68) 100%
    ),
    linear-gradient(
      120deg,
      rgba(165, 208, 102, 0.09) 0%,
      transparent 42%,
      rgba(184, 224, 121, 0.14) 100%
    ),
    url("../images/about-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 75% 55% at 85% 15%,
    rgba(165, 208, 102, 0.14) 0%,
    transparent 58%
  );
  pointer-events: none;
}

.section-why::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 45% at 10% 90%,
    rgba(27, 55, 56, 0.22) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.section-why .container {
  position: relative;
  z-index: 1;
}

.why-head {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
}

.why-head .section-label--pill {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.why-head .section-title {
  font-size: clamp(2rem, 4.25vw, 2.875rem);
  margin-bottom: 1rem;
  color: var(--color-white);
}

.why-head .text-muted {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(219, 255, 195, 0.88) !important;
}

.why-panel {
  position: relative;
  background: var(--color-white);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 4px 24px rgba(27, 55, 56, 0.06),
    0 20px 48px rgba(27, 55, 56, 0.1);
  overflow: hidden;
}

.why-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-accent-dark) 0%,
    var(--color-accent) 50%,
    var(--color-accent-light) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.why-panel__row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.why-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 1.85rem 1.4rem;
  border-right: 1px solid rgba(27, 55, 56, 0.08);
  border-bottom: 1px solid rgba(27, 55, 56, 0.08);
  transition: background-color var(--transition-base);
}

.why-item:last-child {
  border-right: none;
  border-bottom: none;
}

.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.why-item:hover {
  background: var(--color-surface-alt);
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.why-item__index {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.75vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent-dark);
  opacity: 0.85;
}

.why-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.125rem;
  color: var(--color-primary);
  background: var(--color-highlight);
  border-radius: 50%;
}

.why-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-item__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-body);
}

/* Tablet: 2×2 grid */
@media (min-width: 576px) and (max-width: 991.98px) {
  .why-panel__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-item {
    border-bottom: none;
  }

  .why-item:nth-child(2n) {
    border-right: none;
  }

  .why-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(27, 55, 56, 0.08);
  }
}

/* Desktop: 4 columns in one row */
@media (min-width: 992px) {
  .why-panel__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-item {
    padding: 2rem 1.35rem;
    border-bottom: none;
  }

  .why-item:not(:last-child) {
    border-right: 1px solid rgba(27, 55, 56, 0.08);
  }

  .why-item:last-child {
    border-right: none;
  }

  .why-item__title {
    font-size: 1.35rem;
  }

  .why-item__text {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1400px) {
  .why-item {
    padding: 2rem 1.5rem;
  }

  .why-item:not(:last-child) {
    border-right: 3px dashed rgba(27, 55, 56, 0.08);
  }
}

@media (max-width: 575.98px) {
  .why-item {
    border-right: none;
    padding: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Event Themes — layered programme panel
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Event Themes — layered programme panel
   -------------------------------------------------------------------------- */

.section-themes {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
  background-color: #eef4f1;
  background-image:
    linear-gradient(
      165deg,
      rgba(249, 251, 252, 0.9) 0%,
      rgba(238, 244, 241, 0.82) 45%,
      rgba(219, 255, 195, 0.35) 100%
    ),
    url("../images/about-lobby.jpg");
  background-size: cover;
  background-position: center;
}

.section-themes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 48px,
    rgba(27, 55, 56, 0.015) 48px,
    rgba(27, 55, 56, 0.015) 49px
  );
  pointer-events: none;
}

.section-themes .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.themes-head {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.themes-head .section-label--pill {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.themes-head .section-title {
  font-size: clamp(2rem, 4.25vw, 2.875rem);
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.themes-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.themes-stage {
  position: relative;
  overflow: visible;
}

/* Sticky scroll: Day 1 pins, Day 2 reveals on scroll */
.themes-stage--scroll {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.themes-stage--scroll::before {
  display: none;
}

.themes-scroll-track {
  position: relative;
  height: var(--themes-track-height, 250vh);
  min-height: calc(var(--themes-panel-height, 0px) + 50vh);
}

.themes-scroll-sticky {
  position: sticky;
  top: var(--header-height);
  z-index: 2;
  height: var(--themes-panel-height, auto);
  min-height: 0;
  max-height: none;
  padding: 0.75rem 0 1rem;
  background: transparent;
}

.themes-stage--scroll:not(.themes-stage--stacked):not(.themes-stage--measuring) .themes-scroll-sticky,
.themes-stage--scroll:not(.themes-stage--stacked):not(.themes-stage--measuring) .themes-scroll-stack {
  overflow: hidden;
}

.themes-scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(27, 55, 56, 0.08);
  z-index: 5;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.themes-scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    var(--color-accent-dark),
    var(--color-accent),
    var(--color-primary-light)
  );
  will-change: transform;
}

.theme-day__head-aside {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

.theme-day__scroll-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: opacity 0.25s ease;
}

.theme-day__scroll-eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

.theme-day__scroll-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-primary);
}

.theme-day__scroll-icon {
  font-size: 1.15rem;
  color: var(--color-accent-dark);
  animation: themesHintBounce 2s ease-in-out infinite;
}

.themes-stage.is-day2-visible [data-themes-hint] .theme-day__scroll-copy {
  opacity: 0;
  visibility: hidden;
}

@keyframes themesHintBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.themes-scroll-stack {
  position: relative;
  height: 100%;
  overflow: visible;
  background: var(--color-white);
  border-radius: 1.25rem;
  border: 1px solid rgba(27, 55, 56, 0.1);
  box-shadow:
    0 8px 32px rgba(27, 55, 56, 0.08),
    0 24px 56px rgba(27, 55, 56, 0.1);
  --themes-slide: 0;
}

.themes-scroll-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-accent-dark) 0%,
    var(--color-accent) 35%,
    var(--color-primary-light) 65%,
    var(--color-accent-light) 100%
  );
  z-index: 4;
  pointer-events: none;
}

.themes-stage--stacked .themes-scroll-track {
  height: auto;
  min-height: 0;
}

.themes-stage--stacked .themes-scroll-sticky {
  position: relative;
  top: auto;
  height: auto !important;
  min-height: 0;
  padding: 0;
}

.themes-stage--stacked .themes-scroll-progress {
  display: none;
}

.themes-stage--stacked [data-themes-hint] {
  display: none;
}

.themes-stage--stacked .themes-scroll-stack {
  height: auto;
  overflow: visible;
}

.themes-stage--stacked .theme-day--lead {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto;
}

.themes-stage--stacked .theme-day__layer {
  position: relative;
  height: auto;
  clip-path: none;
  box-shadow: none;
  pointer-events: auto;
}

.themes-stage--stacked .theme-day--slide {
  position: relative;
  height: auto;
  min-height: 0;
  margin-top: 0;
  border-top: 1px solid rgba(27, 55, 56, 0.1);
}

.themes-stage--stacked .themes-scroll-stack {
  --themes-slide: 1;
}

/* Accurate height measure before applying sticky panel size (desktop) */
.themes-stage--measuring .themes-scroll-sticky,
.themes-stage--measuring .themes-scroll-stack {
  height: auto !important;
  min-height: 0 !important;
}

.themes-stage--measuring .theme-day__layer {
  position: relative !important;
  height: auto !important;
  clip-path: none !important;
  overflow: visible !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.themes-stage--measuring .theme-day--lead,
.themes-stage--measuring .theme-day--slide {
  height: auto !important;
  min-height: 0 !important;
}

.theme-day--lead {
  position: relative;
  z-index: 1;
  height: auto;
  overflow: visible;
  padding-bottom: 2rem;
  background: var(--color-white);
}

.themes-stage--scroll:not(.themes-stage--stacked) .theme-day--lead {
  opacity: calc(1 - var(--themes-slide) * 0.9);
}

.themes-stage.is-themes-sliding .theme-day--lead {
  pointer-events: none;
}

.theme-day__layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  box-shadow: 0 -16px 48px rgba(27, 55, 56, 0.18);
  clip-path: inset(calc((1 - var(--themes-slide)) * 100%) 0 0 0);
}

.themes-stage.is-day2-visible .theme-day__layer,
.themes-stage.is-themes-sliding .theme-day__layer {
  pointer-events: auto;
}

.themes-stage.is-day2-visible .theme-day__layer {
  box-shadow: 0 -20px 56px rgba(27, 55, 56, 0.22);
}

.theme-day--slide {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  padding-bottom: 2rem;
  background: var(--color-white);
  box-sizing: border-box;
}

.themes-stage.is-day2-visible .theme-day--lead {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.theme-day {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 0 2.25rem;
  isolation: isolate;
}

.theme-day::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
  z-index: 1;
}

.theme-day--alt::before {
  background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary));
}

.theme-day__head {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 2rem 1.75rem 1.5rem 2rem;
  overflow: visible;
  background: linear-gradient(
    118deg,
    rgba(165, 208, 102, 0.42) 0%,
    rgba(219, 255, 195, 0.55) 28%,
    rgba(255, 255, 255, 0.35) 62%,
    rgba(27, 55, 56, 0.06) 100%
  );
  border-bottom: 3px solid rgba(165, 208, 102, 0.55);
}

.theme-day__head::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 208, 102, 0.35) 0%, transparent 68%);
  pointer-events: none;
}

.theme-day--alt .theme-day__head {
  background: linear-gradient(
    118deg,
    rgba(27, 55, 56, 0.18) 0%,
    rgba(42, 79, 81, 0.12) 32%,
    rgba(219, 255, 195, 0.35) 68%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border-bottom-color: rgba(27, 55, 56, 0.25);
}

.theme-day--alt .theme-day__head::after {
  background: radial-gradient(circle, rgba(27, 55, 56, 0.14) 0%, transparent 68%);
}

.theme-day__index {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(160deg, rgba(138, 184, 79, 0.45) 0%, rgba(27, 55, 56, 0.12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
}

.theme-day--alt .theme-day__index {
  background: linear-gradient(160deg, rgba(165, 208, 102, 0.55) 0%, rgba(27, 55, 56, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.theme-day__head-inner {
  position: relative;
  z-index: 1;
  /*max-width: min(72%, 40rem);*/
  padding-right: 0.5rem;
}

.theme-day__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.theme-day__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  border: 1px solid rgba(138, 184, 79, 0.55);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(165, 208, 102, 0.28);
}

.theme-day--alt .theme-day__badge {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-color: rgba(27, 55, 56, 0.35);
  box-shadow: 0 4px 16px rgba(27, 55, 56, 0.22);
}

.theme-day__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--color-primary);
  margin: 0 0 0.65rem;
}

.theme-day__tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-primary-light);
  font-style: italic;
}

.theme-day__body {
  padding: 0 1.75rem 0 2rem;
}

.theme-day__topics-panel {
  position: relative;
  padding: 0 1.15rem 1.35rem;
  background: linear-gradient(
    165deg,
    rgba(219, 255, 195, 0.35) 0%,
    rgba(255, 255, 255, 0.95) 38%,
    rgba(249, 251, 252, 1) 100%
  );
  border: 1px solid rgba(165, 208, 102, 0.35);
  border-radius: 1rem;
  box-shadow:
    inset 4px 0 0 var(--color-accent),
    0 10px 32px rgba(27, 55, 56, 0.06);
}

.theme-day--alt .theme-day__topics-panel {
  background: linear-gradient(
    165deg,
    rgba(27, 55, 56, 0.08) 0%,
    rgba(219, 255, 195, 0.25) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  border-color: rgba(27, 55, 56, 0.15);
  box-shadow:
    inset 4px 0 0 var(--color-primary),
    0 10px 32px rgba(27, 55, 56, 0.08);
}

.theme-day__label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: calc(100% + 2.3rem);
  margin: 0 -1.15rem 1rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: linear-gradient(90deg, rgba(165, 208, 102, 0.45) 0%, rgba(219, 255, 195, 0.2) 100%);
  border-bottom: 1px solid rgba(165, 208, 102, 0.4);
  border-radius: 1rem 1rem 0 0;
}

.theme-day--alt .theme-day__label {
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-bottom-color: rgba(27, 55, 56, 0.2);
}

.theme-day__label i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.85rem;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(27, 55, 56, 0.2);
}

.theme-day--alt .theme-day__label i {
  color: var(--color-primary);
  background: var(--color-accent);
}

.theme-day__topics {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(27, 55, 56, 0.12);
  border-radius: 0.65rem;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(27, 55, 56, 0.05);
}

/* Small phones: 1 column */
@media (max-width: 575.98px) {
    .hero-panel {
        padding: clamp(1.75rem, 4vw, 2.75rem) 0;
    }
  .theme-day__topics {
    grid-template-columns: 1fr;
  }

  .theme-day__topics li {
    border-right: none !important;
  }

  .theme-day__head-aside {
    display: none;
  }
}

/* 2 topics per row (576px – 964px) */
@media (min-width: 576px) and (max-width: 964.98px) {
  .theme-day__topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-day__topics li:nth-child(2n) {
    border-right: none;
  }

  /* Center lone item on the last row (e.g. 13 topics) */
  .theme-day__topics li:last-child:nth-child(2n + 1):not(:only-child) {
    grid-column: 1 / -1;
  }

  .theme-day__topics li:nth-child(4n + 1) .theme-topic,
  .theme-day__topics li:nth-child(4n + 2) .theme-topic {
    background: rgba(219, 255, 195, 0.22);
  }

  .theme-day--alt .theme-day__topics li:nth-child(4n + 1) .theme-topic,
  .theme-day--alt .theme-day__topics li:nth-child(4n + 2) .theme-topic {
    background: rgba(238, 244, 241, 0.85);
  }
}

/* 3 topics per row (965px and up) */
@media (min-width: 965px) {
  .theme-day__topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Center lone item on the last row (e.g. 13 topics) */
  .theme-day__topics li:last-child:nth-child(3n + 1):not(:only-child) {
    grid-column: 2;
  }

  /* Center two items on the last row when needed */
  .theme-day__topics li:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 1;
  }

  .theme-day__topics li:nth-last-child(2):nth-child(3n + 1) + li {
    grid-column: 2;
  }

  .theme-day__topics li:nth-child(3n) {
    border-right: none;
  }
}

.theme-day__topics li {
  margin: 0;
  padding: 0;
  border-right: 1px solid rgba(27, 55, 56, 0.08);
  border-bottom: 1px solid rgba(27, 55, 56, 0.08);
}

/* Alternating row tints — 3-column layout (965px+) */
@media (min-width: 965px) {
  .theme-day__topics li:nth-child(6n + 1) .theme-topic,
  .theme-day__topics li:nth-child(6n + 2) .theme-topic,
  .theme-day__topics li:nth-child(6n + 3) .theme-topic {
    background: rgba(219, 255, 195, 0.22);
  }

  .theme-day--alt .theme-day__topics li:nth-child(6n + 1) .theme-topic,
  .theme-day--alt .theme-day__topics li:nth-child(6n + 2) .theme-topic,
  .theme-day--alt .theme-day__topics li:nth-child(6n + 3) .theme-topic {
    background: rgba(238, 244, 241, 0.85);
  }
}

.theme-topic {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 100%;
  padding: 0.85rem 0.9rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
}

.theme-topic i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.05rem;
  font-size: 0.7rem;
  color: var(--color-white);
  background: linear-gradient(145deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(138, 184, 79, 0.45);
}

.theme-day--alt .theme-topic i {
  background: linear-gradient(145deg, var(--color-primary-light), var(--color-primary));
  box-shadow: 0 2px 6px rgba(27, 55, 56, 0.25);
}

.theme-day__topics li:hover .theme-topic {
  background: rgba(165, 208, 102, 0.38) !important;
  color: var(--color-primary);
}

.theme-day--alt .theme-day__topics li:hover .theme-topic {
  background: rgba(27, 55, 56, 0.1) !important;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .theme-topic {
    font-size: 0.875rem;
    padding: 0.95rem 1rem;
  }
}

@media (min-width: 992px) {
  .theme-day__head {
    padding: 2.25rem 2rem 1.65rem 2.25rem;
  }

  .theme-day__body {
    padding: 0 2rem 0 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-day__scroll-icon {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .theme-day__head {
    padding-right: 1.5rem;
  }
}

.btn.btn-primary {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.6rem 1.8rem;
  border-radius: 0;

  border: 1px solid var(--color-gold) !important;
  background-color: var(--color-bg) !important;
  background-image: none !important;
  color: #1B3738 !important;

  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 3px var(--color-gold);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn.btn-primary:hover {
  background-color: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: #000 !important;
}
/* testimonials Section */
/* Testimonial */

.testimonials {
  padding: 2rem 0 2rem 0;
  background: #1B3738;
}

#testimonials h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.1vw, 3.7rem);
  padding: 3rem 0 2rem 0;
  /*font-size: 40px;*/
  /*font-weight: 700;*/
}

.accordions-wrap {
  flex-direction: row;
  margin: calc(-7px / 2);
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  position: relative;
  height: 450px;
  overflow: hidden;
  z-index: 1;
}

.accordions-box {
  margin: calc(7px / 2);
  position: relative;
  transition: flex-grow 0.5s ease;
  flex-grow: 2;
}

.accordions-box:before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  border-radius: 60px;
  z-index: 1;
  content: "";
}

.accordions-box .boxes-image {
  max-width: 100%;
  border: none;
  border-radius: 60px;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100% !important;
  transition: opacity 300ms ease;
}

.accordions-box .accordions-content {
  justify-content: flex-end;
  position: absolute;
  align-items: start;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  border-radius: 60px;
  opacity: 0;
  z-index: 2;
  background-color: rgb(0 0 0 / 0.5);
  transition: opacity 300ms ease;
}

.accordions-title {
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  align-self: stretch;
  color: #fff;
}

.accordions-description {
  color: #fff;
}

.accordions-btns {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.7em;
  letter-spacing: 1.2px;
  align-self: flex-start;
  padding: 7px 15px 7px 15px;
  color: #fff;
  background-color: #49262d;
  border-radius: 0 0 0 0;
  display: inline-block;
  fill: #fff;
  text-align: center;
  transition: all 0.3s;
}

.accordions-wrap:hover .accordions-box {
  flex-grow: 1;
}

.accordions-wrap .accordions-box:hover,
.accordions-wrap .accordions-box.active {
  flex-grow: 4;
  z-index: 3;
}

.accordions-box:hover .accordions-content,
.accordions-box.active .accordions-content {
  opacity: 1;
}

.boxes-image {
  transition: transform 0.5s ease;
}

.accordions-box:hover .boxes-image {
  transform: scale(1);
}

@media (min-width: 768px) {
  .theme-topic {
    font-size: 0.975rem;
    padding: 0.95rem 1rem;
  }
}

/*  Speakers*/
#speakers {
  padding: 2rem 0
}

.speaker-heading {
  padding: 12px 0 20px 0
}

.speaker-heading h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1b3738
}

.speaker-heading h3 {
  font-size: 26px
}

#speakerSlider {
  display: none
}

.speakers-wrap .speaker-img {
  background-color: #9ec761a6
}

.speakers .speaker-social {
  position: absolute;
  z-index: 9;
  top: 91%;
  left: 43%;
  background: #007ab7;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 1s ease-out
}

.speakers:hover .speaker-social {
  opacity: 1;
  animation: icons 1.5s linear infinite
}

.speakers .img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  transition: all 1s ease-out
}

.speakers .speaker-social a {
  color: #fff;
  font-size: 25px
}

.speaker-info {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  color: #000
}

.speaker-info p {
  margin-bottom: .5rem
}
/* Tickets */
#tickets {
  padding: 2rem 0
}
.ticket-section {
  background: linear-gradient(135deg, #a5d066 0%, #b8e079 100%);
  padding: 50px 0
}

.ticket-heading {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInDown 0.8s ease-out
}

.ticket-heading h2 {
  color: #1b3738;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgb(0 0 0 / .2)
}

.discount-badge {
  background: #8ab84f;
  color: #1b3738;
  padding: 15px 40px;
  border-radius: 50px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgb(165 208 102 / .4)
}

.discount-badge i {
  margin: 0 5px
}

.content-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgb(0 0 0 / .15);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease-out
}

.content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgb(0 0 0 / .2)
}

.benefit-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px
}

.benefit-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #1b3738 0%, #a5d066 100%);
  border-radius: 2px
}

.benefit-item {
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease
}

.benefit-item:last-child {
  border-bottom: none
}

.benefit-item:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgb(165 208 102 / .08) 0%, transparent 100%)
}

.benefit-item i {
  color: #a5d066;
  font-size: 1.3rem;
  margin-right: 10px;
  width: 25px
}

.benefit-text {
  color: #000;
  font-size: 1.3rem;
  font-weight: 500
}

.action-card {
  background: linear-gradient(135deg, #1b3738 0%, #2a4f51 100%);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 60px rgb(27 55 56 / .4);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.action-card:hover {
  transform: translateY(-10px)
}

.action-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.action-btn {
  position: relative;
  z-index: 1;
  background: #a5d066;
  color: #1b3738;
  border: 1px solid #a5d066;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgb(165 208 102 / .3)
}

.action-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgb(165 208 102 / .5);
  background: #b8e079
}

/* Sponsor Logos */
.sponsor {
  padding: 2rem 0;
  border-radius: 0 0 40px 40px
}

#sponsors h2,
#sponsors h3 {
  color: #1b3738
}

#sponsors .supporters-wrap {
  margin-bottom: 10px
}

.supporter {
  padding: 10px 8px
}

.supporter-logo {
  cursor: pointer;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgb(0 0 0 / .05);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 120px
}

.supporter img {
  transition: all 0.4s ease-in-out;
  max-width: 100%;
  height: auto
}
/* Contact Us */
#enquiries {
    background: #8FB85A;
}
#enquiries h2 {
    color: #000;
    font-size: clamp(1.9rem, 3.1vw, 3.7rem);
}
.contact-card {
    background: #151922;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgb(0 0 0 / .12);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #a5d066 0%, #1b3738 100%);
}
.contact-category {
    color: #000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    padding: 10px 14px;
    background: rgb(143 184 90 / 1);
    border-radius: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    max-width: fit-content;
}
.contact-title {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}
.contact-subtitle {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: .3px;
}
.contact-card .divider {
    width: 50px;
    height: 3px;
    background: #a5d066;
    margin-bottom: 15px;
    border-radius: 2px;
}
.contact-detail {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.contact-detail:last-child {
    margin-bottom: 0;
}
.detail-value {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.detail-value a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgb(27 55 56 / .18);
}
.detail-value a:hover {
    color: #a5d066;
}
body {
    overflow-x: hidden;
}
#sponsors-logo img {
    width: 200px !important;
}
.sponsor-strip {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
    margin-bottom: 15px;
}
.left {
    animation: scroll-left 70s linear infinite;
}
.right {
    animation: scroll-right 95s linear infinite;
}
@keyframes scroll-left{
  0% {
      transform: translateX(10%);
  }
  100% {
      transform: translateX(-90%);
  }
}
@keyframes scroll-right {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(0%);
  }
}
/* Footer */
.footer-bg {
  background-color: #1b3738
}

.footer-bottom {
  background-color: #a5d066;
  color: #fff
}

.tanago-logo {
  color: #28a745;
  font-weight: 700;
  font-size: 1.5rem
}

.footer-section h3 {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem
}

.footer-links {
  list-style: none;
  padding: 0
}

.footer-links li {
  margin-bottom: .5rem
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  font-size: 20px;
  width: max-content;
  align-items: center;
  transition: all 0.5s cubic-bezier(.645, .045, .355, 1)
}

.footer-links a:hover {
  color: #a5d066
}

.footer-links .fa-circle {
  color: #fff;
  font-size: .5rem;
  margin-right: .75rem
}

.footer-widget-social {
  gap: 5px;
  margin: 18px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: none;
  padding-top: 0;
  text-align: center;
  width: 73%
}

.footer-widget-social a {
  height: auto;
  width: 43px;
  line-height: 46px;
  border-radius: 50%;
  font-size: 22px;
  color: #a5d066;
  transition: all 1s ease-out
}

.social-icons a {
  background-color: #28a745;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  text-decoration: none
}

.social-icons a:hover {
  background-color: #a5d066;
  color: #fff
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem
}

.contact-icon {
  background-color: #fff;
  color: #1b3738;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0
}

.contact-content h6 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .25rem
}

.contact-content .contact-value a {
  color: #fff;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(.645, .045, .355, 1)
}

.contact-content .contact-value a:hover {
  color: #a5d066
}

.footer-bottom a {
  color: #1b3738;
  text-decoration: none
}

.footer-bottom a:hover {
  color: #fff
}

.footer-bottom .fa-circle {
  color: #1b3738;
  font-size: .5rem;
  margin: 0 .5rem
}

.footer-bg .our-moto {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0
}

.footer .footer-widget-social a:hover {
  transform: scale(1.3)
}


/*Gallery */
.section-gallery-collage {
  background: var(--color-bg);
  padding-top: var(--space-section-y);
  padding-bottom: calc(var(--space-section-y) + 0.5rem);
}
.section-gallery-collage .section-title {
    color: #1b3738;
    -webkit-text-fill-color: #1b3738;
}
.gallery-intro {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}
.gallery-collage-wrap {
  position: relative;
  margin: 2.5rem auto 0;
  min-height: 320px;
}
.gallery-card {
  position: absolute;
  border-radius: 26px;
  isolation: isolate;
  background-image: var(--gallery-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
/*.gallery-card::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));*/
/*  z-index: 2;*/
/*  pointer-events: none;*/
/*}*/
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--gallery-next, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.gallery-card.is-fading::after {
  opacity: 1;
}
.gallery-card-lg {
  inset: 0;
  left: 20%;
  max-width: 520px;
  height: 100%;
}
.gallery-card-md {
  width: 360px;
  height: 260px;
  right: 0;
  top: 10%;
}
.gallery-card-sm {
  width: 280px;
  height: 200px;
  right: 20%;
  bottom: -5%;
  transform: translateX(-50%);
}

.gallery-card-xs {
  width: 280px;
  height: 200px;
  left: 2%;
  top: 14%;
  transform: rotate(-5deg);
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   Community — attendee mix bar chart
   -------------------------------------------------------------------------- */

.section-community {
  position: relative;
  overflow-x: clip;
  overflow-y: hidden;
  background: linear-gradient(
    165deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 42%,
    var(--color-primary-light) 100%
  );
}

.section-community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 90% 10%,
    rgba(165, 208, 102, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.section-community .container {
  position: relative;
  z-index: 1;
}

.community-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.community-head .section-label--pill {
  color: var(--color-highlight);
  background: rgba(165, 208, 102, 0.15);
  border-color: rgba(165, 208, 102, 0.35);
}

.community-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.25vw, 2.875rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.community-head__intro {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(219, 255, 195, 0.92);
}

.community-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .community-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: stretch;
  }
}

.community-globe {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  width: 100%;
}

.community-globe__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.community-globe__pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.55rem 1.35rem;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 20px rgba(165, 208, 102, 0.12);
}

.community-globe__pct {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}

.community-globe__region {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
}

.community-globe__map {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.community-globe__map img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.community-chart {
  margin: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.community-chart__frame {
  --community-chart-max: 70;
  --community-chart-label-h: 2.75rem;
  --community-chart-label-gap: 0;
  --community-chart-label-block: calc(var(--community-chart-label-h) + 0.5rem);
  position: relative;
  flex: 1;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.35rem;
  align-items: stretch;
  padding-block: clamp(1rem, 2vw, 1.35rem);
  padding-inline: 0;
  background: rgba(12, 22, 24, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.community-chart__plot {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: clamp(220px, 38vw, 320px);
}

.community-chart__y-axis {
  position: relative;
  align-self: stretch;
  min-width: 2.25rem;
  min-height: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.community-chart__y-axis li {
  position: absolute;
  right: 0;
  bottom: calc(
    var(--community-chart-label-block) + (var(--tick) / var(--community-chart-max)) *
      (100% - var(--community-chart-label-block))
  );
  transform: translateY(50%);
  text-align: right;
}

.community-chart__area {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: clamp(200px, 32vw, 268px);
  overflow: hidden;
}

.community-chart__grid {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.07) 0,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px,
    transparent 25%
  );
  pointer-events: none;
}

.community-chart__bars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.35rem, 1.2vw, 1.25rem);
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.community-bar {
  --bar-target-height: calc(var(--bar-value) / var(--community-chart-max) * 100%);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  justify-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.community-bar__track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: min(5.5rem, 100%);
  min-width: 0;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}

.community-bar__fill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 0;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  border-radius: 0.2rem 0.2rem 0 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition:
    height 1s cubic-bezier(0.22, 1, 0.36, 1),
    width 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height, width;
}

.community-bar__fill.is-grown {
  height: var(--bar-target-height);
}

.community-bar--chains .community-bar__fill {
  background: linear-gradient(180deg, #6b7d52 0%, #4f5f3d 100%);
}

.community-bar--midsize .community-bar__fill {
  background: linear-gradient(180deg, #3f7a68 0%, #2d5c4e 100%);
}

.community-bar--providers .community-bar__fill {
  background: linear-gradient(180deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  box-shadow: 0 4px 18px rgba(165, 208, 102, 0.35);
}

.community-bar--academics .community-bar__fill {
  background: linear-gradient(180deg, #4f5d6b 0%, #323f4c 100%);
}

.community-bar__value {
  max-width: 100%;
  font-size: clamp(0.6875rem, 1.5vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.45s ease 0.55s;
}

.community-bar__fill.is-grown .community-bar__value {
  opacity: 1;
}

.community-bar__label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: var(--community-chart-label-h);
  margin-top: 0.5rem;
  padding-inline: 0.1rem;
  font-size: clamp(0.6875rem, 1.35vw, 0.875rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  color: rgba(255, 255, 255, 0.92);
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  .community-bar__fill {
    transition: none;
    height: var(--bar-target-height);
  }

  .community-bar__fill.is-grown {
    height: var(--bar-target-height);
  }

  .community-bar__value {
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .community-globe__stats {
    margin-bottom: 1rem;
  }

  .community-globe__map {
    max-width: min(100%, 360px);
  }
}

/* Tablet: keep 4 vertical bars, tighter layout */
@media (max-width: 991.98px) {
  .community-chart__frame {
    padding-block: 1.15rem 1.25rem;
    padding-inline: 0;
  }

  .community-chart__plot {
    min-height: 240px;
  }

  .community-chart__area {
    min-height: 220px;
  }

  .community-bar__label {
    font-size: 0.6875rem;
    line-height: 1.2;
    min-height: 2.65rem;
  }

  .community-bar__value {
    font-size: 0.75rem;
  }
  
  .community-globe__map img {
    height: 220px;
    object-fit: cover;  
  }
}

.btn-closed {
    font-size: 26px;
    background-color: #fff0;
    border: none;
}
.modal-body p {
    text-align: justify;
    color: #000;
}
/* Below tablet width: horizontal bars (avoids cramped 4-column layout) */
@media (max-width: 767.98px) {
  .community-chart__frame {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 1.15rem;
    padding-inline: clamp(1rem, 4.5vw, 1.35rem);
  }

  .community-chart__y-axis {
    display: none;
  }

  .community-chart__plot {
    min-height: 0;
  }

  .community-chart__area {
    min-height: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .community-chart__grid {
    display: none;
  }

  .community-chart__bars {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    height: auto;
    min-height: 0;
  }

  .community-bar {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    height: auto;
    min-height: 0;
    align-items: stretch;
  }

  .community-bar__label {
    order: -1;
    justify-content: flex-start;
    min-height: 0;
    margin-top: 0;
    font-size: 0.8125rem;
    line-height: 1.3;
    text-align: left;
  }

  .community-bar__track {
    max-width: none;
    height: 2.35rem;
    min-height: 2.35rem;
    justify-content: flex-start;
    align-items: stretch;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.06);
  }

  .community-bar__fill {
    height: 100% !important;
    width: 0;
    min-height: 100%;
    margin-inline-end: auto;
    justify-content: flex-start;
    border-radius: 0.35rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .community-bar__fill.is-grown {
    width: var(--bar-target-height);
    height: 100%;
  }

  .community-bar__value {
    padding-inline: 0.5rem;
    font-size: 0.8125rem;
  }

  .community-bar--providers .community-bar__fill {
    box-shadow: 0 2px 12px rgba(165, 208, 102, 0.35);
  }

  .community-bar--academics .community-bar__fill.is-grown,
  .community-bar--providers .community-bar__fill.is-grown {
    min-width: 2.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  @media (max-width: 767.98px) {
    .community-bar__fill {
      width: var(--bar-target-height);
      height: 100%;
    }
  }
}

/* Slightly different scroll-in for community GIF */
/*.section-community {*/
/*    background: #101218;*/
/*    padding-top: 3.25rem !important;*/
/*    padding-bottom: 3.25rem !important;*/
/*}*/
/*.section-label {*/
/*    font-size: 1rem;*/
/*    color: #a5d066;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.25em;*/
/*    margin-bottom: 0.4rem;*/
/*}*/
/*.community-summary {*/
/*    font-size: 1.1rem;*/
/*    color: rgba(255, 255, 255, 0.7);*/
/*}*/
/*.community-breakdown {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 1rem;*/
/*    flex-wrap: wrap;*/
/*    text-align: center;*/
/*}*/
/*.community-pill {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 10px;*/
/*    padding: 0.5rem 1.2rem;*/
/*    border-radius: 999px;*/
/*    border: 1px solid #a5d066;*/
/*    background: radial-gradient(circle at top, rgba(165, 208, 102, 0.14), rgba(10, 10, 10, 0.92));*/
/*    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);*/
/*}*/
/*.community-pill-value {*/
/*    font-size: 1.6rem;*/
/*    font-weight: 700;*/
/*    letter-spacing: 0.08em;*/
/*    color: #a5d066;*/
/*}*/
/*.community-pill-label {*/
/*    margin-top: 0.1rem;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.16em;*/
/*    font-size: 0.9rem;*/
/*    color: rgba(255, 255, 255, 0.7);*/
/*}*/
/*.community-gif.animate-on-scroll {*/
/*  opacity: 0;*/
/*  transform: scale(0.9) translateY(24px);*/
/*  transition: opacity 0.4s ease, transform 0.4s ease;*/
/*}*/
/*.community-gif.animate-on-scroll.visible {*/
/*  opacity: 1;*/
/*  transform: scale(1) translateY(0);*/
/*}*/

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .gallery-collage-wrap {
    max-width: 100%;
    min-height: 0;
    display: flex;
    gap: 1.3rem;
  }
  .gallery-card,
  .gallery-card-lg,
  .gallery-card-md,
  .gallery-card-sm,
  .gallery-card-xs {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    transform: none;
  }
}
@media (max-width: 767.98px) {
    .gallery-card, .gallery-card-lg, .gallery-card-md,
    .gallery-card-sm, .gallery-card-xs{
        height: 350px;
    }
  .gallery-collage-wrap{flex-direction: column;}
  .themes-scroll-track {
    height: max-content;
    min-height: max-content;
  }
  .themes-scroll-sticky {
      height: 100%;
  }
  #themes {
      overflow: hidden;
  }
}

@media (min-width: 992px) {
  .themes-scroll-track {
    height: 280vh;
  }

  .theme-day__head {
    padding: 2.25rem 2rem 1.65rem 2.25rem;
  }

  .theme-day__body {
    padding: 0 2rem 0 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .theme-day__head {
    padding-right: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .themes-scroll-hint__icon {
    animation: none;
  }

  .theme-day--slide {
    will-change: auto;
  }
}

/* --------------------------------------------------------------------------
   Utilities & responsive
   -------------------------------------------------------------------------- */

.text-muted {
  color: var(--color-text-muted) !important;
}
@media (max-width: 1399px){
    .header-logo{width:175px}
}
@media (max-width:1199px){
    .header-logo{width:161px}
}
@media (max-width:1074px){.header-logo{width:140px}}

@media (max-width: 991.98px) {
  .header-logo{width:200px}
  .navbar-collapse {
    padding-block: 1rem;
    background: #000000;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    padding-inline: 1rem;
  }

  .nav-item .btn-gold {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .hero-glow,
  .hero-grid {
    display: none;
  }

  .about-stage__stats li:last-child {
    background-color: var(--color-accent);
  }

  .about-stage__stats li:last-child .about-stage__value {
    color: var(--color-primary);
  }

  .about-stage__stats li:last-child .about-stage__label {
    color: rgba(27, 55, 56, 0.75);
  }

  .hero-scroll-ring {
    display: none;
  }

  .hero-panel-accent,
  .hero-panel-accent::before,
  .hero-panel-accent::after {
    animation: none;
  }

  .hero-scroll i {
    animation: none;
  }

  .hero {
    background-image: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
  }
}
