:root {
  --green-1: #1c6a35;
  /* darkest */
  --green-2: #2f8539;
  --green-3: #78aa33;
  --green-4: #a3c43a;
  /* lightest */

  --bg-dark: #04140a;
  --bg-light: #F8FCF9;
  --text-main: #041409;
  --text-light: #f9fff9;
  --accent-soft: rgba(255, 255, 255, 0.08);
  --radius-lg: 24px;
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.28);
  --transition-fast: 200ms ease-out;
  --transition-med: 320ms cubic-bezier(0.19, 1, 0.22, 1);
  --max-width: 1120px;
  --nav-height: 72px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.exo-flm {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
}

.oswald-flm {
  font-optical-sizing: auto;
  font-size: 18px;
}

/* Global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: clip;
  background-color: var(--bg-light);
}

.green-1 {
  color: var(--green-1);
}

ul {
  list-style: none;
}

.txt-primary {
  font-family: "Oswald", sans-serif;
  font-weight: bolder;
  font-size: 36px;
  font-weight: 800;
  line-height: 35px;

}

.fw-800 {
  font-weight: 800;
}

body {
  font-family: "Exo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #0f311a, #020904);
  overflow-x: clip;
}

.fs-14 {
  font-size: 16px;
}

main {
  background-color: #fff;

}

/* Hero & nav */

.hero {
  position: relative;

  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  align-items: center;

}

.event-details .hero-inner {
  max-width: 2000px !important;
  margin: auto;
}

.hero-logo {
  display: flex;
  flex-direction: row;
  padding-bottom: 1rem;
  width: 100%;
  justify-content: center;
}

.hero-logo img {
  width: 40%;
  margin-top: 40px;
}


.hero-bg {
  position: absolute;
  inset: 0%;
  width: 49%;
  height: 100%;
  left: 0%;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: auto;
  vertical-align: middle;

}

.hero-folds {
  position: absolute;
  height: 100%;
  width: 70%;
  inset: 0%;
  left: 38%;
  display: grid;
  transform-origin: center bottom;
  filter: drop-shadow(0 40px 120px rgba(0, 0, 0, 0.55));
  z-index: -3;
}

.mco-txt {
  font-size: 16px;
  font-weight: 800;
  color: #0f4c2b;
}

.fold {
  transform-origin: center bottom;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.fold {
  position: relative;
}

.fold-media {
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  inset: 0;
  /* fill the whole big green box */
  border-radius: 0;
  /* no inner small box */
  overflow: hidden;
  box-shadow: none;
  /* remove inner shadow, use panel shadow instead */
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: foldMediaIn 1s ease-out forwards;
  z-index: 0;
  /* base layer */
}

.fold-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  /* overlay above video, below cards/text */
}

/* Panel-specific green tints over the video */
.fold-1 .fold-media::after {
  background: linear-gradient(135deg,
      rgba(28, 106, 53, 0.5),
      /* var(--green-1) */
      rgba(20, 70, 38, 0.5));
}



.fold-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  opacity: 0.75;
  position: relative;
  z-index: 0;
  /* behind overlay */
}

.fold-overlay-card {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, #EC2024 0%, #147C3A 100%);
      mix-blend-mode: multiply;
}

.fold-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  /* ...your existing styles... */
  z-index: 2;
  /* ABOVE green overlay */
}

.fold-overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.1);
  transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.fold-overlay-card:hover img {
  transform: scale(1.12) translateY(-4px);
  filter: saturate(1.25);
}




.fold-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.1);
  transition: transform 800ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.fold-media:hover img {
  transform: scale(1.18) translateY(-6px);
  filter: saturate(1.28);
}

/* small stagger so each panel animates at a slightly different time */
.fold-media-1 {
  animation-delay: 0.15s;
}

.fold-media-2 {
  animation-delay: 0.30s;
}

.fold-media-3 {
  animation-delay: 0.45s;
}

.fold-media-4 {
  animation-delay: 0.60s;
}

@keyframes foldMediaIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* On very small screens we hide these to keep things clean */
@media (max-width: 720px) {
  .fold-media {
    display: none;
  }
}

.fold-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(4, 20, 8, 0.78);
  color: #f6fff4;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  transform: translateY(12px);
  opacity: 0;
  animation-delay: 0.2s;
}

.fold-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--text-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.fold-1 {
  background: linear-gradient(135deg, var(--green-1), #184b2a);
  transform: perspective(900px) rotateY(12deg);
}

.fold-2 {
  background: linear-gradient(135deg, var(--green-2), var(--green-1));
  transform: perspective(900px) rotateY(4deg);
}

.fold-3 {
  background: linear-gradient(135deg, var(--green-3), var(--green-2));
  transform: perspective(900px) rotateY(-4deg);
}

.fold-4 {
  background: linear-gradient(135deg, var(--green-4), var(--green-3));
  transform: perspective(900px) rotateY(-12deg);
}


nav.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 32px);
  max-width: var(--max-width);
  margin: 0 auto;
  backdrop-filter: blur(16px);
  background: linear-gradient(135deg,
      rgba(4, 24, 13, 0.95),
      rgba(4, 24, 13, 0.65));
  border-radius: 999px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}



.nav-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-logo span {
  color: var(--green-4);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: auto;
  padding: 0;
}

p.MsoNormal {
  color: #000;
}

h5.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
  color: #020804 !important;
}

a.nav-link,
a.nav-link:focus {
  color: #fff;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--text-light);
  overflow: hidden;
  padding: 6px 16px !important;
  transition:
    color 200ms ease-out,
    transform 200ms ease-out;
  text-decoration: none;
}

/* sliding pill background on hover */
.nav-links a::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(100%);
  /* start off to the right */
  transition: transform 220ms ease-out;
  z-index: -1;
}

.nav-links a:hover::before,
.nav-cta:hover::before {
  transform: translateX(0);
  /* slide in from right */
}

.nav-links a:hover {
  color: #000;
  transform: translateY(-1px);
}

/* active menu item – keep pill visible */
.nav-links .active a {
  color: #000;
  transform: translateY(-1px);
}

.nav-links .active a::before {
  transform: translateX(0);
  /* pill stays slid in */
}

.nav-links a:hover,
.nav-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #9BB531;
}

a.nav-cta {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 178, 51, 0.18);
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--text-light);
  overflow: hidden;
  padding: 6px 16px !important;
  transition: color 200ms ease-out, transform 200ms ease-out;
  text-decoration: none;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(3, 16, 8, 0.9);
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

ul.dropdown-menu.show {
  background: linear-gradient(135deg, rgba(4, 24, 13, 0.95), rgba(4, 24, 13, 0.65));
}

ul.dropdown-menu.show li a {
  width: 100%;
}

/* Hero content */

div.hero-inner {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 32rem;
  align-items: center;
}

.hero-content {
  background: transparent;
  /* padding: 32px 28px 0; */

}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(246, 255, 243, 0.85);
  margin: 0 0 10px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.event-welcome-txt {
  margin-top: 18px;
  justify-content: center;
  grid-template-columns: 1.1fr 2fr;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  background: #337B19;
  color: #fdfdfd;
  font-family: "Oswald", sans-serif;
  text-align: center;
  padding: 19px 0;
  margin: auto;
  width: 68%;
}

.hero-date-strip-left,
.hero-date-strip-right {
  padding: 6px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-date-strip-left {
  background: rgba(255, 0, 0, 0.822);
}

span.hero-date-strip-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 16px;
  opacity: 0.75;
}

span.hero-date-strip-value {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* small screens: stack the two halves */
@media (max-width: 720px) {
  .hero-date-strip {
    grid-template-columns: 1fr;
  }

  .hero-date-strip-left,
  .hero-date-strip-right {
    padding: 8px 16px;
  }

  .hero-date-strip-value {
    white-space: normal;
  }
}

.hero-subtitle {
  margin: 0 0 24px;
  color: rgba(241, 255, 241, 0.88);
  font-size: 15px;
}

.hero-ctas {
  display: flex;

  margin-bottom: 24px;
  justify-content: center;
}

a.btn {
  border-radius: 999px;
  padding: 11px 22px;
  border: 0;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    background var(--transition-med), color var(--transition-med);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  color: #fff;
  box-shadow: 0 16px 40px rgba(31, 97, 33, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(31, 97, 33, 0.72);
}


a.btn-ghost {
  justify-content: center;
  background: #960707;
  color: #f5fff5;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

a.btn-ghost:hover {
  background: rgba(230, 30, 23, 0.945);
  transform: translateY(-2px);
}

.btn-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #960707;
  color: #f5fff5;
  border: 1px solid rgba(255, 255, 255, 0.25);
}


a.btn-green {
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  background: #317F34;
  color: #f5fff5;
  border: 1px solid rgba(255, 255, 255, 0.979);
}

a.btn-green:hover {

  background: #01441d;
  transform: translateY(-2px);

}

a.btn-red {
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  background: #942123;
  color: #f5fff5;
  border: 1px solid rgba(255, 255, 255, 0.952);
  margin-left: 6px;
}

a.btn-red:hover, a.btn-red:focus {
  background: #8f191c;
  transform: translateY(-2px);
}

/* Special green CTA button used for CLICK HERE TO REGISTER */
.ETBtnG {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  color: #ffffff !important;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(31, 97, 33, 0.55);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    background var(--transition-med), color var(--transition-med);
}

.ETBtnG:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(31, 97, 33, 0.8);
  color: #041207 !important;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  font-size: 13px;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  opacity: 0.7;
}

.meta-value {
  display: block;
  margin-top: 2px;
}

/* Countdown */

.hero-countdown {
  background: transparent;
  padding: 0 22px 24px;
  border-radius: 28px;
}

.hero-countdown h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.hero-countdown h3 {
  font-size: 16px;
  font-weight: bold;
  color: #327D1B;
  text-align: center;

}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.time-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(243, 255, 240, 0.25);
}

.time-value {
  display: block;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
}

.time-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.countdown-note {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.85;
}

/* Scroll indicator */

.scroll-line {
  position: relative;
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  margin-left: 4px;
}




/* Sections */

.section {
  padding: 80px clamp(18px, 5vw, 32px);
}

.section-light {
  color: var(--text-main);
}

.section-dark {
  background: radial-gradient(circle at top, #16351f, #020804);
  color: var(--text-light);
}

/* Inner page hero / banner (used on agenda, highlights, etc.) */
.InnerBanner {
  position: relative;
  padding: 96px 16px 80px;
  color: #fff;
  overflow: hidden;
  margin-top: -87px;
}

.InnerBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(120, 170, 51, 0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.85), rgba(4, 12, 7, 0.98));
  mix-blend-mode: multiply;
}

/* flowing wave accent along the bottom of inner headers */
.InnerBanner::after {
  content: "";
  position: absolute;
  left: -28%;
  /* right: 0; */
  bottom: 0;
  width: 100%;
  height: 100%;
  background:
    /* deep base wave */
    radial-gradient(120% 180% at 10% 100%, rgba(4, 20, 8, 0.95), transparent 65%),
    /* mid green crest */
    radial-gradient(140% 220% at 40% 120%, rgba(120, 170, 51, 0.75), transparent 60%),
    /* lighter forward crest */
    radial-gradient(160% 260% at 80% 120%, rgba(163, 196, 58, 0.7), transparent 60%);
  background-size: 220% 100%, 260% 120%, 280% 140%;
  opacity: 0.95;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: headerWave 20s linear infinite;
  rotate: 45deg;
}

.InnerBanner .container,
.InnerBanner .row,
.InnerBanner .col-12 {
  position: relative;
  z-index: 1;
}

.InnerBanner h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

.InnerBanner p {
  margin: 0;
  font-size: 13px;
  opacity: 1;
  color: #fff;
}

.InnerBanner p::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-right: 8px;
  background: linear-gradient(90deg, red, orange, yellow);
  vertical-align: middle;
}

/* TBA text in inner banners (e.g., Speakers stay tuned) */
.inner-tba-text {
  max-width: 760px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

/* subtle animated glow behind the heading */
.InnerBanner .col-12::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(163, 196, 58, 0.16), transparent 60%),
    radial-gradient(circle at 60% 100%, rgba(1, 20, 9, 0.95), transparent 70%);
  opacity: 0.85;
  z-index: -1;
  filter: blur(10px);
  animation: innerGlow 14s ease-in-out infinite alternate;
}

@keyframes innerGlow {
  0% {
    transform: translate3d(-20px, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 10px, 0) scale(1.03);
  }

  100% {
    transform: translate3d(20px, -6px, 0) scale(1.02);
  }
}

@keyframes headerWave {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: -220% 0, -260% 0, -280% 0;
  }
}




#highlights {
  background: url(../images/Dubai.jpg) no-repeat center center / cover;
  position: relative;
  color: #ffffff;
  background-color: #ffffff;
}

#highlights .left {
  background-color: #921A1D;
  display: flex;
  flex-direction: column;
  justify-content: center;



}

#highlights .right {
  background-color: #337B19;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;


}

#highlights .right h2,
#highlights .left h2 {
  font-size: 36px;
}

#highlights .yrdy {
  max-width: 680px;
  margin: auto;
  padding: 15px 0;
  font-weight: 500;
    line-height: 28px;
}

.yrdy h2 {
  font-weight: 800;
}

.yrdytxt {
  color: #000000;

}

.yrdytxt-right {
  background-color: #921A1D;
  color: #ffffff;
  padding: 5rem 4rem 5rem 4rem;
  text-decoration: underline;
  border-radius: 30px;
  display: flex;
  font-size: 13px;
  text-underline-offset: 5px;
  width: 96%;
}
.what-to-expect-objectives.oswald-flm h3 {
    font-size: 20px;
    margin-top: 16px;
}
.gradient-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  background-image: linear-gradient(90deg, #c81b33, #d2a43a);
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: left bottom;
  margin-top: 10px;
}

.wshlodatnd h2 {
  font-weight: 800;
  color: #921A1D;

}

.whyattnd-container {
  padding-top: 30vh;
}

.whyattnd {
  background-color: #921A1D;
  color: #ffffff;
  padding: 2rem 2rem 2rem 2rem;
  border-radius: 19px;
  width: 40%;
  position: absolute;
  z-index: 3;
  top: -49%;
  display: flex;
  flex-direction: column;
  left: -12%;
}



.section-accent {
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  color: #041207;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 9;
  position: relative;
}

.section-header {
  margin-bottom: 28px;
}

.section-header {
  text-align: left;
  margin-bottom: 36px;
}

.section-header-welcome {
  position: relative;
  padding-top: 32px;
  width: 64%;
  display: flex;
  justify-content: center;
  margin: auto;
}



.section-header-welcome h2 {
  color: #ffffff;
  font-weight: 800 !important;
}



.section-header-welcome .section-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #4b6652;
}



h1,
h2,
h3,
h4,
h5,
h6,
.section h2,
.nav-logo,
.hero-date-strip,
.hero-date-strip-label,
.hero-date-strip-value {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
}

.section-subtitle {
  margin-top: 10px;
  opacity: 0.85;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 18px;
  opacity: 0.7;
  font-weight: 700;
}

/* Layout helpers */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: flex-start;
}

.pill-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 12px;
}


#about .section-inner {
  max-width: 1118px;
}

.about-welcome {
  align-items: flex-start;
  gap: 32px;
}

.about-welcome p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

/* Speaker / member cards - circular headshot over curved green panel */
.MemberData .team-card {
  position: relative;
  border: 0;
  border-radius: 32px 32px 80px 32px;
  /* mimic reference: one stronger bottom curve */
  background: linear-gradient(135deg, #428F35, #81AA33);
  overflow: visible;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  padding-top: 72px;
  /* space for overlapping avatar */
  transition: transform 260ms ease-out, box-shadow 260ms ease-out, background 260ms ease-out;
}

.MemberData .team-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70px;
  border-radius: 0 0 80px 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 20, 8, 0.85), transparent 70%),
    radial-gradient(120% 180% at 50% 140%, rgba(120, 170, 51, 0.45), transparent 72%);
  opacity: 0.95;
  pointer-events: none;
  animation: memberCardGlow 10s ease-in-out infinite alternate;
}

.MemberData .team-card .card-img-top {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  background: #fff;
}

.MemberData .team-card .card-body {
  padding: 30px 20px 30px;
  background: linear-gradient(180deg, rgba(7, 32, 18, 0.98) 0%, rgba(4, 20, 11, 0.98) 45%, rgba(2, 10, 6, 0.98) 100%);
  border-radius: 32px 32px 80px 32px;
  color: #f5f7ff;
}

.MemberData .team-card .card-title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

.MemberData .team-card .card-text {
  font-size: 13px;
  color: rgba(226, 235, 255, 0.86) !important;
}

.MemberData .team-card .Position,
.MemberData .team-card .Position strong {
  font-size: 16px;
  color: #9BB531;
}

section.MemberData {
  margin: 80px 0;
}

.MemberData .team-card .btn.btn-success {
  margin-top: 10px;
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  color: #fff;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px !important;
  border-radius: 999px;
  z-index: 9;
  position: relative;
  font-weight: 500;
}

.MemberData .team-card .btn.btn-success:hover {
  background: linear-gradient(135deg, var(--green-2), var(--green-3));
  color: #ffffff;
}

.MemberData .justify-content-center {
  --bs-gutter-y: 6rem;
}

/* ================= Agenda Day Tabs (Agenda Page) ================= */
.agenda-day-tabs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  margin: 0 auto -18px;
  /* pull tabs down to overlap card */
  border-radius: 999px;
  border-bottom: 0 !important;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), rgba(2, 14, 7, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  width: fit-content;
  white-space: nowrap;
  /* keep tabs on one line */
  overflow: hidden;
  /* hide any sliding pill overflow */
}

/* Glass card that holds agenda images/text under the tabs */
.agenda-container {
  position: relative;
  max-width: 1120px;
  margin: 26px auto 40px;
  /* space for overlapping tabs */
  padding: 15px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(230, 240, 236, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(210, 230, 220, 0.9);
  overflow: hidden;
}

/* Left gradient panel effect for agenda images */
.agenda-container .d-flex {
  border-radius: 26px 80px 26px 26px;
  /* asymmetric like reference */
  background: radial-gradient(circle at 0% 0%, rgba(6, 42, 36, 0.95), rgba(14, 73, 61, 0.85)),
    radial-gradient(circle at 100% 100%, rgba(224, 96, 64, 0.95), rgba(150, 40, 30, 0.9));
  padding: 22px;
}

.agenda-img {
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  width: 100%;
}

.agenda-day-tabs .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0 !important;
  margin: 0;
  color: rgba(245, 255, 245, 0.82);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 26px;
  background: transparent;
  transition:
    background 220ms ease-out,
    color 220ms ease-out,
    box-shadow 220ms ease-out,
    transform 180ms ease-out;
}

/* sliding pill background on hover/active (match main nav) */
.agenda-day-tabs .nav-link::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 220ms ease-out;
  z-index: -1;
}

.agenda-day-tabs .nav-link:hover {
  color: #000000;
  transform: translateY(-1px);
}

.agenda-day-tabs .nav-link:hover::before {
  transform: translateX(0);
}

.agenda-day-tabs .nav-link.active {
  color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border: 0 !important;
}

.agenda-day-tabs .nav-link.active::before {
  transform: translateX(0);
}

.agenda-day-tabs .badge {
  font-size: 11px;
  border-radius: 999px;
  background: rgba(4, 20, 8, 0.75);
}


.MemberData .team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
  background: linear-gradient(135deg, #2F7832, #9BB531);
}

@keyframes memberCardGlow {
  0% {
    transform: translateY(0);
    opacity: 0.85;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

@media (max-width: 767.98px) {
  .MemberData .team-card {
    margin-top: 40px;
  }
}

/* THEME & OBJECTIVES section */

.what-to-expect-layout {
  align-items: flex-start;
  gap: 40px;
}

.what-to-expect-theme h3,
.what-to-expect-objectives h3 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 8px;
}

.what-to-expect-theme p {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: #37493d;
}

/* HIGHLIGHTS section background effects */
/* HIGHLIGHTS section background effects */
#highlights.section-dark {
  position: relative;
  overflow: hidden;
  background: url(../images/Highlights-bg.jpg) no-repeat center center / cover;
  animation: highlightsBgMove 30s ease-in-out infinite alternate;
}

@keyframes highlightsBgMove {
  0% {
    background-position: center top;
  }

  50% {
    background-position: center center;
  }

  100% {
    background-position: center bottom;
  }
}

#highlights .section-header.center {
  opacity: 0;
  transform: translateY(-18px);
  animation: highlightsTitleIn 700ms ease-out forwards;
  animation-delay: 0.15s;
}

#highlights .section-inner {
  max-width: 1300px;
}

@keyframes highlightsTitleIn {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* dark green overlay so text/cards stay readable on top of the image */
#highlights.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(16, 65, 38, 0.82), rgba(2, 8, 4, 0.96));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* soft animated spotlight over the image */
#highlights.section-dark::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 10%, rgba(120, 170, 51, 0.35), transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(31, 97, 33, 0.28), transparent 65%),
    radial-gradient(circle at 90% 50%, rgba(163, 196, 58, 0.25), transparent 65%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  animation: highlightsGlow 10s ease-in-out infinite alternate;
}

/* bring inner content above overlays */
#highlights .section-inner {
  position: relative;
  z-index: 1;
}

@keyframes highlightsGlow {
  0% {
    transform: translate3d(-60px, 0, 0) scale(1.05);
  }

  50% {
    transform: translate3d(0, 20px, 0) scale(1.1);
  }

  100% {
    transform: translate3d(60px, -10px, 0) scale(1.05);
  }
}

/* soft spotlight behind the cards */
/* soft spotlight behind the cards */
/* soft spotlight behind the cards */
#highlights.section-dark::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  animation: highlightsGlow 10s ease-in-out infinite alternate;
}

@keyframes highlightsGlow {
  0% {
    transform: translate3d(-60px, 0, 0) scale(1.05);
  }

  50% {
    transform: translate3d(0, 20px, 0) scale(1.1);
  }

  100% {
    transform: translate3d(60px, -10px, 0) scale(1.05);
  }
}

/* subtle vignette at edges */
#highlights.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 0;
}

/* bring inner content above the effects */
#highlights .section-inner {
  position: relative;
  z-index: 1;
}

/* objectives list styled as neat highlighted bullets */
/* OBJECTIVES as attractive cards */

.what-to-expect-objectives {
  max-width: 100%;
  margin-left: 0;
}

.what-to-expect-objectives h3 {
  margin-bottom: 14px;
}

.what-to-expect-objectives ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* left & right columns */
  gap: 12px 18px;
  /* row / column gap */
}

.what-to-expect-objectives li {
  position: relative;
  margin-bottom: 10px;
  padding: 40px 16px 40px 46px;
  border-radius: 14px;
  border: 1px solid rgba(31, 86, 40, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out,
    background 220ms ease-out;
}


/* hover lift */
.what-to-expect-objectives li:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(31, 86, 40, 0.45);
}

/* mobile: stack nicely */
@media (max-width: 720px) {
  .what-to-expect-layout {
    grid-template-columns: 1fr;
  }

  .what-to-expect-objectives {
    margin-left: 0;
  }

  .what-to-expect-objectives ul {
    grid-template-columns: 1fr;
    /* stack cards on small screens */
  }
}

.about-chairs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chair-card {
  display: flex;
  align-items: center;
  gap: 16px;
  /* was 12px */
  padding: 14px;
  /* was 12px */
}

.chair-photo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  border: double 4px green;
}

.chair-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chair-info h3 {
  margin: 0 0 4px;
  font-size: 36px;
}

.chair-title {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 500;
  color: #020904;
}

.chair-affiliation {
  margin: 0;
  font-size: 12px;
  color: #020904;
}

/* Stack nicely on mobile */
@media (max-width: 720px) {
  .about-welcome {
    grid-template-columns: 1fr;
  }

  .about-chairs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .chair-card {
    flex: 1 1 220px;
  }
}

.target-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1050px;
  margin: 0 auto;
}

.audience-card {
  position: relative;
  display: flex;
  /* align dot + text in a row */
  align-items: center;
  /* vertical centering */
  padding: 12px 18px;
  border-radius: 20px;
  background: radial-gradient(circle at top left,
      rgba(120, 170, 51, 0.25),
      rgba(0, 0, 0, 0.7));
  border: 1px solid rgba(163, 196, 58, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  /* remove heavy blur to avoid soft text */
  backdrop-filter: none;
  transform: translateY(0);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 60%);
  pointer-events: none;
}

.audience-card h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  padding-left: 18px;
  /* space for the dot */
}

.audience-card::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  box-shadow: 0 0 10px rgba(120, 170, 51, 0.8);
  transform: translate(-50%, -50%);
}

/* move text right to clear the dot */
.audience-card h3 {
  padding-left: 18px;
}

/* hover / tilt effect similar to previous cards */
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  border-color: rgba(163, 196, 58, 0.9);
}

/* Mobile: 2 per row, then 1 per row on very small */
@media (max-width: 900px) {
  .target-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .target-audience {
    grid-template-columns: 1fr;
  }
}

/* Highlight fold cards */

.fold-grid {
  width: 100%;
}

.fold-card {
  padding: 22px 18px;
  border-radius: 24px;
  color: #021006;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transform-origin: bottom center;
  transform: perspective(900px) rotateX(16deg);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    translate var(--transition-med);
  backdrop-filter: blur(12px);
}

.fold-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 36px;
}

.fold-card p {
  margin: 0;
  font-size: 13px;
}

.fold-card:hover {
  transform: perspective(900px) rotateX(3deg) translateY(-8px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.tone-1 {
  background: linear-gradient(135deg, var(--green-1), #0f3f23);
  color: #f6fff2;
}

.tone-2 {
  background: linear-gradient(135deg, var(--green-2), var(--green-1));
  color: #f8fff5;
}

.tone-3 {
  background: linear-gradient(135deg, var(--green-3), var(--green-2));
}

.tone-4 {
  background: linear-gradient(135deg, var(--green-4), var(--green-3));
}

/* Timeline */

.timeline {
  border-left: 2px solid rgba(10, 60, 26, 0.2);
  margin-top: 10px;
}

.timeline-item {
  position: relative;
  padding: 16px 0 16px 26px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0f4c2b;
  background: #fff;
}

.timeline-time {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #42664a;
  margin-bottom: 2px;
}

.timeline-content h3 {
  margin: 0 0 4px;
  font-size: 36px;
}

.timeline-content p {
  margin: 0;
  font-size: 16px;
}

/* Speakers */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.speaker-card {
  border-radius: 24px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  animation: speakerCardIn 700ms ease-out forwards;
}

/* small stagger so cards appear one by one */
.speaker-card:nth-child(1) {
  animation-delay: 0.05s;
}

.speaker-card:nth-child(2) {
  animation-delay: 0.15s;
}

.speaker-card:nth-child(3) {
  animation-delay: 0.25s;
}

.speaker-card:nth-child(4) {
  animation-delay: 0.35s;
}

.speaker-card:nth-child(5) {
  animation-delay: 0.45s;
}

/* entrance animation */
@keyframes speakerCardIn {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }

  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6);
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041408;
  font-weight: 700;
  margin-bottom: 10px;
}

.small {
  font-size: 12px;
  opacity: 0.8;
}

/* Venue */

.venue-card {
  border-radius: 20px;
  background: #f1f8eb;
  padding: 18px 16px;
  border: 1px solid rgba(31, 86, 40, 0.18);
}

/* Lungs 3D model next to Target Audience */

.highlights-layout {
  align-items: stretch;
}

/* left 3D lungs panel */
/* Lungs 3D model next to Target Audience – enhanced card */

.lungs-3d-card {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.18), transparent 65%),
    radial-gradient(circle at 20% 90%, rgba(220, 140, 140, 0.40), transparent 70%),
    radial-gradient(circle at 100% 40%, rgba(160, 90, 90, 0.35), transparent 70%);
  border: 1px solid rgba(163, 196, 58, 0.55);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(0, 0, 0, 0.6) inset;
  overflow: hidden;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-origin: center;
  transform: perspective(1100px) rotateX(12deg);
  transition:
    transform 260ms ease-out,
    box-shadow 260ms ease-out,
    border-color 260ms ease-out;
}

/* animated glow + vignette behind the 3D model */
.lungs-3d-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 50% 10%, rgba(200, 255, 200, 0.22), transparent 65%),
    radial-gradient(circle at 20% 90%, rgba(120, 170, 51, 0.4), transparent 70%),
    radial-gradient(circle at 100% 40%, rgba(31, 97, 33, 0.35), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  animation: lungsGlow 14s ease-in-out infinite alternate;
}

/* subtle glass highlight on top edge */
.lungs-3d-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.10),
      transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.lungs-3d-card model-viewer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 380px;
  /* was 260px */
  margin-bottom: 8px;
}

/* hover: lift + slight tilt */
.lungs-3d-card:hover {
  transform: perspective(1100px) rotateX(6deg) translateY(-8px);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.95),
    0 0 32px rgba(120, 170, 51, 0.55);
  border-color: rgba(200, 230, 130, 0.9);
}

/* animated glow keyframes (re‑use or keep existing) */
@keyframes lungsGlow {
  0% {
    transform: translate3d(-30px, 0, 0) scale(1.02);
  }

  50% {
    transform: translate3d(0, 10px, 0) scale(1.05);
  }

  100% {
    transform: translate3d(30px, -6px, 0) scale(1.02);
  }
}

/* caption bar under the model */
.lungs-caption {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e9ffe0;
  background: radial-gradient(circle at top left,
      rgba(120, 170, 51, 0.45),
      rgba(3, 16, 7, 0.95));
  border: 1px solid rgba(214, 241, 150, 0.85);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.7),
    0 0 18px rgba(120, 170, 51, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* small glowing dot on the caption */
.lungs-caption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-3), var(--green-4));
  box-shadow: 0 0 10px rgba(120, 170, 51, 0.9);
}

/* caption */
.lungs-caption {
  position: relative;
  z-index: 1;
  margin: 10px 6px 0;
  font-size: 13px;
  opacity: 0.85;
  color: #e9ffe7;
}

/* hover tilt */
.lungs-3d-card:hover {
  transform: perspective(900px) rotateX(4deg) translateY(-6px);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.8);
}

/* glow animation */
@keyframes lungsGlow {
  0% {
    transform: translate3d(-30px, 0, 0) scale(1.03);
  }

  50% {
    transform: translate3d(0, 20px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(30px, -10px, 0) scale(1.03);
  }
}

/* stack on mobile: lungs on top, audience below */
@media (max-width: 720px) {
  .highlights-layout {
    grid-template-columns: 1fr;
  }

  .lungs-3d-card {
    min-height: 260px;
  }
}

/* Registration form */

.register-form {
  max-width: 720px;
  margin: 0 auto;
  backdrop-filter: blur(18px);
  background: rgba(3, 25, 9, 0.12);
  padding: 22px 18px 24px;
  border-radius: 26px;
  border: 1px solid rgba(4, 50, 20, 0.32);
  box-shadow: 0 24px 70px rgba(3, 60, 20, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

label span {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(4, 50, 18, 0.4);
  padding: 9px 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), transform var(--transition-fast);
}

input:focus,
textarea:focus {
  border-color: var(--green-3);
  box-shadow: none;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: rgba(245, 255, 242, 0.8);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 20px auto 0;
  width: 100%;
  /* max-width: var(--max-width); */
  /* padding-inline: clamp(16px, 4vw, 32px); */
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  align-content: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 500;

}

.scroll-wrapper {
  background-color: #fff;
  color: green;
  width: 30%;
  height: 100%;
  border-top-left-radius: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  height: 8vh;
  align-items: center;
}


/* arrow head */

.scroll-line {
  position: relative;
  width: 20px;
  height: 40px;
}

/* create >>> arrows */
.scroll-line span {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #2e7d32;
  border-bottom: 2px solid #2e7d32;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  animation: scrollChevrons 1.5s infinite;
}

/* staggered arrows */
.scroll-line span:nth-child(1) {
  top: 0;
  animation-delay: 0s;
}

.scroll-line span:nth-child(2) {
  top: 10px;
  animation-delay: 0.2s;
}

.scroll-line span:nth-child(3) {
  top: 20px;
  animation-delay: 0.4s;
}

/* animation */
@keyframes scrollChevrons {
  0% {
    opacity: 0;
    transform: translate(-50%, -5px) rotate(45deg);
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 10px) rotate(45deg);
  }
}

.fold-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

/* offset each panel so it looks like one wide video, split */
/* .fold-video-1 {
  object-position: 10% 50%;
} */

.fold-video-2 {
  object-position: 35% 50%;
}

.fold-video-3 {
  object-position: 65% 50%;
}

.fold-video-4 {
  object-position: 90% 50%;
}

/* Exhibitors section */

.exhibitors-section {
  background: #f8fdf8;
}

.exhibitor-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  width: fit-content;
  margin: 0 auto;
}

.exhibitor-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(10, 40, 24, 0.06);
  padding: 18px 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out,
    border-color 200ms ease-out;
  width: fit-content;
}

.exhibitor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  border-color: rgba(31, 86, 40, 0.25);
}

.exhibitor-logo {
  border-radius: 12px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  padding: 10px;
  width: 150px;
}

.exhibitor-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.exhibitor-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.exhibitor-stand {
  font-size: 12px;
  color: #666;
}

.footer-inner {
  color: #fff;
  text-align: center;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
}

.about-the-congress {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 18px;
  position: relative;

  /* Left green accent */
  border-left: 6px solid #3c8f2e;

  /* Soft elevation */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Heading */
.about-the-congress h1 {
  color: #3c8f2e;
  margin-bottom: 1rem;
  position: relative;
}
#about-the-congress{
  position: relative;
    background: url(../images/group84.svg);
    background-repeat: no-repeat;
    background-color: #dbf0da;
    padding-bottom: 0;
    background-size: 100%;
}


/* Paragraphs */
.about-the-congress p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.75rem;
}

/* Fix nested <p> spacing */
.about-the-congress p p {
  margin-top: 0.75rem;
}

.what-to-expect-objectives ul li i {
  font-size: 3rem;
  color: #921a1d;
}

.congressbg {
  width: auto;
}

.sprtr {
  position: absolute;
  top: 0;
  height: 100%;
  left: 100%;
  z-index: 9;
}

/* Responsive */



/*Contact Us*/
.ContactUs {
  color: #ffffff;
  background-color: transparent;
}

.ContactUs .container {
  max-width: 1100px;
}

.ContactUs ul {
  margin: 20px 0;
  padding: 0;
}

.ContactUs ul li {
  margin: 10px 0;
  padding: 0;
}

.ContactUs h1,
.ContactUs h2,
.ContactUs h3,
.ContactUs h4,
.ContactUs h5,
.ContactUs h6 {
  color: #ffffff;
}

.ContactUs a {
  color: #9bb531;
  text-decoration: none;
}

.ContactUs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.login-form h2 {
  font-size: 2em;
  text-transform: capitalize;
  color: var(--color-gary-dark);
  ;
}

.login-form p {
  font-size: .95em;
  color: var(--color-gary-light);
  ;
  line-height: 2em;
}

.login-form span {
  width: 75%;
  height: 1px;
  display: block;
  background: var(--color-primary-dark);
  margin: 1em 0;
}

.login-form h4 {
  font-family: "Exo", sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: .2em;
  color: var(--color-gary-dark);
}

.login-form input[type="text"] {
  padding: .8em 4em .8em 1em;
  width: 100%;
  margin-bottom: 1em;
  border: 1px solid#CECCCC;
  outline: none;
  color: #555;
}

.login-form input[type="email"] {
  padding: .8em 4em .8em 1em;
  width: 100%;
  margin-bottom: 1em;
  border: 1px solid#CECCCC;
  outline: none;
  color: #555;
}

.login-form input[type="text"]:hover {
  border: 1px solid #71c6c1;
}

.login-form textarea {
  width: 100%;
  height: 120px;
  outline: none;
  resize: none;
  margin-bottom: 1em;
  border: 1px solid #CECCCC;
  padding: .8em 4em .8em 1em;
  font-size: 1em;
  color: #555;
}

::-webkit-input-placeholder {
  color: #C3C3C3 !important;
  font-family: 'Josefin Sans', sans-serif;
}

.login-form textarea:hover {
  border: 1px solid #71c6c1;
}

.login-form input[type="submit"] {
  font-size: 1em;
  padding: .8em 1em;
  border: none;
  text-transform: capitalize;
  outline: none;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  width: 56%;
  font-family: 'Josefin Sans', sans-serif;
  border-bottom: 2px solid var(--color-primary-dark);
}

.login-form input[type="submit"]:hover {
  background: var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary);
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

section.MemberData {
  color: #232323;
}

section.MemberData h1,
section.MemberData h2,
section.MemberData h3,
section.MemberData h4,
section.MemberData h5,
section.MemberData h6 {
  color: #232323;
}
section.MemberData div.text-white {
    color: #232323 !important;
}
/*Venue*/
#testMap {
  height: 350px !important;
  border: 3px dashed var(--color-primary) !important;
  box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  position: relative;
}

.Venue .VenueImg {
  border-radius: 5% 50% 5% 50%;
  overflow: hidden;
  border: 3px dashed var(--color-primary) !important;
}

.ratio::before {
  display: none;
}

.Venue .VenueImg img {
  width: 100%;
  height: 100%;
}

/* Gallery image styling */
.gallery-image {
  cursor: pointer;
  margin-bottom: 1rem;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Lightbox overlay */
#lightbox {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
}

#lightbox.visible {
  display: flex;
}

#lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

/* Navigation buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 1);
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

/* Close button */
#closeBtn {
  margin-top: 15px;
  background: #444;
  color: white;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  border: none;
  transition: background-color 0.3s ease;
}

#closeBtn:hover {
  background: #222;
}

/*Registration*/
#registration .RegBox h2 {
  background: var(--color-primary-dark);
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 22px;
}

#registration .RegBox {
  overflow: hidden;
  background-color: rgba(4, 20, 9, 0.82);
  background-image:
    radial-gradient(circle at top left, rgba(120, 170, 51, 0.28), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.85), rgba(4, 12, 7, 0.98));
  border-radius: 26px;
  border: 1px solid rgba(210, 230, 220, 0.25);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
  padding: 24px 22px 26px;
  color: #ffffff;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}

#registration .RegBox:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.85);
  border-color: rgba(163, 196, 58, 0.55);
}

#registration .RegBox h3 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 6px;
}

#registration .RegBox p,
#registration .RegBox span,
#registration .RegBox strong {
  color: rgba(240, 255, 240, 0.86);
}

#registration .RegBox a {
  color: #9bb531;
  text-decoration: none;
  font-weight: 600;
}

#registration .RegBox a:hover {
  color: #ffffff;
  text-decoration: underline;
}

footer {
  background: #337B19;
}

.bio-text {
  color: #232323;
}








/* WHO SHOULD ATTEND */
.who-attend h2 {
  color: #9e1b1f;
}

.attend-list {
  list-style: none;
  padding-left: 0;
}

.attend-list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {}

/* CARD */
.why-attend-card {
  background: #9e1b1f;
  border-radius: 24px;
  position: relative;
  overflow: visible;
  padding: 50px 30px 30px 133px;
  color: #fff;
}

/* OVERLAPPING BLOCK */
.why-attend-icon {
  position: absolute;
  top: -30px;
  width: 210px;
  padding: 20px;
  background: #9e1b1f;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;

  z-index: 5;

  flex-direction: column;
  text-align: right;
}

/* IMAGE (LEFT, NO OVERFLOW) */
.why-attend-icon img {
  width: 80px;
  flex-shrink: 0;
}

/* TEXT (RIGHT, ALIGNED RIGHT) */
.why-attend-icon h4 {
  margin: 0;
  text-align: right;
  line-height: 1.2;
  font-weight: 800;
  width: 100%;
}

/* CONTENT */
.why-attend-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
}
.why-attend-icon h2.txt-primary {
    text-align: right;
    width: 100%;
}
.why-attend-content li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.active {
  animation: fadeInUpTextOnly 0.6s ease-out forwards;
}

@keyframes fadeInUpTextOnly {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Ultra-wide screens */
@media (min-width: 1920px) {
  .sprtr {
    left: 95% !important;
  }
  .why-attend-icon {
    left: -12%;
  }
}

/* XXL devices (large desktops) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .sprtr {
    left: 94%;
  }

  .hero {
    max-height: 96vh;
  }

  .why-attend-icon {
    left: -12%;
  }

  .why-attend-icon {
    width: 210px;
  }
}


/* Extra large devices (laptops & desktops) */
@media (min-width: 1280px) and (max-width: 1439px) {
  .sprtr {
    left: 90%;
  }

  .hero {
    max-height: 96vh;
  }

  .why-attend-icon {
    left: -8%;
  }

  .why-attend-icon {
    width: 179px;

  }
}

/* Large devices (small laptops) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .sprtr {
    left: 89%;
  }

  .why-attend-icon {
    left: -6%;
  }

  .why-attend-icon {
    width: 160px;

  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-the-congress {
    padding: 2rem 1.5rem;
    border-left-width: 4px;
  }

  .event-welcome-txt {

    font-size: 13px;

  }

  .why-attend-icon {
    left: -7%;
  }

  .why-attend-icon {
    width: 176px;

  }

  .whyattnd {
    left: auto;
    right: 0;
    width: 50%;
    top: -30%;
  }

  .whyattnd-container {
    padding-top: 30vh;
  }

  .sprtr {
    left: 86%;
  }
}


@media (max-width: 768px) {
  .why-attend-card {
    flex-direction: column;
  }

  .why-attend-icon {
    width: 100%;
  }

  .why-attend-icon img {
    width: 80px;
    flex-shrink: 0;
    margin: auto;
  }

  .why-attend-card {
    padding: 20px;
  }

  .why-attend-icon {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: center;
  }

  .why-attend-icon h4 {
    text-align: center;
  }

  .agenda-day-tabs {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .agenda-day-tabs .nav-link {
    padding-inline: 18px;
    font-size: 13px;
  }

  .InnerBanner {
    padding: 80px 16px 56px;
  }

  .sprtr {
    display: none;
  }

  div.hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .scroll-wrapper {

    width: 100%;

  }

  .section-header-welcome {

    width: 100%;

  }

  .about-the-congress {
    max-width: 100%;

  }

  .about-the-congress h1 {
    font-size: 1.2rem;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
  }

  .congressbg {
    width: 100%;
  }

  .event-details .hero-inner {
    max-width: var(--max-width) !important;
    margin: auto;
  }

  .hero {
    position: relative;
    min-height: 100vh;

  }

  .hero-bg {

    width: 100%;
    height: 100%;

    z-index: -3;

  }

  .hero-logo {
    padding-top: 14vh;
  }

  .hero-logo img {
    width: 50%;
  }

  .event-welcome-txt {

    width: 100%;
  }

  .yrdytxt-right {
    width: 85%;
  }

  .whyattnd {
    top: -31%;
    width: 50%;
    right: 0;
    left: auto;
  }

  nav.navbar.nav.navbar-expand-lg.navbar-dark {
    width: 100%;
    border-radius: 0;
    margin: 0;
  }

  a#HeadBtn1 {
    position: absolute;
    right: 10px;
    top: 16px;
  }

  .hero-content,
  .hero-countdown {
    width: 100%;
  }

  .hero-countdown {
    margin-top: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sponsers-daynum{
  color: #276a30;
}
/* Small devices (phones) */
@media (min-width: 481px) and (max-width: 767px) {

  .whyattnd-container {
    padding-top: 30vh;
  }
}

/* Extra small devices (small phones) */
@media (max-width: 480px) {
  .whyattnd {
    top: -16%;
    width: 50%;
    right: 0;
    left: auto;
  }
}
ul.dropdown-menu.show {
    width: 200px;
}