/* Set your hero background photos here */
:root {
  --hero-photo: url("logistics-hero.jpg");          /* desktop */
  --hero-photo-mobile: url("logistics-hero.jpg");   /* optional mobile crop */
}

/* ============ DESIGN TOKENS ============ */
:root {
  --purple-left: #7f27f4;
  --purple-mid: #5d1fb1;
  --purple-right: #301a84;

  --ink: #111;
  --ink-inverse: #fff;

  --bg-body: #f5f4fa;
  --bg-dark: #090b16;

    --btn: #dc2626;      /* red */
  --btn-ink: #ffffff;  /* white text on red */

}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-inverse);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0a0630;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: 16px;
}

/* a11y */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: .5rem .75rem;
  border-radius: .5rem;
}

/* ============ WHITE HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-block: .75rem;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(0,0,0,.25);
  background: transparent;
  color: #000;
  padding: .45rem;
  border-radius: .6rem;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  padding: .4rem .6rem;
  color: #222;
  font-weight: 600;
  border-radius: .4rem;
}

.nav a:hover {
  color: #3c3c3c;
}

.btn {
  display: inline-block;
  background: var(--btn);
  /*color: var(--btn-ink);*/
  font-weight: 800;
  border: none;
  border-radius: .8rem;
  padding: .6rem 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  color: white !important;
}
#nominate {
    color: white !important;
}
.btn--small {
  padding: .55rem .9rem;
  color: white;
}

/* mobile nav */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 45px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.1);
    transform: translateY(-120%);
    transition: transform .25s ease;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1rem;
    gap: .25rem;
  }

  .nav a {
    padding: .85rem;
    color: white;
    border-radius: .6rem;
  }
}

/* ============ HERO — FINAL SPACING & TYPE ============ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--replica {
  position: relative;
  min-height: min(85vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--hero-photo) center/cover no-repeat;
  color: #fff;
}

/* purple tint and vignette */
.hero--replica::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(127, 39, 244, 0.6) 0%,
    rgba(93, 31, 177, 0.55) 60%,
    rgba(48, 26, 132, 0.5) 100%
  );
  mix-blend-mode: multiply;
}

.hero--replica::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 160% at 50% 110%, rgba(0,0,0,.35), transparent 50%);
  pointer-events: none;
}

/* content layout */
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 12vh, 8rem);
  max-width: 950px;
  margin-inline: auto;
}

/* centered event logo */
.hero-logo {
  width: min(380px, 55vw);
  margin-inline: auto;
  margin-bottom: -0.75rem;
}

/* headline */
.hero-heading {
  font-weight: 800;
  font-size: clamp(1rem, 1rem + 2vw, 2rem);
  line-height: 1.3;
  letter-spacing: .01em;
  margin: 0 auto clamp(0.8rem, 1.5vw, 1.25rem);
  max-width: 18ch;
  margin-top: 0 !important;
}

/* subheadline */
.hero-sub {
  max-width: 60ch;
  margin: 0 auto clamp(2.2rem, 3vw, 2.75rem);
  font-size: clamp(.95rem, .9rem + .35vw, 1.1rem);
  color: rgba(255,255,255,.88);
  line-height: 1.65;
}

/* CTAs */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-cta-row .btn {
  padding: .7rem 1.3rem;
  font-size: .9rem;
  border-radius: .5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.hero-cta-row .btn--ghost {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  background: transparent;
}

/* mobile hero tweaks */
@media (max-width: 980px) {
  .hero--replica {
    background: var(--hero-photo-mobile) center/cover no-repeat;
  }
}

@media (max-width: 768px) {
  .hero--replica {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 4rem;
  }

  .hero-logo {
    width: min(300px, 70vw);
    margin-bottom: 1.25rem;
  }

  .hero-heading {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    line-height: 1.3;
  }

  .hero-sub {
    font-size: .95rem;
    margin-bottom: 2rem;
  }
}

/* ============ GENERIC SECTIONS / FOOTER ============ */
.section {
  padding-block: 4rem;
}

.section--alt {
  background: rgba(255,255,255,.02);
}

.site-footer {
  padding-block: 2.4rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0b0840;
  color: #cbd3ff;
}

.footer-inner {
  display: flex;
  justify-content: center;
}

/* ===== COUNTDOWN (compact, elegant) ===== */
:root {
  --countdown-bg: #ffffff;                 /* white band for contrast */
  --countdown-ink: #0b1950;                /* deep navy numerals */
  --countdown-muted: #525b76;              /* label color */
  --countdown-divider: rgba(11,25,80,.18); /* thin separators */
}

.countdown {
  background: var(--countdown-bg);
  color: var(--countdown-ink);
  padding-block: clamp(1.6rem, 2.5vw, 2.2rem); /* compact height */
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.countdown-title {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 .9rem;
  font-size: clamp(.8rem, .65rem + .6vw, .95rem);
  color: var(--countdown-muted);
}

.countdown-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  text-align: center;
}

.countdown .block {
  display: grid;
  gap: .35rem;
  justify-items: center;
}

.countdown .num {
  font-weight: 800;
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.4rem); /* bold but not huge */
  line-height: 1;
  letter-spacing: .02em;
  color: var(--countdown-ink);
}

.countdown .label {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: clamp(.7rem, .55rem + .4vw, .85rem);
  color: var(--countdown-muted);
}

.countdown .divider {
  width: 1px;
  height: clamp(40px, 5vw, 64px);
  background: var(--countdown-divider);
  justify-self: center;
  align-self: center;
  border-radius: 1px;
}

/* mobile */
@media (max-width: 700px) {
  .countdown-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns x 2 rows */
    gap: 1.1rem 1.4rem;
  }

  .countdown .divider {
    display: none;
  }

  .countdown {
    padding-block: 1.4rem;
  }

  .countdown-title {
    margin-bottom: .7rem;
  }
}

/* ===== THEME / ABOUT SECTION (ABOUT THE SUMMIT) ===== */

/* Section background */
.theme-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  /* base bluish gradient instead of purple */
  background:
    radial-gradient(900px 500px at -10% 10%, rgba(0,140,255,0.12), transparent 60%),
    linear-gradient(180deg, #eaf2ff 0%, #f6faff 60%, #ffffff 100%);
}

/* layered blue-ish background card behind content */
.theme-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg,
      rgba(0,140,255,0.10) 0%,
      rgba(20,50,120,0.06) 40%,
      rgba(20,50,120,0.05) 100%
    ),
    radial-gradient(900px 600px at 0% 30%, rgba(0,140,255,0.10), transparent 70%),
    #ffffff;
}

/* dotted overlay + soft blue mist */
.theme-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    radial-gradient(900px 400px at 110% 10%, rgba(20,50,120,.12), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3Cpattern id='d' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23405a9c'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23d)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* light grain at bottom for depth */
.theme-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  background:
    radial-gradient(140% 180% at 50% 120%, rgba(0,0,0,.10), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  background-size: auto, 300px 300px;
}

/* main layout */
.theme-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* text block */
.theme-subtitle {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .85rem;
  color: red; /* still a nice purple accent for headings */
  margin: 0 0 .75rem;
  font-weight: 700;
}

.theme-heading {
  font-size: clamp(2rem,1.4rem + 1.8vw,2.7rem);
  font-weight: 800;
  line-height: 1.15;
  color: #101D7A;
  margin: 0 0 1.25rem;
}

.theme-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #343242;
  margin-bottom: 1.75rem;
}

/* brochure button */
.theme-btn {
  background: red;;
  color: #ffffff;
  font-weight: 700;
  padding: .8rem 1.7rem;
  border-radius: .75rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}


.theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  filter: brightness(1.03);
}

/* right image card */
.theme-image {
  position: relative;
  z-index: 1;
  
}

.theme-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.4rem;
  background: #000;
  border: 1px solid rgba(12,22,66,.10);
  box-shadow:
    0 24px 60px rgba(7,12,45,.45),
    0 0 0 1px rgba(255,255,255,.4);
    
}

/* subtle inner blue glow over image */
.theme-image::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  
  background:
    radial-gradient(140% 140% at 0% 0%, rgba(0,160,255,.4), transparent 55%);
  mix-blend-mode:screen;
  opacity:.9;
  pointer-events:none;
}

/* Stats Row */
.theme-stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem,4vw,3rem);
  margin-top: clamp(2.5rem,5vw,3.5rem);
  text-align: center;
  border-top: 1px solid rgba(17,16,41,.08);
  padding-top: clamp(1.5rem,3vw,2rem);
  flex-wrap: wrap;
}

.theme-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.theme-stats .divider {
  width: 1px;
  height: clamp(40px,5vw,50px);
  background: rgba(32,24,87,.18);
}

.stat-number {
  font-size: clamp(2rem,1.4rem + 2vw,2.6rem);
  font-weight: 800;
  color: red; /* keeps count numbers in purple accent */
  margin-bottom: .25rem;
}

.stat-label {
  font-size: .95rem;
  color: #4e4a68;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .theme-grid {
    grid-template-columns: 1fr;
  }
  .theme-image {
    order: -1;
  }
}

@media (max-width: 700px) {
  .theme-grid {
    gap: 2rem;
  }
  .theme-heading {
    font-size: clamp(1.7rem,6vw,2.2rem);
  }
}


/* Card */
.theme-card {
  text-align: center;
  padding: 2rem 1.8rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(127,39,244,0.08) 0%, rgba(48,26,132,0.05) 100%);
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  border: 1px solid rgba(127,39,244,0.08);
  transition: all 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, rgba(127,39,244,0.14) 0%, rgba(48,26,132,0.08) 100%);
}

/* Icon wrapper */
.theme-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(127,39,244,0.18), rgba(127,39,244,0.05));
  box-shadow: 0 4px 12px rgba(127,39,244,0.15);
}

/* SVG icon styling */
.theme-icon {
  width: 36px;
  height: 36px;
  color: #5d1fb1;
}

/* Typography */
.theme-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}

.theme-card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

/* Subtle gradient background */
/* ============================================
   KEY DISCUSSION TOPICS – SUBTLE BLUE THEME
   Matches the light dotted gradient background
   ============================================ */

.key-themes-section {
  position: relative;
  padding: 4rem 0;
  background:
    linear-gradient(135deg, #eef4ff 0%, #f7faff 100%);
  overflow: hidden;
}

/* Tiny dotted pattern overlay */
.key-themes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(#d6e2ff 0.5px, transparent 0.5px);
  background-size: 18px 18px; /* spacing between dots */
  opacity: 0.4;               /* subtle effect */
  pointer-events: none;
}

.key-themes-section > .container {
  position: relative;
  z-index: 2;
}

/* Title */
.key-themes-section .section-title {
  text-align: center;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2rem);
  font-weight: 800;
  color: #101D7A;
  margin-bottom: 2rem;
}

/* Grid layout */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.key-themes-section .theme-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  border: 1px solid rgba(56, 116, 255, 0.15);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.key-themes-section .theme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

/* Icon Circle */
.key-themes-section .theme-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.key-themes-section .theme-icon {
  width: 28px;
  height: 28px;
  stroke: #1e3a8a; /* deep blue */
}

/* Text */
.key-themes-section .theme-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a8a;
}

.key-themes-section .theme-card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: #475569;
}
/* ============================================
   PERFECT CENTER-ALIGNED THEME CARDS (BLUE)
   ============================================ */

.key-themes-section .theme-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2.2rem 1.8rem;
  text-align: center;                 /* ❤️ Centers everything */
  border: 1px solid rgba(56, 116, 255, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.key-themes-section .theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Center the icon container */
.key-themes-section .theme-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem auto;         /* ❤️ Center horizontally */
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e0edff, #cfe1ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(56, 116, 255, 0.25);
}

/* Center icon */
.key-themes-section .theme-icon {
  width: 34px;
  height: 34px;
  stroke: #1e3a8a;                    /* navy blue */
  display: block;
  margin: 0 auto;
}

/* Title centered */
.key-themes-section .theme-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f2a75;
  margin: 0 0 0.5rem;
}

/* Description centered */
.key-themes-section .theme-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
/* Center wrapper */
.key-themes-btn-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* 🔥 RED Agenda Button */
.btn-agenda {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c); /* red gradient */
  color: #ffffff !important;
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* Hover effect */
.btn-agenda:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 30px rgba(220, 38, 38, 0.45);
}

/* Responsive tweaks */
@media (max-width: 700px) {
  .theme-card {
    padding: 1.8rem 1.4rem;
  }

  .theme-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .theme-icon {
    width: 30px;
    height: 30px;
  }

  .theme-card h3 {
    font-size: 1.15rem;
  }
}
/* ====== CARGONXT RECOGNITIONS ====== */
/* === Override Recognitions background to match ABOUT section === */

.recog-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  /* same light blue gradient as ABOUT THE SUMMIT */
  background:
    radial-gradient(900px 500px at -10% 10%, rgba(0,140,255,0.12), transparent 60%),
    linear-gradient(180deg, #eaf2ff 0%, #f6faff 60%, #ffffff 100%);
}

/* kill the old dark purple wash */
.recog-bg {
  display: none;
}


/* background texture & gentle brand wash */
/* .recog-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(127,39,244,.08) 0%, rgba(93,31,177,.06) 40%, rgba(48,26,132,.05) 100%),
    radial-gradient(900px 500px at 0% 0%, rgba(127,39,244,.12), transparent 70%),
    #fff;
} */

.recog-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cdefs%3E%3Cpattern id='g' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 23.5h24M23.5 0v24' stroke='%2399a0c4' stroke-opacity='.35' stroke-width='.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23g)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* layout */
.recog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem,3.5vw,3rem);
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}

/* left */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  color: red;
  font-size: .85rem;
  margin-bottom: .6rem;
}

.recog-title {
  font-weight: 900;
  line-height: 1.03;
  margin: 0 0 .8rem;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem);
  color: #101D7A;
}

.recog-title .highlight {
  background: linear-gradient(90deg, rgba(56, 116, 255, 0.18), rgba(56, 116, 255, 0.06));
  padding: .15em .35em;
  border-radius: .3rem;
  color: #101D7A;
}

.recog-sub {
  margin: 0 0 .75rem;
  color: #101D7A;
  font-weight: 600;
  line-height: 1.6;
}

.recog-body {
  margin: 0 0 1.3rem;
  color: #424a6a;
  line-height: 1.7;
}

.recog-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: .6rem;
  margin-bottom: 1rem;
}

/* dark-outline ghost to fit light bg */
.btn.btn--ghost-dark {
  background: transparent;
  color: #121739;
  border: 1px solid rgba(18,23,57,.25);
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}

.btn.btn--ghost-dark:hover {
  border-color: rgba(18,23,57,.45);
}

/* badge card */
.recog-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid rgba(18,23,57,.12);
  border-radius: .6rem;
  padding: .5rem .7rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  color: #1b2142;
  font-weight: 600;
  font-size: .95rem;
}

.recog-badge .dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #22c58b;
  display: inline-block;
}

/* right visual */
.recog-visual {
  display: block;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg,#f6f4ff, #fff);
  box-shadow: 0 10px 28px rgba(18,18,38,.10);
  border: 1px solid rgba(12,22,66,.08);
}

.recog-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* buttons base (uses your existing .btn, keeping sizes consistent) */
.recog-section .btn {
  padding: .85rem 1.25rem;
  border-radius: .7rem;
}

/* responsive */
@media (max-width: 980px) {
  .recog-grid {
    grid-template-columns: 1fr;
  }

  .recog-visual {
    order: -1;
  }
}

/* ===== Footer styles ===== */
.site-footer-ngx {
  --footer-bg: #05334a;         /* deep blue-green */
  --footer-bg-2: #07384f;
  --footer-ink: #e8f3ff;
  --footer-muted: #c7d6e6;

  background: linear-gradient(90deg,var(--footer-bg),var(--footer-bg-2));
  color: var(--footer-ink);
  margin-top: 3rem;
}

.site-footer-ngx .container {
  width: min(var(--container,1200px),100%);
  margin-inline: auto;
  padding-inline: 16px;
}

/* top */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 1rem;
  padding: 2.2rem 0 1.6rem;
}

.ft-logo {
  height: 42px;
  filter: brightness(1.1) contrast(1.1);
}

.ft-title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.6rem,1.2rem + 1.8vw,2.6rem);
  line-height: 1.1;
  letter-spacing: .01em;
  margin: 0;
}

.ft-social {
  display: flex;
  gap: .8rem;
  justify-content: flex-end;
}

.soc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #eaf5ff;
  transition: .2s ease;
}

.soc:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

/* divider */
.ft-line {
  height: 1px;
  background: rgba(255,255,255,.12);
}

/* columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1.5rem,3vw,3rem);
  padding: 1.8rem 0 1.8rem;
}

.ft-col h3 {
  font-size: clamp(1.1rem,1rem + .3vw,1.4rem);
  margin: 0 0 .8rem;
  font-weight: 800;
}

.ft-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}

.ft-col a {
  color: var(--footer-ink);
  opacity: .9;
  text-decoration: none;
}

.ft-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* address lines with icons */
.ft-address .addr-line {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}

.addr-ico {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  margin-top: .1rem;
}

/* bottom */
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: .9rem 0;
  color: var(--footer-muted);
  font-size: .95rem;
  text-align: center;
}

/* responsive */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ft-social {
    justify-content: center;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  display: grid;
  place-items: center;
  z-index: 9999;
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

/* ===== SPECIAL GUESTS (pure PNG display, no white cards) ===== */
.guests-minimal {
  position: relative;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
  color: #0a0630;
  padding-top: 2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.guests-minimal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 0% 100%, rgba(127, 39, 244, 0.06), transparent 70%);
  pointer-events: none;
}

.guests-minimal .section-title {
  margin-top: 0;
  margin-bottom: 1.75rem;
  text-align: center;
  font-weight: 800;
  color: #0077FF
}

/* responsive grid layout */
.guests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-items: center;
}

/* images displayed as-is, no background/shadow */
.guests-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
  border: none;
  transition: transform 0.25s ease;
}

.guests-grid img:hover {
  transform: scale(1.02);
}

/* ================================
   PAST PARTNERS SECTION (FIXED)
================================ */

.partners-section {
  padding: 3.5rem 0;
  background: #121F7B;
  color: #ffffff;
  overflow: hidden; /* prevents any horizontal overflow */
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Left text block */
.partners-copy {
  flex: 0 0 240px;
}

.partners-kicker {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

.partners-title {
  margin: 0.4rem 0 0;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}

/* Carousel area */
.partners-carousel {
  flex: 1;
  overflow: hidden;
  min-width: 0; /* IMPORTANT for flex overflow behavior */
}

/* Track */
.partners-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content; /* prevents shrinking */
  will-change: transform;
  animation: partners-scroll 28s linear infinite;
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

/* Each logo card MUST NOT shrink */
.partner-card {
  flex: 0 0 auto;       /* 🔥 prevents shrinking */
  width: 240px;
  background: #ffffff;
  border: 1px solid rgba(11, 15, 26, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.18);

  display: flex;
  flex-direction: column;
}

/* Top strip (if used in past partners too) */
/*.partner-card__top {*/
/*  width: 100%;*/
/*}*/

/* Body area */
.partner-card__body {
  height: 100px;        /* slightly tighter */
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo sizing (this WILL show properly now) */
.partner-card__body img {
  width: auto !important;
  height: auto !important;
  max-width: 190px !important;
  max-height: 80px !important;
  object-fit: contain !important;
  display: block !important;
}

/* ✅ Smooth infinite loop:
   Only works correctly if you DUPLICATE your logos once in HTML.
   Then we translate by 50% of the track content.
*/
@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .partners-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .partners-copy {
    flex: none;
  }

  .partners-title {
    font-size: 2rem;
  }

  .partner-card {
    width: 200px;
  }

  .partner-card__body img {
    max-width: 160px !important;
    max-height: 70px !important;
  }
}


/* ===============================
   TESTIMONIALS SECTION (SLIDER)
   =============================== */

.testimonials-section {
  padding-block: 4rem;
  background: #121F7B;
  color: #0f172a;
}

.testimonials-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: center;
}

/* generic card style */
.testimonial-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.25);
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

/* side cards */
.testimonial-card--side {
  opacity: 0.92;
}

/* main card */
.testimonial-card--main {
  padding: 1.8rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-main-top {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

/* heading */
.testimonials-heading {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #121F7B;
}

/* avatar styles */
.testimonial-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5e7eb;
}

.testimonial-avatar--lg {
  width: 80px;
  height: 80px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================
   PARTICIPATING INDUSTRIES (LIGHT BLUE)
   ========================================= */

.industries-section {
  padding-block: 4rem 4.5rem;
  position: relative;
  background: linear-gradient(
      180deg,
      #dce9ff 0%,   /* deeper blue */
      #eaf2ff 40%, /* mid blue */
      #ffffff 100% /* white fade */
  );
  overflow: hidden;
}
.industry-circle svg {
  width: 42px;
  height: 42px;
  stroke: #0f172a; /* navy blue stroke */
  opacity: 0.9;
}

.industries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d7e3ff 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  opacity: 0.45;
  pointer-events: none;
}

.industries-section .container {
  position: relative;
  z-index: 1;
}

/* Header */
.industries-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.industries-heading {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 1.7rem + 0.8vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
}

.industries-subtitle {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2.3rem 1.8rem;
  justify-items: center;
}

/* Item */
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

/* Circular icon */
.industry-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.industry-circle img {
  max-width: 56%;
  max-height: 56%;
  display: block;
}

/* hover */
.industry-item:hover .industry-circle {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

/* label */
.industry-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #0f172a;
}

/* responsive spacing tweaks */
@media (max-width: 768px) {
  .industries-grid {
    gap: 1.8rem 1.4rem;
  }

  .industry-circle {
    width: 95px;
    height: 95px;
  }
}


/* ===========================
   SPEAKERS PAGE GRID SECTION
   =========================== */

.speakers-home-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #eef6ff 0%, #e7f3ff 50%, #eaf7ff 100%);
}

.speakers-home-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.speakers-title {
  font-size: clamp(2.2rem, 2rem + 0.8vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #102a43;
}

.speakers-subtitle {
  text-align: center;
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
}

/* Responsive grid – auto 3/4 columns depending on width */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.2rem;
}

/* Speaker card */
.speaker-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speaker-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

/* Speaker image */
.speaker-box img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.9rem;
}

/* Speaker name */
.speaker-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #102a43;
  margin: 0 0 0.3rem;
}

/* Speaker role */
.speaker-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #5b6b7f;
}


/* ===========================
   SINGLE-CARD APP-STYLE AGENDA
   =========================== */

.agenda-app-section {
  padding: 1.5rem 0 5rem;
  background: radial-gradient(circle at top, #2433a8 0, #121F7B 45%, #050816 100%);
  /* if you want it flat instead, use: background: #121F7B; */
  overflow-x: hidden;
}

/* Optional: give the shell a nice glow so it floats over the blue */
.agenda-shell {
  background: #ffffff;
  border-radius: 28px;
  padding: 1.4rem 1.6rem 1.7rem;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(15, 23, 42, 0.08);
}

/* Make the timeline line and dot work better on dark blue outside the card */
.agenda-status-dot--blue {
  background: #38bdf8; /* slightly brighter blue dot */
}

.agenda-app-date::after {
  background: rgba(148, 163, 253, 0.8); /* softer violet line */
}

.agenda-title {
  text-align: center;
  color: white;
  font-size: 2.5rem;
}

.agenda-app-container {
  max-width: 980px;
  margin: 0 auto;
}

/* Big white shell that holds everything */
.agenda-shell {
  background: #ffffff;
  border-radius: 28px;
  padding: 1.4rem 1.6rem 1.7rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

/* Top header row inside shell */
.agenda-shell-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}

.agenda-shell-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.agenda-group-count {
  font-size: .8rem;
  color: #6b7280;
}

.agenda-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.agenda-status-dot--blue {
  background: #2563eb;
}

/* dotted divider under header */
.agenda-shell-divider {
  border-top: 1px dashed #e5e7eb;
  margin-bottom: 1.2rem;
}

/* List & rows */
.agenda-app-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agenda-app-item {
  display: flex;
}

/* Left date column */
.agenda-app-date {
  position: relative;
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1rem;
  font-size: .7rem;
  text-transform: uppercase;
  color: #9ca3af;
}

.agenda-month {
  margin-bottom: .2rem;
}

.agenda-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 14px 28px rgba(37, 99, 235, .45);
}

/* Vertical line */
.agenda-app-date::after {
  content: "";
  position: absolute;
  top: 60px;
  bottom: -16px;
  width: 2px;
  background: #e5edff;
}

.agenda-app-item:last-child .agenda-app-date::after {
  display: none;
}

/* Right card */
.agenda-app-card {
  flex: 1;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eef2ff;
  padding: 1rem 1.2rem 1.05rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .05);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

/* Top row (time + tag) */
.agenda-app-card-top {
  display: flex;
  align-items: center;
  font-size: .78rem;
  color: #6b7280;
  margin-bottom: .2rem;
}

.agenda-time-range {
  font-weight: 600;
  color: #111827;
}

.agenda-ref-tag {
  margin-left: auto;
  font-size: .78rem;
  color: #9ca3af;
}

/* Title / description */
.agenda-event-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.agenda-event-sub {
  font-size: .85rem;
  color: #6b7280;
  margin: 0;
}

/* SPEAKERS ROW */
.agenda-speakers-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .3rem;
}

.agenda-speaker-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .6rem .25rem .25rem;
  border-radius: 999px;
  background: #f3f4ff;
}

.agenda-speaker-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.18);
}

.agenda-speaker-name {
  font-size: .78rem;
  font-weight: 500;
  color: #111827;
}

/* Footer meta */
.agenda-app-meta {
  margin-top: .4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.agenda-location {
  font-size: .8rem;
  color: #4b5563;
}

.agenda-location::before {
  content: "▣";
  font-size: .65rem;
  margin-right: .3rem;
  color: #9ca3af;
}

/* Chips */
.agenda-chip {
  font-size: .72rem;
  padding: .18rem .55rem;
  border-radius: 999px;
  font-weight: 500;
}

.agenda-chip--networking {
  background: #ecfdf3;
  color: #15803d;
}

.agenda-chip--session {
  background: #eef2ff;
  color: #4338ca;
}

.agenda-chip--keynote {
  background: #fff7ed;
  color: #ea580c;
}

.agenda-chip--special {
  background: #fef9c3;
  color: #92400e;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .agenda-shell {
    padding: 1.1rem 1.1rem 1.3rem;
  }

  .agenda-app-item {
    align-items: flex-start;
  }

  .agenda-app-date {
    width: 60px;
    margin-right: .7rem;
  }

  .agenda-app-card {
    padding: .9rem 1rem .95rem;
  }
}


/* =======================
   AGENDA – ROW ACCORDION
   ======================= */

.agenda-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 40%, #ffffff 100%);
}

.agenda-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.agenda-heading {
  text-align: center;
  font-size: clamp(2.4rem, 2.1rem + 0.9vw, 3.2rem);
  font-weight: 800;
  color: #0060b4; /* deep blue heading */
  margin-bottom: 2.5rem;
}

/* List wrapper */
.agenda-list {
  border: 1px solid #d4d4d4;
  border-radius: 0;
  background: #ffffff;
}

/* Each accordion item */
.agenda-item {
  border-bottom: 1px solid #d4d4d4;
  background: #ffffff;
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  list-style: none;           /* Firefox */
}

.agenda-summary::-webkit-details-marker {
  display: none;              /* Chrome/Safari */
}

/* Left block: icon + time */
.agenda-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 210px;
}

.agenda-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #0057b8;
  color: #ffffff;
  font-size: 18px;
}

.agenda-time {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0057b8;
}

/* Middle block: title */
.agenda-title-wrap {
  flex: 1;
}

.agenda-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #d02121; /* red title text */
}

/* Right: chevron circle */
.agenda-chevron {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  flex-shrink: 0;
  position: relative;
}

.agenda-chevron::before,
.agenda-chevron::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: transform 0.2s ease;
}

/* "Down" arrow by default */
.agenda-chevron::before {
  transform: translateX(-2px) rotate(45deg);
}
.agenda-chevron::after {
  transform: translateX(2px) rotate(-45deg);
}

/* Rotate when open (arrow up) */
.agenda-item[open] .agenda-chevron::before {
  transform: translateX(-2px) rotate(-45deg);
}
.agenda-item[open] .agenda-chevron::after {
  transform: translateX(2px) rotate(45deg);
}

/* Expanded content */
.agenda-body {
  padding: 1rem 1.8rem 1.4rem 4.8rem; /* extra left padding to align under text */
  border-top: 1px solid #e5e5e5;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #222;
  background: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .agenda-summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.3rem;
  }

  .agenda-left {
    min-width: 0;
  }

  .agenda-body {
    padding: 0.9rem 1.3rem 1.2rem;
  }

  .agenda-chevron {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ============= CONTINUOUS TESTIMONIAL CAROUSEL ============= */

.cxt-testimonials {
  padding: 4.5rem 0 5rem;
  background: radial-gradient(circle at top, #2433a8 0, #121F7B 45%, #050816 100%);
  color: #f9fafb;
}

.testimonial-fade-left,
.testimonial-fade-right {
  position: absolute;
  top: 0;
  width: 18%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.testimonial-fade-left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(18, 31, 123, 0.55),   /* softer */
    rgba(18, 31, 123, 0.20),
    rgba(18, 31, 123, 0.00)
  );
}

.testimonial-fade-right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(18, 31, 123, 0.55),   /* softer */
    rgba(18, 31, 123, 0.20),
    rgba(18, 31, 123, 0.00)
  );
}


.cxt-testimonials-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Heading */

.cxt-testimonials-heading {
  text-align: center;
  font-size: clamp(2.2rem, 2rem + 1vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.cxt-testimonials-heading span {
  font-weight: 600;
  color: #e5e7eb;
}

/* Marquee viewport */

.cxt-testimonials-marquee {
  position: relative;
  overflow: hidden;
  padding-block: 0.75rem;
  /* soft fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Track */

.cxt-testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: cxt-scroll 32s linear infinite;
}

/* Pause on hover */

.cxt-testimonials-marquee:hover .cxt-testimonials-track {
  animation-play-state: paused;
}

/* Card */

.cxt-t-card {
  min-width: 340px;
  max-width: 360px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 22px;
  padding: 1.6rem 1.7rem 1.4rem;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Text & footer */

.cxt-t-text {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.cxt-t-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cxt-t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.cxt-t-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.cxt-t-role {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Animation: move exactly one full set (50%) then loop */

@keyframes cxt-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */

@media (max-width: 1024px) {
  .cxt-t-card {
    min-width: 280px;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .cxt-testimonials-heading {
    margin-bottom: 1.8rem;
  }

  .cxt-testimonials-inner {
    padding-inline: 1rem;
  }

  .cxt-t-card {
    min-width: 260px;
    max-width: 260px;
    padding: 1.4rem 1.3rem 1.3rem;
  }
}

/* Respect reduced motion preferences */

@media (prefers-reduced-motion: reduce) {
  .cxt-testimonials-track {
    animation: none;
  }
}

/* ===== Video Slider Section ===== */

.video-slider-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #E9F1FF 0%, #F7FAFF 100%);
}

.video-slider-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-slider-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.video-slider-header p {
  margin: 0 0 24px;
  font-size: 14px;
  color: #6b7280;
}

.video-slider-shell {
  position: relative;
  background: #0B1120;
  border-radius: 24px;
  padding: 40px 56px;
  overflow: hidden;
}

/* Arrows */

.video-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s ease, transform 0.15s ease;
}

.video-nav-btn:hover {
  background: #2563eb;
  transform: translateY(-50%) scale(1.05);
}

.video-nav-prev {
  left: 18px;
}

.video-nav-next {
  right: 18px;
}

/* Track */

.video-track-wrapper {
  overflow: hidden;
}

.video-track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s ease;
}

/* Cards */

.video-card {
  flex: 0 0 calc(100% / 3);
  color: #0f172a;
}

.video-thumb {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.video-play-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
}

.video-title {
  margin: 18px 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.video-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #bfdbfe;
  text-decoration: none;
}

.video-cta-icon {
  font-size: 13px;
}

/* Responsive */

@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc(100% / 2);
  }
}

@media (max-width: 640px) {
  .video-slider-shell {
    padding: 26px 40px;
  }
  .video-card {
    flex: 0 0 100%;
  }
  .video-thumb img {
    height: 200px;
  }
  .video-title {
    font-size: 18px;
  }
}

/* =========================
   OUR SPONSORS (Reference Style)
========================= */

.sponsors-section{
  padding: 72px 0;
  background: #ffffff;
}

.sponsors-header{
  text-align: center;
  margin-bottom: 26px;
}

.sponsors-title{
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 800;
  color: #0f172a;
}

.sponsors-sub{
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.sponsors-row{
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Card */
.sponsor-card{
  width: 240px;
  background: #fff;
  border: 1px solid #0b0f1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
}

/* Top strip */
.sponsor-card__top{
  width: 100%; /* full width */
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;

  background: linear-gradient(180deg, #0b1a55 0%, #142a84 100%);
}

/* Body */
.sponsor-card__body{
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #ffffff;
}

.sponsors-section{
  padding: 100px 0;
  background:
    radial-gradient(1200px 400px at 50% -100px, rgba(64, 123, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #f7faff 0%, #eef3ff 100%);
}

.sponsor-logo{
  max-width: 78%;
  max-height: 92px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px){
  .sponsor-card{
    width: 210px;
  }
  .sponsors-title{
    font-size: 32px;
  }
}
