/* ==========================================================================
   CIO Conclave & Awards 2026
   Editorial, photography-free redesign. Flat navy accent, warm paper base.
   ========================================================================== */

:root {
  --paper: #ffffff;
  --paper-tint: #f6f5f0;
  --ink: #14171f;
  --ink-soft: #585c68;
  --ink-faint: #8b8e99;
  --line: #e4e1d6;
  --line-strong: #cfccc0;
  --navy: #1c398e;
  --navy-hover: #16307e;
  --navy-deep: #0f2158;
  --navy-tint: rgba(28, 57, 142, 0.07);
  --navy-tint-strong: rgba(28, 57, 142, 0.14);
  --amber: #b9791f;

  --font-head: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}
a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 88px 0;
}
.section-sm {
  padding: 56px 0;
}
.section-tint {
  background: #f7f9fc;
}

.section-head {
  margin-bottom: 44px;
}
.section-head h2 {
  /* font-size: clamp(1.7rem, 3vw, 2.3rem); */
  margin-bottom: 10px;
}
.section-lead {
  color: var(--ink-soft);
}

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
  display: inline-block;
}
.kicker-light {
  color: #cfd8f5;
  border-bottom-color: #0e0b47;
}

.text-link {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}
.text-link:hover {
  color: var(--navy-hover);
  border-color: var(--navy-hover);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  border: 1.5px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
  color: #fff;
}
.btn-navy-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-navy-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-navy-outline-light {
  background: #0e0b47;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-navy-outline-light:hover {
  background: #fff;
  color: var(--navy-deep);
  border-color: #0f2158;
}

/* ---------- Announcement ---------- */
.announce-bar {
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.announce-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding: 9px 0;
  /*animation: marquee 26s linear infinite;*/
}

.announce-track span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #cfd8f5;
}


.announce-track span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .announce-track span {
    font-size: 0.9rem;
  }
}
/* ---------- Navbar ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--ink-faint);
}
.navbar .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 8px 14px !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--navy);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

/* Keep the navbar above the hero without adding space before the banner. */
#mainNav {
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}
.meta-item i {
  color: var(--navy);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
  background: var(--paper-tint);
}
.hero-panel-edition {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.hero-panel-label {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 10px 0 26px;
}
.hero-panel-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.hero-panel-stats > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero-panel-stats dt {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.hero-panel-stats dd {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}

/* ---------- Partners ---------- */
.partner-tier {
  margin-bottom: 30px;
}
.tier-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.partner-row.muted {
  opacity: 0.85;
}
.partner-logo {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 26px;
  min-width: 160px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.partner-logo:hover {
  border-color: var(--navy);
}

/* ---------- About ---------- */
/* =========================================================
   ABOUT — AUTOMATIC IMAGE SLIDER
   ========================================================= */

.about-image-slider {
  position: relative;

  width: 100%;

  min-height: 500px;

  overflow: hidden;

  border-radius: 22px;

  background: #e9edf2;

  box-shadow: 0 20px 55px rgba(15, 35, 75, 0.12);
}

/* =========================================================
   SLIDES
   ========================================================= */

.about-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;

  visibility: hidden;

  transform: scale(1.04);

  transition: opacity 0.9s ease, visibility 0.9s ease, transform 5s ease;
}

/* Active slide */

.about-slide.active {
  opacity: 1;

  visibility: visible;

  transform: scale(1);
}

/* =========================================================
   IMAGES
   ========================================================= */

.about-slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.about-image-slider::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(6, 18, 38, 0.04) 45%,
    rgba(6, 18, 38, 0.34) 100%
  );
}

/* =========================================================
   EDITION BADGE
   ========================================================= */

.about-image-slider .about-image-badge {
  position: absolute;

  left: 24px;
  bottom: 24px;

  z-index: 5;

  display: flex;
  flex-direction: column;

  padding: 14px 18px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);

  backdrop-filter: blur(10px);
}

.about-image-slider .about-image-badge strong {
  font-size: 25px;

  line-height: 1;

  font-weight: 800;

  color: var(--navy);
}

.about-image-slider .about-image-badge span {
  margin-top: 5px;

  font-size: 11px;

  line-height: 1.2;

  font-weight: 600;

  color: var(--ink-soft);
}

/* =========================================================
   SLIDER DOTS
   ========================================================= */

.about-slider-dots {
  position: absolute;

  right: 24px;
  bottom: 27px;

  z-index: 6;

  display: flex;

  align-items: center;

  gap: 7px;
}

.about-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);

  cursor: pointer;

  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about-dot:hover {
  transform: scale(1.15);
}

.about-dot.active {
  width: 25px;

  border-radius: 999px;

  background: #ffffff;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .about-image-slider {
    min-height: 450px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .about-image-slider {
    min-height: 360px;

    border-radius: 18px;
  }

  .about-image-slider .about-image-badge {
    left: 16px;
    bottom: 16px;

    padding: 11px 14px;
  }

  .about-image-slider .about-image-badge strong {
    font-size: 21px;
  }

  .about-image-slider .about-image-badge span {
    font-size: 10px;
  }

  .about-slider-dots {
    right: 16px;
    bottom: 22px;

    gap: 6px;
  }

  .about-dot {
    width: 7px;
    height: 7px;
  }

  .about-dot.active {
    width: 20px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .about-image-slider {
    min-height: 300px;

    border-radius: 15px;
  }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--navy);
  color: #fff;
}
.stat-item {
  text-align: center;
  padding: 16px;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 2.9rem);
  color: #fff;
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  margin-top: 6px;
  font-size: 0.92rem;
}

/* ---------- Speakers ---------- */

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--line);
}

.speaker {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
}

.speaker:nth-child(4n) {
  border-right: none;
}

.mono {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--navy-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Speaker Organization / Designation */
.speaker-org {
  display: inline-block;
  margin: 2px 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-tint);
  padding: 5px 9px;
  border-radius: 5px;
}

/* Speaker name */
.speaker h3 {
  margin-bottom: 4px;
  font-size: 0.98rem;
  line-height: 1.25;
}

/* Speaker organization description */
.speaker p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-soft);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaker:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .speaker:nth-child(2n) {
    border-right: none;
  }

  .speaker {
    padding: 18px 14px;
  }
}


/* =========================================
   MOBILE — 2 SPEAKERS PER ROW
========================================= */

@media (max-width: 575px) {

  .speaker-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0;
    width: 100%;
  }

  .speaker {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    min-width: 0;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    box-sizing: border-box;
  }

  /* Remove right border from every 2nd card */
  .speaker:nth-child(2n) {
    border-right: none;
  }

  /* Override the desktop 4-column rule */
  .speaker:nth-child(4n) {
    border-right: none;
  }

  .speaker:nth-child(4n-1) {
    border-right: 1px solid var(--line);
  }

  .mono {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .speaker-org {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 5px;
    font-size: 0.62rem;
    line-height: 1.25;
    padding: 4px 6px;
    letter-spacing: 0.025em;
  }

  .speaker h3 {
    font-size: 0.84rem;
    line-height: 1.25;
    margin-bottom: 4px;
    word-break: break-word;
  }

  .speaker p {
    font-size: 0.72rem;
    line-height: 1.4;
    word-break: break-word;
  }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .speaker {
    padding: 13px 8px;
  }

  .speaker h3 {
    font-size: 0.78rem;
  }

  .speaker-org {
    font-size: 0.56rem;
    padding: 3px 5px;
  }

  .speaker p {
    font-size: 0.68rem;
  }

  .mono {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }
}

/* ---------- Themes ---------- */
.theme-item {
  display: flex;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  height: 100%;
  background: var(--paper);
}
.theme-item i {
  color: var(--navy);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.theme-item h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.theme-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Audience ---------- */
/* ==========================================
   WHO SHOULD ATTEND
========================================== */

.attend-section {
    padding: 80px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.attend-section .container {
    max-width: 1320px;
}

/* ==========================================
   MAIN LAYOUT
========================================== */

.attend-wrapper {
    display: grid;
    grid-template-columns: 42% 58%;
    width: 100%;
    min-height: 570px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e6ee;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 34, 68, 0.08);
}

/* ==========================================
   LEFT IMAGE
========================================== */

.attend-image {
    position: relative;
    min-width: 0;
    min-height: 570px;
    overflow: hidden;
    background: #dfe4eb;
}

.attend-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.attend-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 34, 68, 0.02) 20%,
        rgba(0, 20, 55, 0.12) 45%,
        rgba(0, 20, 55, 0.88) 100%
    );
}

.attend-image-content {
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 38px;
    z-index: 2;
}

.attend-image-content span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.attend-image-content h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-head, "Poppins", sans-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
}

/* ==========================================
   RIGHT CONTENT
========================================== */

.attend-content {
    min-width: 0;
    padding: 48px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================
   HEADING
========================================== */

.attend-heading {
    text-align: center;
    margin-bottom: 28px;
}

.attend-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #354a9e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

/* .attend-heading h2 {
    margin: 0;
    color: #101d35;
    font-family: var(--font-head, "Poppins", sans-serif);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
} */

.attend-heading-line {
    width: 48px;
    height: 3px;
    margin: 16px auto 18px;
    border-radius: 10px;
    /* background: #002244; */
}

.attend-heading p {
    max-width: 590px;
    margin: 0 auto;
    color: #657187;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

/* ==========================================
   CIO / CTO / CDO
========================================== */

.attend-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.attend-role {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    padding: 16px 12px;
    border: 1px solid #dce2eb;
    border-radius: 12px;
    background: #f8f9fc;
    transition: all 0.25s ease;
}

.attend-role:hover {
    transform: translateY(-3px);
    border-color: #bfc9da;
    box-shadow: 0 8px 20px rgba(0, 34, 68, 0.08);
}

/* Icon */

.attend-role-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #1c398e;
    color: #ffffff;
}

.attend-role-icon i {
    display: block;
    font-size: 19px;
    line-height: 1;
}

/* Role text */

.attend-role-info {
    min-width: 0;
}

.attend-role-info strong {
    display: block;
    color: #071c38;
    font-family: var(--font-head, "Poppins", sans-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
}

.attend-role-info span {
    display: block;
    margin-top: 4px;
    color: #707b8e;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.25;
}

/* ==========================================
   DIVIDER
========================================== */

.attend-divider {
    width: 100%;
    height: 1px;
    margin: 28px 0 20px;
    background: #e3e7ed;
}

/* ==========================================
   BAND
========================================== */

.attend-band {
    position: relative;
    margin: 0 0 16px;
    padding-left: 13px;
    color: #182237;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.attend-band::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 3px;
    height: 20px;
    border-radius: 4px;
    background: #002244;
}

/* ==========================================
   TAGS
========================================== */

.attend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.attend-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid #dce2eb;
    border-radius: 8px;
    background: #ffffff;
    color: #273247;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.25s ease;
}

.attend-tag i {
    color: #354a9e;
    font-size: 13px;
    line-height: 1;
}

.attend-tag:hover {
    border-color: #354a9e;
    background: #f8f9fc;
    transform: translateY(-2px);
}

/* ==========================================
   LARGE TABLET
========================================== */

@media (max-width: 1100px) {

    .attend-wrapper {
        grid-template-columns: 40% 60%;
    }

    .attend-content {
        padding: 40px 32px;
    }

    /* .attend-heading h2 {
        font-size: 36px;
    } */

    .attend-roles {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   TABLET / MOBILE
========================================== */

@media (max-width: 767.98px) {

    .attend-section {
        padding: 55px 0;
    }

    .attend-wrapper {
        display: block;
        min-height: auto;
        border-radius: 18px;
    }

    .attend-image {
        height: 400px;
        min-height: 400px;
    }

    .attend-content {
        padding: 35px 20px;
    }

    /* ==========================================
       MOBILE ROLE CARDS
    ========================================== */

    .attend-roles {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .attend-role {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    /* Third card centered */
    .attend-role:nth-child(3) {
        grid-column: 1 / -1;
        width: calc(50% - 6px);
        justify-self: center;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .attend-content {
        padding: 30px 16px;
    }

    .attend-roles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .attend-role {
        padding: 12px 9px;
        gap: 8px;
    }

    .attend-role-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .attend-role-icon i {
        font-size: 17px;
    }

    .attend-role-info strong {
        font-size: 15px;
    }

    .attend-role-info span {
        font-size: 8px;
    }

    .attend-role:nth-child(3) {
        width: calc(50% - 5px);
    }

}

/* ---------- Attend ---------- */
.attend-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  height: 100%;
  background: var(--paper);
}
.attend-item h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.attend-item p {
  margin: 0;
  font-size: 0.92rem;
}
.attend-item-navy {
  background: var(--navy);
  border-color: var(--navy);
}
.attend-item-navy h3,
.attend-item-navy p {
  color: #fff;
}

/* ---------- Awards ---------- */
/* =========================================================
   AWARDS — MODERN PREMIUM SECTION
   ========================================================= */

.awards {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 85% 10%,
      rgba(255, 255, 255, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(255, 255, 255, 0.045),
      transparent 30%
    ),
    var(--navy-deep);
  color: #fff;
}

/* subtle background detail */
.awards::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.awards::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -150px;
  bottom: -150px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.awards .container {
  position: relative;
  z-index: 2;
}


.awards-header {
    display: block;
    width: 100%;
    margin-bottom: 55px;
}

/* =========================================================
   TITLE
========================================================= */


.awards-heading {
    width: 100%;
    max-width: 900px;
    margin: 0 0 25px;
    text-align: left;
}

.awards-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--amber);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.awards-eyebrow i {
    font-size: 0.95rem;
}

.awards-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.awards-heading h2 span {
    color: var(--amber);
}

/* Line below title */

.awards-heading::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin: 18px 0 0;
    border-radius: 10px;
    background: var(--amber);
}

/* =========================================================
   INTRO TEXT - FULL WIDTH LEFT ALIGNED
========================================================= */

/* =========================================================
   INTRO TEXT - FULL WIDTH LEFT ALIGNED
========================================================= */

.awards-intro {
    width: 100%;
    max-width: 1150px;
    margin: 0;
    padding: 0;
    border-left: none;
    text-align: left;
}

.awards-intro p {
    width: 100%;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.98rem;
    line-height: 1.75;
}

.awards-intro p:last-child {
    margin-bottom: 0;
}


.award-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.award-card {
  position: relative;
  min-height: 136px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease,
    box-shadow 0.3s ease;
}

.award-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.award-card:hover::before {
  transform: scaleX(1);
}

.award-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.award-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 193, 7, 0.28);
  border-radius: 11px;
  background: rgba(255, 193, 7, 0.08);
  color: var(--amber);
  font-size: 1.15rem;
}

.award-card h3 {
  max-width: 300px;
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 650;
}

.award-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

/* =========================================================
   NOMINATION CTA
   ========================================================= */

.nominate-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 50px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.nominate-content {
  min-width: 0;
}

.nominate-label {
  display: block;
  margin-bottom: 7px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nominate-cta h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.35rem;
}

.nominate-cta p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.award-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid var(--amber);
  border-radius: 7px;
  background: var(--amber);
  color: #111;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.award-cta i {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.award-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.award-cta:hover i {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .awards-header {
        margin-bottom: 40px;
    }

    .awards-heading {
        max-width: 750px;
    }

    .awards-intro {
        max-width: 850px;
    }

    .award-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {

    .awards-header {
        margin-bottom: 35px;
    }

    .awards-heading {
        margin-bottom: 20px;
    }

    .awards-heading h2 {
        font-size: 2rem;
    }

    .awards-intro p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .award-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Sponsor ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  font-weight: 500;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--navy);
  font-weight: 700;
}

.mini-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  height: 100%;
  background: var(--paper);
}
.mini-feature i {
  color: var(--navy);
  font-size: 1.25rem;
}
.mini-feature h3 {
  font-size: 0.98rem;
  margin: 12px 0 6px;
}
.mini-feature p {
  font-size: 0.86rem;
  margin: 0;
}

.audience-fact {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--paper-tint);
}
.audience-fact span {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
}
.audience-fact p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.prev-partners {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
/* =========================================================
   AUDIENCE — CENTERED LAYOUT
   ========================================================= */

#audience {
  text-align: center;
}

#audience .section-head {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

#audience .section-head .kicker,
#audience .section-head h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#audience .audience-panel {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

#audience .audience-roles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

#audience .audience-roles span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 13px 24px;
  text-align: center;
}

#audience .audience-band {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}

#audience .audience-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}

#audience .audience-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Mobile */
@media (max-width: 575px) {
  #audience .section-head {
    margin-bottom: 32px;
  }

  #audience .audience-roles {
    gap: 10px;
  }

  #audience .audience-roles span {
    min-width: 90px;
    padding: 11px 18px;
  }

  #audience .audience-tags {
    gap: 9px;
  }
}

/* ---------- Pricing ---------- */
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 100%;
  background: var(--paper);
}
.price-card-featured {
  border: 2px solid var(--navy);
}
.price-phase {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--navy);
}
.price-card h3,
.price-card .price-until {
}
.price-until {
  color: var(--ink-faint);
  font-size: 0.88rem;
  margin: 6px 0 18px;
}
.price-amount {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--ink);
  margin-bottom: 20px;
}
.price-amount small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-faint);
  margin-left: 4px;
}
.price-lines {
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}
.price-lines > div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.price-lines dt {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.price-lines dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Testimonials ---------- */
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  height: 100%;
  background: var(--paper);
}
.quote-card p {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.quote-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
/* =========================================================
   TESTIMONIAL ARROWS — MOBILE CENTER FIX
   ========================================================= */
.testimonial-carousel .testimonial-control {
  top: 43%;
}

@media (max-width: 767px) {
  .testimonial-carousel {
    position: relative;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 55px;
  }

  .testimonial-carousel .carousel-inner {
    overflow: hidden;
  }

  .testimonial-carousel .testimonial-control {
    position: absolute;
    top: 45%;
    bottom: auto;

    width: 38px;
    height: 38px;

    margin: 0;
    padding: 0;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    z-index: 5;
  }

  /* Previous arrow */
  .testimonial-carousel .carousel-control-prev {
    left: 3px;
  }

  /* Next arrow */
  .testimonial-carousel .carousel-control-next {
    right: 3px;
  }

  /* Arrow circle */
  .testimonial-carousel .testimonial-arrow {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--navy);
    color: #fff;

    font-size: 15px;
    line-height: 1;

    box-shadow: 0 6px 18px rgba(15, 33, 88, 0.14);
  }

  .testimonial-carousel .testimonial-arrow i {
    display: block;
    line-height: 1;
  }

  /* Keep indicators below the card */
  .testimonial-carousel .testimonial-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    margin: 0;
    justify-content: center;
  }
}
/* ---------- Highlights (photography-free) ---------- */
/* .moment {
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px 18px; text-align: center;
  background: var(--paper); height: 100%;
}
.moment i { font-size: 1.4rem; color: var(--navy); }
.moment span { display: block; margin-top: 12px; font-weight: 500; font-size: 0.88rem; color: var(--ink); } */
/* =========================================================
   EVENT HIGHLIGHTS
   ========================================================= */

.highlights-section {
  position: relative;
  overflow: hidden;
}

.highlights-section .section-head {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

/* =========================================================
   COLLAGE CONTAINER — DESKTOP
   ========================================================= */

.event-collage {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1fr
    1.55fr
    1.55fr
    1fr;

  grid-template-rows:
    210px
    210px
    210px;

  gap: 10px;

  padding: 10px;

  box-sizing: border-box;

  background: #ffffff;

  border: 1px solid rgba(20, 40, 80, 0.08);

  border-radius: 24px;

  box-shadow: 0 22px 65px rgba(15, 35, 75, 0.1);
}

/* =========================================================
   IMAGE BOX
   ========================================================= */

.collage-image {
  position: relative;

  min-width: 0;
  min-height: 0;

  overflow: hidden;

  background: #e8edf3;

  border-radius: 14px;

  isolation: isolate;
}

/* =========================================================
   IMAGE
   ========================================================= */

.collage-image > img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1);

  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}

/* =========================================================
   IMAGE POSITIONS
   ========================================================= */

.collage-1 {
  grid-column: 1;
  grid-row: 1;
}

.collage-2 {
  grid-column: 1;
  grid-row: 2;
}

.collage-3 {
  grid-column: 1;
  grid-row: 3;
}

/* CENTER */

.collage-center {
  grid-column: 2 / 4;
  grid-row: 1 / 3;

  border-radius: 16px;
}

/* RIGHT */

.collage-5 {
  grid-column: 4;
  grid-row: 1;
}

.collage-6 {
  grid-column: 4;
  grid-row: 2;
}

.collage-7 {
  grid-column: 4;
  grid-row: 3;
}

/* BOTTOM */

.collage-8 {
  grid-column: 2;
  grid-row: 3;
}

.collage-9 {
  grid-column: 3;
  grid-row: 3;
}

/* =========================================================
   DARK OVERLAY
   ========================================================= */

.collage-image::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(7, 20, 40, 0) 22%,
    rgba(7, 20, 40, 0.78) 100%
  );

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.35s ease;
}

.collage-image:hover::before {
  opacity: 1;
}

/* =========================================================
   HOVER IMAGE ZOOM
   ========================================================= */

.collage-image:hover > img {
  transform: scale(1.09);

  filter: brightness(0.8);
}

.collage-center:hover > img {
  transform: scale(1.07);
}

/* =========================================================
   IMAGE TITLE
   ========================================================= */

.collage-title {
  position: absolute;

  left: 20px;
  right: 70px;
  bottom: 18px;

  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  opacity: 0;

  transform: translateY(12px);

  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
}

.collage-image:hover .collage-title {
  opacity: 1;

  transform: translateY(0);
}

.collage-title span {
  margin-bottom: 5px;

  font-size: 10px;
  line-height: 1.2;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.72);
}

.collage-title strong {
  font-size: 17px;
  line-height: 1.25;

  font-weight: 700;

  color: #ffffff;
}

/* =========================================================
   ZOOM BUTTON
   ========================================================= */

.collage-zoom {
  position: absolute;

  top: 50%;
  left: 50%;

  z-index: 5;

  width: 48px;
  height: 48px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.97);

  color: var(--navy);

  font-size: 18px;

  line-height: 1;

  cursor: pointer;

  opacity: 0;

  transform: translate(-50%, -50%) scale(0.65);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);

  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease,
    color 0.2s ease;
}

/* Show zoom icon */

.collage-image:hover .collage-zoom {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

/* Zoom button hover */

.collage-zoom:hover {
  background: var(--navy);

  color: #ffffff;

  transform: translate(-50%, -50%) scale(1.08);
}

/* =========================================================
   FIXED ZOOM VIEWER
   ========================================================= */

.highlight-zoom-viewer {
  position: fixed !important;

  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  width: 100vw;
  height: 100vh;

  z-index: 999999 !important;

  display: flex;

  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  padding: 70px 40px 40px;

  background: rgba(4, 13, 27, 0.93);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* OPEN */

.highlight-zoom-viewer.is-open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

/* =========================================================
   ZOOM IMAGE WRAPPER
   ========================================================= */

.highlight-zoom-content {
  display: flex;

  align-items: center;
  justify-content: center;

  width: auto;
  max-width: 75vw;
  max-height: 72vh;
}

/* =========================================================
   ZOOM IMAGE
   ========================================================= */

.highlight-zoom-content img {
  display: block;

  width: auto;
  height: auto;

  max-width: 75vw;
  max-height: 68vh;

  object-fit: contain;

  border-radius: 12px;

  background: #ffffff;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);

  transform: scale(0.94);

  transition: transform 0.25s ease;
}

.highlight-zoom-viewer.is-open .highlight-zoom-content img {
  transform: scale(1);
}

/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.highlight-zoom-close {
  position: fixed !important;

  top: 20px;
  right: 24px;

  z-index: 1000000 !important;

  width: 44px;
  height: 44px;

  padding: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 0;

  border-radius: 50%;

  background: #ffffff;

  color: var(--navy);

  font-size: 15px;

  line-height: 1;

  cursor: pointer;

  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);

  transition: transform 0.2s ease, background 0.2s ease;
}

.highlight-zoom-close:hover {
  background: #f1f4f8;

  transform: scale(1.07);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
  .event-collage {
    grid-template-columns:
      1fr
      1.4fr
      1.4fr
      1fr;

    grid-template-rows:
      180px
      180px
      180px;

    gap: 8px;

    padding: 8px;

    border-radius: 20px;
  }

  .collage-image {
    border-radius: 11px;
  }
}

/* =========================================================
   MOBILE
   ALL 9 IMAGES ONE BELOW ANOTHER
   ========================================================= */

@media (max-width: 767px) {
  .highlights-section .section-head {
    margin-bottom: 28px;
  }

  /* Turn collage into vertical stack */

  .event-collage {
    display: flex;

    flex-direction: column;

    width: 100%;

    gap: 12px;

    padding: 7px;

    border-radius: 18px;
  }

  /* ALL 9 SAME SIZE */

  .collage-image,
  .collage-center,
  .collage-1,
  .collage-2,
  .collage-3,
  .collage-5,
  .collage-6,
  .collage-7,
  .collage-8,
  .collage-9 {
    width: 100%;

    height: 230px;

    min-height: 230px;

    flex: 0 0 230px;

    grid-column: auto;
    grid-row: auto;

    border-radius: 12px;
  }

  /* Mobile zoom */

  .collage-image:hover > img {
    transform: scale(1.07);
  }

  /* Title visible on mobile */

  .collage-title {
    left: 15px;
    right: 60px;
    bottom: 15px;

    opacity: 1;

    transform: none;
  }

  .collage-title span {
    font-size: 8px;

    letter-spacing: 1.2px;
  }

  .collage-title strong {
    font-size: 14px;
  }

  /* Zoom button visible on mobile */

  .collage-zoom {
    width: 38px;
    height: 38px;

    opacity: 1;

    transform: translate(-50%, -50%) scale(0.92);

    font-size: 14px;
  }

  .collage-image:hover .collage-zoom {
    transform: translate(-50%, -50%) scale(1);
  }

  /* Zoom viewer */

  .highlight-zoom-viewer {
    padding: 70px 18px 30px;
  }

  .highlight-zoom-content {
    max-width: 88vw;

    max-height: 68vh;
  }

  .highlight-zoom-content img {
    max-width: 88vw;

    max-height: 60vh;

    border-radius: 9px;
  }

  /* Close */

  .highlight-zoom-close {
    top: 14px;
    right: 14px;

    width: 40px;
    height: 40px;

    font-size: 13px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .event-collage {
    gap: 10px;

    padding: 5px;
  }

  /* Same size for all 9 */

  .collage-image,
  .collage-center,
  .collage-1,
  .collage-2,
  .collage-3,
  .collage-5,
  .collage-6,
  .collage-7,
  .collage-8,
  .collage-9 {
    height: 200px;

    min-height: 200px;

    flex-basis: 200px;

    border-radius: 10px;
  }

  .collage-title {
    left: 12px;
    bottom: 12px;
  }

  .collage-title strong {
    font-size: 13px;
  }

  .collage-zoom {
    width: 34px;
    height: 34px;

    font-size: 12px;
  }

  .highlight-zoom-content img {
    max-width: 90vw;
    max-height: 56vh;
  }

  .highlight-zoom-close {
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   FOOTER — WHITE VERSION
   ========================================================= */

.footer {
  position: relative;

  padding: 70px 0 25px;

  background: #ffffff;

  color: #08172f;

  border-top: 2px solid #08172f;
}

/* =========================================================
   MAIN FOOTER LAYOUT
   ========================================================= */

.footer-main {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(380px, 0.85fr);

  gap: 90px;

  padding-bottom: 55px;
}

/* =========================================================
   LEFT — ABOUT
   ========================================================= */

.footer-about {
  max-width: 680px;
}

/* UBS LOGO */

.footer-logo {
  margin-bottom: 26px;
}

.footer-logo img {
  display: block;

  width: auto;
  max-width: 311px;
  height: 100px;

  object-fit: contain;
  object-position: left center;
}

/* About title */

.footer-about h3 {
  margin: 0 0 16px;

  color: #08172f;

  font-size: 1.25rem;
  font-weight: 700;
}

/* About text */

.footer-about > p {
  margin: 0;

  max-width: 680px;

  color: #08172f;

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-social {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 28px;
}

.footer-social a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #08172f;

  border-radius: 50%;

  background: #ffffff;

  color: #08172f;

  text-decoration: none;

  font-size: 15px;

  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease;
}

.footer-social a:hover {
  background: #08172f;

  color: #ffffff;

  border-color: #08172f;

  transform: translateY(-2px);
}

/* =========================================================
   RIGHT — CONTACT
   ========================================================= */

.footer-contact {
  padding-left: 45px;

  /* border-left: 1px solid rgba(8, 23, 47, 0.18); */
}

.footer-contact-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #08172f;

  font-size: 11px;
  line-height: 1;

  font-weight: 700;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.footer-contact h3 {
  margin: 0;

  max-width: 480px;

  color: #08172f;

  font-size: 24px;

  line-height: 1.35;

  font-weight: 700;
}

.footer-contact-subtitle {
  margin: 7px 0 28px;

  color: #08172f;

  font-size: 14px;
}

/* =========================================================
   CONTACT PERSON
   ========================================================= */

.footer-contact-person {
  padding: 20px 0;

  /* border-top: 1px solid rgba(8, 23, 47, 0.14); */
}

.footer-contact-person:last-child {
  padding-bottom: 0;
}

.footer-contact-person h4 {
  margin: 0 0 4px;

  color: #08172f;

  font-size: 17px;

  line-height: 1.3;

  font-weight: 700;
}

.footer-contact-role {
  display: block;

  margin-bottom: 13px;

  color: #08172f;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.2px;
}

/* Contact lines */

.footer-contact-line {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-top: 8px;

  color: #08172f;

  font-size: 13px;

  line-height: 1.5;

  text-decoration: none;

  transition: opacity 0.2s ease;
}

.footer-contact-line i {
  flex: 0 0 auto;

  margin-top: 2px;

  color: #08172f;

  font-size: 14px;
}

.footer-contact-line strong {
  color: #08172f;

  font-weight: 700;
}

.footer-contact-line:hover {
  color: #08172f;

  opacity: 0.7;
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid rgba(8, 23, 47, 0.15);

  color: #08172f;

  font-size: 11px;

  line-height: 1.5;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {
  .footer {
    padding-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }

  .footer-contact {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 45px 0 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 42px;

    padding-bottom: 40px;
  }

  .footer-about {
    max-width: none;
  }

  .footer-logo img {
    height: 55px;

    max-width: 190px;
  }

  .footer-about > p {
    font-size: 13px;

    line-height: 1.7;
  }

  .footer-contact {
    padding-left: 0;

    padding-top: 35px;

    border-left: 0;

    border-top: 1px solid rgba(8, 23, 47, 0.16);
  }

  .footer-contact h3 {
    font-size: 21px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
  }
}

@media (max-width: 420px) {
  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 37px;
    height: 37px;
  }

  .footer-contact h3 {
    font-size: 19px;
  }

  .footer-contact-line {
    font-size: 12px;
  }
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  padding-top: 22px;

  border-top: 1px solid rgba(8, 23, 47, 0.15);

  color: #08172f;

  font-size: 11px;

  line-height: 1.5;
}

/* =========================================================
   SOCIAL MEDIA — BOTTOM
   ========================================================= */

.footer-bottom .footer-social {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 9px;

  margin: 0;
}

.footer-bottom .footer-social a {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #08172f;

  border-radius: 50%;

  background: #ffffff;

  color: #08172f;

  text-decoration: none;

  font-size: 14px;

  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-bottom .footer-social a:hover {
  background: #08172f;

  color: #ffffff;

  transform: translateY(-2px);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 18px;
  }

  .footer-bottom .footer-social {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .footer-bottom .footer-social a {
    width: 35px;
    height: 35px;

    font-size: 13px;
  }
}
/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }
  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 12px;
  }
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .speaker:nth-child(4n) {
    border-right: 1px solid var(--line);
  }
  .speaker:nth-child(2n) {
    border-right: none;
  }
  .footer-bottom-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .speaker:nth-child(2n) {
        border-right: 1px solid var(--line);
    }

    .speaker {
        border-right: none !important;
    }

    /* ==========================================
       NOMINATION CTA - MOBILE
    ========================================== */

    .nominate-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 24px 20px;
    }

    .nominate-content {
        width: 100%;
        text-align: left;
    }

    .nominate-content h3 {
        margin: 0 0 8px;
        line-height: 1.25;
    }

    .nominate-content p {
        margin: 0;
        line-height: 1.6;
    }

    .nominate-cta .award-cta {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
    }

}

/* ==========================================================================
   2026 VISUAL REFRESH
   ========================================================================== */
.hero-image {
  position: relative;
  color: #fff;
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: 3px 0 3px;
  border-bottom: 0;
  background: url("images/bgbanner.png") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(8,18,48,.94) 0%, rgba(10,25,60,.78) 48%, rgba(8,18,48,.42) 100%); */
}
.hero-image h1,
.hero-image .hero-lead,
.hero-image .meta-item {
  color: #fff;
}
.hero-image .hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}
.hero-image .meta-item {
  color: #0e0b47;
}
.hero-image .meta-item i {
  color: #0e0b47;
}
.hero-panel-glass {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.hero-panel-glass .hero-panel-edition,
.hero-panel-glass .hero-panel-label,
.hero-panel-glass .hero-panel-stats dt,
.hero-panel-glass .hero-panel-stats dd {
  color: #fff;
}
.hero-panel-glass .hero-panel-stats,
.hero-panel-glass .hero-panel-stats > div {
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-light-solid {
  background: #1c398e;
  color: #ffffff;
  border-color: #ffffff;
  font-size: 18px;
}
.btn-light-solid:hover {
  background: #0e0b47;
  color: #ffffff;
  border-color: #ffffff;
}

/* Partners */
.partners-section {
  background: #fff;
}
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.partner-logo {
  min-width: 0;
  min-height: 100px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15, 33, 88, 0.045);
}
.partner-logo:hover {
  border-color: rgba(28, 57, 142, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 33, 88, 0.09);
}
.partner-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.partner-logo strong,
.partner-logo span {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--ink);
}
.logo-cloud-previous {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.logo-cloud-previous .partner-logo {
  min-height: 86px;
}


.about-section {
  overflow: hidden;
}


.about-content {
  position: relative;

  padding-left: 12px;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.about-kicker-line {
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--navy);

  border-radius: 999px;
}

.about-kicker .kicker {
  margin: 0;
}

.about-title {
  max-width: 650px;

  margin: 0 0 24px;

  color: var(--ink);

  font-family: var(--font-head);

  font-size: clamp(2.2rem, 3.4vw, 3.15rem);

  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -1px;
}


.about-intro {
  max-width: 670px;

  margin: 0 0 3px;

  color: var(--ink);

  font-size: 1rem;

  line-height: 1.85;

  font-weight: 500;
}

.about-content .pull-quote {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 16px;

  max-width: 690px;

  margin: 6px 0;

  padding: 23px 24px;

  box-sizing: border-box;

  background:
    linear-gradient(
      135deg,
      #f8f9fc 0%,
      #f1f4f9 100%
    );

  border: 1px solid rgba(14, 33, 76, 0.08);

  border-left: 4px solid var(--navy);

  border-radius: 0 16px 16px 0;

  box-shadow:
    0 12px 32px rgba(15, 33, 88, 0.055);
}


/* Quote icon circle */

.pull-quote-mark {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  box-shadow:
    0 8px 20px rgba(15, 33, 88, 0.14);
}

.pull-quote-text {
  padding-top: 1px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.94rem;
  line-height: 1.78;
  font-weight: 500;
}

.about-content > p:not(.kicker):not(.about-intro) {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.84;
}

.about-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-cta .btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 24px;

  border-radius: 10px;

  font-size: 0.9rem;

  font-weight: 600;

  box-shadow:
    0 10px 25px rgba(15, 33, 88, 0.11);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.about-cta .btn i {
  font-size: 15px;

  transition:
    transform 0.2s ease;
}


.about-cta .btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 32px rgba(15, 33, 88, 0.16);
}


.about-cta .btn:hover i {
  transform: translateX(4px);
}
.about-image-slider {
    position: relative;
    width: 100%;
    height: 620px; /* increase this for a taller image */
    overflow: hidden;
    border-radius: 18px;
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.about-slide.active {
    opacity: 1;
    visibility: visible;
}

.about-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   TABLET
   ========================================================= */

/* =========================================================
   ABOUT SECTION - MOBILE FIX
========================================================= */

@media (max-width: 991px) {
    .about-section {
        overflow: hidden;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .about-title {
        font-size: 2.55rem;
    }

    .about-image-slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .about-slide {
        width: 100%;
        max-width: 100%;
    }

    .about-slide img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-section {
        width: 100%;
        max-width: 100%;
        padding: 50px 0;
        overflow: hidden;
    }

    .about-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }

    .about-section .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 30px;
        margin-left: 0;
        margin-right: 0;
    }

    .about-section .row > * {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /* IMAGE */

    .about-image-slider {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 380px;
        min-height: 380px;
        margin: 0;
        overflow: hidden;
        border-radius: 15px;
    }

    .about-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .about-slide img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* CONTENT */

    .about-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    .about-title {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
        font-size: 2.15rem;
        line-height: 1.15;
        letter-spacing: -0.6px;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .about-intro {
        width: 100%;
        max-width: 100%;
        margin: 0 0 22px;
        font-size: 0.94rem;
        line-height: 1.76;
        overflow-wrap: break-word;
    }

    .about-content > p {
        width: 100%;
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.75;
        overflow-wrap: break-word;
        word-break: normal;
    }

    /* PULL QUOTE */

    .about-content .pull-quote {
        display: flex;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 22px 0;
        padding: 17px;
        gap: 11px;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: 0 12px 12px 0;
    }

    .pull-quote-mark {
        width: 34px;
        height: 34px;
        min-width: 34px;
        max-width: 34px;
        flex: 0 0 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .pull-quote-text {
        min-width: 0;
        width: auto;
        max-width: 100%;
        font-size: 0.86rem;
        line-height: 1.7;
        overflow-wrap: break-word;
        word-break: normal;
    }

    /* CTA */

    .about-cta {
        width: 100%;
        max-width: 100%;
        margin-top: 22px;
        padding-top: 18px;
        box-sizing: border-box;
    }

    .about-cta .btn {
        max-width: 100%;
        white-space: normal;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-section {
        padding: 40px 0;
    }

    .about-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-image-slider {
        height: 330px;
        min-height: 330px;
        border-radius: 13px;
    }

    .about-title {
        font-size: 1.9rem;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .about-intro {
        font-size: 0.9rem;
        line-height: 1.72;
        margin-bottom: 20px;
    }

    .about-content > p {
        font-size: 0.86rem;
        line-height: 1.72;
    }

    .about-content .pull-quote {
        width: 100%;
        margin: 20px 0;
        padding: 15px;
        gap: 9px;
    }

    .pull-quote-mark {
        width: 31px;
        height: 31px;
        min-width: 31px;
        max-width: 31px;
        flex-basis: 31px;
        font-size: 13px;
    }

    .pull-quote-text {
        font-size: 0.83rem;
        line-height: 1.68;
    }

    .about-cta {
        margin-top: 20px;
        padding-top: 16px;
    }

    .about-cta .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}
/* Leaders */
/* =========================
   LEADERSHIP GRID
========================= */

/* =========================
   SPEAKERS GRID
========================= */

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.leader-card {
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #6b6a6a;
  box-sizing: border-box;
}

.leader-photo {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #fff;
}

.leader-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.leader-info {
  position: relative;
  padding: 14px 16px 16px;
  text-align: center;
  min-width: 0;
}

.leader-initials {
  width: 42px;
  height: 42px;
  margin: -35px auto 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 2;

  border-radius: 50%;
  background: #1c398e;
  color: #fff;

  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);

  box-shadow: 0 5px 15px rgba(15, 33, 88, 0.18);
}

.leader-initials i {
  font-size: 19px;
}

.leader-info h3 {
  margin: 4px 0 5px;
  padding: 0;

  font-size: 1.05rem;
  line-height: 1.25;

  overflow-wrap: break-word;
}

.leader-info p {
  margin: 0;
  padding: 0;

  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);

  overflow-wrap: break-word;
}

.leader-info .speaker-org {
  display: inline-block;
  max-width: 100%;
  margin-top: 7px;

  padding: 4px 8px;

  border-radius: 999px;

  background: rgba(28, 57, 142, 0.08);
  color: #1c398e;

  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;

  overflow-wrap: break-word;
}


/* =========================
   VIEW ALL BUTTON
   HIDDEN ON DESKTOP
========================= */

.speakers-toggle-wrap {
  display: none;
  justify-content: center;
  margin-top: 25px;
}

.speakers-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.toggle-hide {
  display: none;
}

.speakers-toggle-btn i {
  transition: transform 0.3s ease;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

}


/* =========================
   MOBILE
   2 SPEAKERS PER ROW
========================= */

@media (max-width: 575px) {

  .leader-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .leader-card {
    width: 100%;
    min-width: 0;
    border-radius: 13px;
  }

  .leader-photo {
    width: 100%;
    height: auto;
  }

  .leader-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .leader-info {
    padding: 11px 8px 13px;
  }

  .leader-initials {
    width: 36px;
    height: 36px;
    margin: -29px auto 7px;
  }

  .leader-initials i {
    font-size: 16px;
  }

  .leader-info h3 {
    margin: 3px 0 4px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .leader-info p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .leader-info .speaker-org {
    font-size: 0.56rem;
    padding: 4px 6px;
    margin-top: 6px;
  }


  /* Show button only on mobile */

  .speakers-toggle-wrap {
    display: flex;
  }


  /* Initially show only first 4 */

  .leader-grid .leader-card:nth-child(n + 5) {
    display: none;
  }


  /* After clicking View All */

  .leader-grid.show-all .leader-card {
    display: block;
  }


  /* Button changes to Show Less */

  .speakers-toggle-btn.active .toggle-show {
    display: none;
  }

  .speakers-toggle-btn.active .toggle-hide {
    display: inline;
  }

  .speakers-toggle-btn.active i {
    transform: rotate(180deg);
  }

}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 380px) {

  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px;
  }

  .leader-card {
    border-radius: 11px;
  }

  .leader-info {
    padding: 9px 6px 11px;
  }

  .leader-initials {
    width: 32px;
    height: 32px;
    margin: -25px auto 6px;
  }

  .leader-initials i {
    font-size: 14px;
  }

  .leader-info h3 {
    font-size: 0.75rem;
  }

  .leader-info p {
    font-size: 0.64rem;
  }

  .leader-info .speaker-org {
    font-size: 0.52rem;
    padding: 3px 5px;
  }

}
/* Themes */
.themes-section {
  background:#f7f9fc;
}
.theme-card {
  position: relative;
  height: 100%;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(15, 33, 88, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.theme-card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 57, 142, 0.4);
}
.theme-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy-tint);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 24px;
}
.theme-number {
  position: absolute;
  top: 25px;
  right: 26px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.theme-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 9px;
}
.theme-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* Testimonials */
/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials-section {
  background: #f7f9fc;
  overflow: hidden;
}

/* =========================================================
   CAROUSEL WRAPPER
   ========================================================= */

.testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 70px 65px;
}

/*
  IMPORTANT:
  Bootstrap keeps two slides active during its transition.
  overflow:hidden prevents the outgoing/incoming slide
  from appearing outside the carousel.
*/
.testimonial-carousel .carousel-inner {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

/* =========================================================
   CAROUSEL ITEMS
   ========================================================= */

.testimonial-carousel .carousel-item {
  width: 100%;
}

/* =========================================================
   TESTIMONIAL CARD
   ========================================================= */

.testimonial-card {
  position: relative;
  min-height: 252px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 55px 80px;

  text-align: center;

  background: radial-gradient(
      circle at 50% 0%,
      rgba(35, 73, 154, 0.07),
      transparent 45%
    ),
    #fff;

  border: 1px solid rgba(20, 40, 80, 0.08);
  border-radius: 24px;

  box-shadow: 0 20px 55px rgba(15, 35, 75, 0.08);
}

/* =========================================================
   QUOTE ICON
   ========================================================= */

.testimonial-quote-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 16px;

  background: #edf3fa;
  color: #075a91;

  font-size: 1.8rem;
}

.testimonial-quote-icon i {
  line-height: 1;
}

/* =========================================================
   QUOTE TEXT
   ========================================================= */

.testimonial-card blockquote {
  max-width: 720px;

  margin: 0 0 30px;

  color: #11165a;

  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 600;

  line-height: 1.45;
  letter-spacing: -0.02em;
}

/* =========================================================
   PERSON
   ========================================================= */

.testimonial-person {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-align: left;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #075a91;
  color: #fff;

  font-size: 0.72rem;
  font-weight: 800;
}

.testimonial-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-details strong {
  color: #11165a;
  font-size: 0.88rem;
  font-weight: 750;
}

.testimonial-details span {
  color: #7b8799;
  font-size: 0.75rem;
}

/* =========================================================
   ARROWS
   ========================================================= */

.testimonial-control {
  width: 48px;
  height: 48px;

  top: 50%;
  bottom: auto;

  margin-top: -24px;

  opacity: 1;

  z-index: 5;
}

.testimonial-control.carousel-control-prev {
  left: 5px;
}

.testimonial-control.carousel-control-next {
  right: 5px;
}

.testimonial-arrow {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #11165a;
  color: #fff;

  font-size: 1rem;

  box-shadow: 0 8px 20px rgba(17, 22, 90, 0.18);

  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-control:hover .testimonial-arrow {
  transform: scale(1.06);
  background: #075a91;
  color: #fff;
  box-shadow: 0 10px 25px rgba(7, 90, 145, 0.22);
}

/* =========================================================
   INDICATORS
   ========================================================= */

.testimonial-indicators {
  position: absolute;

  bottom: 5px;
  left: 0;
  right: 0;

  width: auto;

  margin: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 7px;
}

.testimonial-indicators [data-bs-target] {
  width: 24px;
  height: 4px;

  margin: 0;

  border: 0;
  border-radius: 10px;

  background: #c7d0dc;

  opacity: 1;

  transition: width 0.3s ease, background 0.3s ease;
}

.testimonial-indicators .active {
  width: 38px;
  background: #11165a;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 991px) {
  .testimonial-carousel {
    padding-left: 60px;
    padding-right: 60px;
  }

  .testimonial-card {
    min-height: 310px;
    padding: 50px 60px;
  }

  .testimonial-control.carousel-control-prev {
    left: 0;
  }

  .testimonial-control.carousel-control-next {
    right: 0;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 575px) {
  .testimonial-carousel {
    padding: 0 0 55px;
  }

  .testimonial-carousel .carousel-inner {
    border-radius: 18px;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 40px 25px;
    border-radius: 18px;
  }

  .testimonial-quote-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 18px;

    border-radius: 13px;
    font-size: 1.5rem;
  }

  .testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.45;
    margin-bottom: 25px;
  }

  /*
    Keep arrows outside the actual card on mobile.
  */
  .testimonial-control {
    width: 38px;
    height: 38px;

    top: auto;
    bottom: 47px;

    margin-top: 0;
  }

  .testimonial-control.carousel-control-prev {
    left: 15px;
  }

  .testimonial-control.carousel-control-next {
    right: 15px;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .testimonial-indicators {
    bottom: 7px;
  }
}
/* Existing cards get a softer premium feel */
.price-card,
.attend-item,
.mini-feature,
.contact-card {
  border-radius: 16px;
}
.btn {
  transition: all 0.2s ease;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-image {
    min-height: 620px;
    padding: 80px 0;
  }
  .logo-cloud {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-cloud-previous {
    grid-template-columns: repeat(3, 1fr);
  }
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-image-wrap img {
    height: 430px;
  }
}
@media (max-width: 575px) {
  .hero-image {
    min-height: auto;
    padding: 72px 0;
  }
  .hero-panel-glass {
    margin-top: 8px;
  }
  .logo-cloud,
  .logo-cloud-previous {
    grid-template-columns: 1fr 1fr;
  }
  .leader-grid {
    grid-template-columns: 1fr;
  }
  .leader-photo {
    height: 310px;
  }
  .testimonial-carousel {
    padding-left: 42px;
    padding-right: 42px;
  }
  .quote-card-large {
    padding: 45px 24px;
    min-height: 280px;
  }
  .about-image-wrap {
    padding-right: 12px;
  }
  .about-image-wrap img {
    height: 340px;
  }
}

/* PARTNERS FINAL UI TUNING */
#partners .section-head,
#partners .section-title,
#partners .section-subtitle,
#previous-partners .section-head,
#previous-partners .section-title,
#previous-partners .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#partners .partner-category {
  text-align: center;
}

#partners .partner-category h3 {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#partners .logo-cloud {
  justify-content: center;
  align-items: center;
  gap: 28px;
}

#partners .logo-card {
  min-height: 150px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#partners .logo-card img {
  width: auto;
  max-width: 220px;
  height: 90px;
  object-fit: contain;
}

#previous-partners .logo-cloud {
  justify-content: center;
  align-items: center;
  gap: 28px;
}

#previous-partners .logo-card {
  min-height: 150px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#previous-partners .logo-card img {
  width: auto;
  max-width: 220px;
  height: 90px;
  object-fit: contain;
}

@media (max-width: 991px) {
  #partners .logo-card img,
  #previous-partners .logo-card img {
    max-width: 190px;
    height: 78px;
  }

  #partners .logo-card,
  #previous-partners .logo-card {
    min-height: 130px;
  }
}

@media (max-width: 575px) {
  #partners .logo-cloud,
  #previous-partners .logo-cloud {
    gap: 16px;
  }

  #partners .logo-card,
  #previous-partners .logo-card {
    min-height: 110px;
    padding: 18px;
  }

  #partners .logo-card img,
  #previous-partners .logo-card img {
    max-width: 150px;
    height: 62px;
  }
}

/* CENTER THE "OUR PARTNERSHIP ECOSYSTEM" SECTION */
#partners .section-head,
#partners .section-head *,
#partners .section-intro,
#partners .section-intro *,
#partners .section-title,
#partners .section-subtitle {
  text-align: center !important;
}

#partners .section-head {
  width: 100% !important;
  max-width: 1000px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

#partners .section-title,
#partners .section-subtitle {
  margin-left: auto !important;
  margin-right: auto !important;
}

#partners .section-subtitle {
  max-width: 850px !important;
}

#partners .partner-category,
#partners .partner-category > *,
#partners .partner-category h3 {
  text-align: center !important;
}

#partners .partner-category {
  width: 100% !important;
}

#partners .logo-cloud {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== PARTNERS: FORCE EVERYTHING TO CENTER ===== */
#partners .container {
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

#partners .section-head {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto 50px !important;
  text-align: center !important;
}

#partners .section-head .kicker,
#partners .section-head h2,
#partners .section-head .section-lead {
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#partners .partner-tier {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#partners .tier-label {
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#partners .partner-row,
#partners .partner-logo-row {
  width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#partners .partner-logo {
  flex: 0 0 220px !important;
  width: 220px !important;
  min-width: 220px !important;
  min-height: 140px !important;
  margin: 0 !important;
}

#partners .partner-logo img {
  width: auto !important;
  max-width: 180px !important;
  height: 80px !important;
  object-fit: contain !important;
  display: block !important;
  margin: auto !important;
}

@media (max-width: 575px) {
  #partners .partner-logo {
    flex: 0 0 180px !important;
    width: 180px !important;
    min-width: 180px !important;
    min-height: 120px !important;
  }

  #partners .partner-logo img {
    max-width: 145px !important;
    height: 65px !important;
  }
}

/* ===== HERO: CENTERED CONTENT, KEEP EXISTING BACKGROUND IMAGE ===== */
.hero.hero-image {
  position: relative;
}

.hero-centered-content {
  max-width: 900px;
  margin: 0 auto;
  min-height: 680px;
  padding: 90px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-centered-content h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #0e0b47;
}

.hero-centered-content .hero-lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #0e0b47;
}

.hero-centered-content .hero-meta {
  justify-content: center;
  text-align: center;
}

.hero-centered-content .hero-cta {
  justify-content: center;
}

@media (max-width: 767px) {
  .hero-centered-content {
    min-height: 620px;
    padding: 75px 15px 65px;
  }

  .hero-centered-content .hero-lead {
    max-width: 100%;
  }

  .hero-centered-content .hero-meta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
/* =========================
   NAVBAR BRAND LOGO
========================= */

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  text-decoration: none;
  line-height: 1;
}

.navbar-brand .brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 220px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
}

.navbar-brand:hover .brand-logo {
  transform: scale(1.03);
}

/* Remove the old CC mark when using the actual logo */
.navbar-brand .brand-mark {
  display: none;
}

/* Navbar alignment */
.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .navbar-brand .brand-logo {
    height: 52px;
    max-width: 200px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .navbar-brand .brand-logo {
    height: 44px;
    max-width: 165px;
  }
}
/* =========================
   HERO LOGO
========================= */

.hero-centered-content {
  max-width: 900px;
  margin: 0 auto;
  min-height: 680px;
  padding: 70px 20px 80px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* Main CIO logo */
.hero-logo {
  display: block;

  width: auto;
  height: 278px;
  max-width: 360px;

  object-fit: contain;
  object-position: center;

  margin: 0 auto 13px;

  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));

  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.03);
}

/* Edition text */
.hero-centered-content .kicker {
  margin-bottom: 14px;
  text-align: center;
  color: #0e0b47;
}

/* Main heading */
.hero-centered-content h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Description */
.hero-centered-content .hero-lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Date + location */
.hero-centered-content .hero-meta {
  justify-content: center;
  text-align: center;
}

/* Buttons */
.hero-centered-content .hero-cta {
  justify-content: center;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .hero-logo {
    height: 100px;
    max-width: 320px;
    margin-bottom: 24px;
  }

  .hero-centered-content {
    min-height: 650px;
    padding: 65px 20px 70px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {
  .hero-centered-content {
    min-height: 620px;
    padding: 55px 15px 60px;
  }

  .hero-logo {
    height: 184px;
    max-width: 260px;
    margin-bottom: 22px;
  }

  .hero-centered-content .hero-lead {
    max-width: 100%;
  }

  .hero-centered-content .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.hero-centered-content {
  max-width: 900px;
  margin: 0 auto;
  min-height: 560px;
  padding: 4px 20px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.themes-section .row > div:last-child {
  margin-left: auto !important;
  margin-right: auto !important;
}
/* =========================================================
   SPONSOR SECTION
   ========================================================= */

.sponsor-section {
  background: #f4f7fb;
  padding: 70px 0;
}

.sponsor-title {
  margin-bottom: 32px;
}

.sponsor-title h2 {
  margin: 0;
  /* color: #11165a; */
  /* font-size: clamp(2rem, 4vw, 2.8rem); */
  /* font-weight: 600; */
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.sponsor-title h2 span {
  color: #0E0B47;
}

.sponsor-title h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 12px;
  border-radius: 5px;
  /* background: #23499a; */
}

/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.sponsor-layout {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* =========================================================
   IMAGE
   ========================================================= */

.sponsor-image {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 35, 70, 0.14);
}

.sponsor-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sponsor-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.sponsor-image-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 10px;
  border-radius: 20px;
  background: #fff;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
}

.verified-badge i {
  color: #0fc36a;
  font-size: 0.48rem;
}

.sponsor-image-content h3 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}

/* =========================================================
   RIGHT SIDE
   ========================================================= */

.sponsor-right {
  min-width: 0;
}

/* =========================================================
   CHECK ITEMS
   ========================================================= */

.sponsor-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin-bottom: 32px;
}

.sponsor-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 73px;
  padding: 16px 17px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(20, 40, 80, 0.04);
}

.sponsor-check > i {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #0E0B47;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.sponsor-check span {
  color: #15195b;
  font-size: 0.88rem;
  line-height: 1.35;
}

/* =========================================================
   THREE FEATURES
   ========================================================= */

.sponsor-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sponsor-feature {
  padding: 17px;
  border: 2px solid #0E0B47;
  border-radius: 44px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 7px;
  background: #0E0B47;
  color: #fff;
  font-size: 1rem;
}

.sponsor-feature h3 {
  margin: 0 0 9px;
  color: #11165a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.sponsor-feature p {
  margin: 0;
  color: #53637c;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
  .sponsor-layout {
    grid-template-columns: 1fr;
  }

  .sponsor-image {
    height: 430px;
  }

  .sponsor-right {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .sponsor-section {
    padding: 55px 0;
  }

  .sponsor-title {
    margin-bottom: 25px;
  }

  .sponsor-title h2 {
    font-size: 2rem;
  }

  .sponsor-layout {
    gap: 25px;
  }

  .sponsor-image {
    height: 350px;
    border-radius: 16px;
  }

  .sponsor-image-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .sponsor-image-content h3 {
    font-size: 1.35rem;
  }

  .sponsor-checks {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .sponsor-check {
    min-height: auto;
  }

  .sponsor-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* =========================================================
   PREVIOUS PARTNERS — CONTINUOUS LOGO MARQUEE
   ========================================================= */

.previous-partners-section {
  padding: 70px 0 75px;
  background: #fff;
  overflow: hidden;
}

/* Heading */

.previous-partners-heading {
  text-align: center;
  margin-bottom: 38px;
}

.previous-partners-heading .kicker {
  margin-bottom: 10px;
}

.previous-partners-heading h2 {
  margin: 0;
  /* color: var(--navy-deep); */
  /* font-size: clamp(1.8rem, 3vw, 2.5rem); */
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* =========================================================
   MARQUEE
   ========================================================= */

.previous-partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Fade edges */

.previous-partners-marquee::before,
.previous-partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.previous-partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.previous-partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

/* =========================================================
   TRACK
   ========================================================= */

.previous-partners-track {
  display: flex;
  align-items: center;
  width: max-content;

  gap: 70px;

  animation: previousPartnersScroll 28s linear infinite;

  will-change: transform;
}

/* Pause on hover */

.previous-partners-marquee:hover .previous-partners-track {
  animation-play-state: paused;
}

/* =========================================================
   LOGOS
   ========================================================= */

.previous-partner-logo {
  flex: 0 0 auto;

  width: 170px;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.previous-partner-logo img {
  display: block;

  width: auto;
  max-width: 150px;
  height: 55px;

  object-fit: contain;

  opacity: 0.72;

  filter: grayscale(100%);

  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.previous-partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

/* =========================================================
   CONTINUOUS ANIMATION
   ========================================================= */

@keyframes previousPartnersScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 35px));
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {
  .previous-partners-section {
    padding: 50px 0 55px;
  }

  .previous-partners-heading {
    margin-bottom: 28px;
  }

  .previous-partners-heading h2 {
    font-size: 1.8rem;
  }

  .previous-partners-track {
    gap: 40px;
    animation-duration: 22s;
  }

  .previous-partner-logo {
    width: 135px;
    height: 70px;
  }

  .previous-partner-logo img {
    max-width: 120px;
    height: 45px;
  }

  .previous-partners-marquee::before,
  .previous-partners-marquee::after {
    width: 55px;
  }
}

/* =========================================================
   CIO CONCLAVE & AWARDS 2026
   REGISTRATION PAGE
   ========================================================= */

/* Everything is scoped to the registration page so that
   existing website CSS does not interfere with the form. */

.registration-page {
  width: 100%;
  min-height: calc(100vh - 80px);
  padding: 140px 24px 70px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: radial-gradient(
      circle at top left,
      rgba(28, 65, 120, 0.06),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(14, 37, 72, 0.05),
      transparent 32%
    ),
    #f5f7fb;
}

/* ONE LARGE CENTERED BOX */
.registration-page .registration-form-shell {
  width: 100%;
  max-width: 700px;
  margin: 24px auto;
  padding: 52px 68px;
  box-sizing: border-box;

  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(17, 39, 72, 0.1);
}

/* FORM */
.registration-page .registration-form {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FORM TITLE */
.registration-page .registration-form-heading {
  width: 100%;
  margin: 0 0 38px;
  text-align: center;
}

.registration-page .registration-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #a77922;
}

.registration-page .registration-form-heading h1 {
    margin: 0;
    color: #1c398e;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.registration-page .registration-form-heading p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6c7788;
}

/* =========================================================
   INPUT AREA
   ========================================================= */

.registration-page .registration-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
  box-sizing: border-box;
}

/* NO INPUT LABELS — ONLY PLACEHOLDERS */
.registration-page .registration-fields > input,
.registration-page .registration-fields > select,
.registration-page .city-country-row > input,
.registration-page .city-country-row > select {
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 0 18px;

  box-sizing: border-box;
  border: 1px solid #dfe4eb;
  border-radius: 10px;
  outline: none;

  background: #ffffff;
  color: #1b2b44;

  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;

  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.registration-page .registration-fields > input::placeholder,
.registration-page .city-country-row > input::placeholder {
  color: #8b95a5;
  opacity: 1;
}

.registration-page .registration-fields > input:focus,
.registration-page .registration-fields > select:focus,
.registration-page .city-country-row > input:focus,
.registration-page .city-country-row > select:focus {
  border-color: #263f67;
  box-shadow: 0 0 0 3px rgba(38, 63, 103, 0.08);
  background: #fff;
}

/* SELECT TEXT */
.registration-page .registration-fields select,
.registration-page .city-country-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;

  background-image: linear-gradient(45deg, transparent 50%, #718096 50%),
    linear-gradient(135deg, #718096 50%, transparent 50%);
  background-position: calc(100% - 20px) 25px, calc(100% - 15px) 25px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.registration-page .registration-fields select:invalid,
.registration-page .city-country-row select:invalid {
  color: #8b95a5;
}

.registration-page .registration-fields select option,
.registration-page .city-country-row select option {
  color: #1b2b44;
}

/* =========================================================
   CITY + COUNTRY
   ONLY THESE TWO ARE ON ONE LINE
   ========================================================= */

.registration-page .city-country-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  box-sizing: border-box;
}

/* =========================================================
   SOURCE / RADIO BUTTONS
   ========================================================= */

.registration-page .registration-source-section {
  width: 100%;
  margin-top: 34px;
}

.registration-page .registration-source-title {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #253652;
}

/* Radio choices in one row */
.registration-page .registration-source-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Option itself */
.registration-page .registration-source-option {
  position: relative;
  min-height: 46px;
  padding: 0 17px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  box-sizing: border-box;
  border: 1px solid #dfe4eb;
  border-radius: 999px;

  background: #ffffff;
  color: #35445a;

  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  user-select: none;

  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* Hide native radio but keep it accessible */
.registration-page .registration-source-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* PERFECT CIRCULAR RADIO */
.registration-page .registration-radio {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;

  display: inline-block;
  position: relative;

  box-sizing: border-box;
  border: 2px solid #a4adba;
  border-radius: 50%;

  background: #ffffff;
}

/* Selected outer circle */
.registration-page
  .registration-source-option
  input:checked
  + .registration-radio {
  border-color: #18345d;
}

/* Selected inner circle */
.registration-page
  .registration-source-option
  input:checked
  + .registration-radio::after {
  content: "";
  position: absolute;

  width: 8px;
  height: 8px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #18345d;
}

/* Selected option */
.registration-page .registration-source-option:has(input:checked) {
  border-color: #18345d;
  background: #f5f8fc;
  color: #18345d;
}

/* Keyboard focus */
.registration-page .registration-source-option:has(input:focus-visible) {
  outline: 3px solid rgba(38, 63, 103, 0.12);
  outline-offset: 2px;
}

/* =========================================================
   OTHER SPECIFY
   ========================================================= */

.registration-page .other-specify-input {
  display: none;
}

/* =========================================================
   CAPTCHA
   ========================================================= */

.registration-page .registration-captcha {
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
}

.registration-page .registration-captcha .g-recaptcha {
  transform-origin: left top;
}

/* =========================================================
   CONSENT
   ========================================================= */

.registration-page .registration-consent {
  width: 100%;
  margin-top: 24px;
}

.registration-page .registration-consent label {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  margin: 0;
  cursor: pointer;

  font-size: 13px;
  line-height: 1.55;
  color: #687587;
}

.registration-page .registration-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin: 2px 0 0;

  accent-color: #18345d;
  cursor: pointer;
}

/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.registration-page .registration-submit {
  width: 100%;
  height: 58px;
  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  border-radius: 10px;
  outline: none;

  background: #18345d;
  color: #ffffff;

  font-family: inherit;
  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.registration-page .registration-submit:hover {
  background: #122a4d;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(24, 52, 93, 0.18);
}

.registration-page .registration-submit:active {
  transform: translateY(0);
}

.registration-page .registration-submit i {
  font-size: 17px;
}

/* =========================================================
   SIMPLE FOOTER
   ========================================================= */

.registration-simple-footer {
  width: 100%;
  padding: 22px 20px;
  box-sizing: border-box;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #e8ebf0;
}

.registration-simple-footer p {
  margin: 0;
  color: #7a8492;
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .registration-page {
    padding: 115px 20px 45px;
  }

  .registration-page .registration-form-shell {
    max-width: 100%;
    padding: 42px 38px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .registration-page {
    min-height: auto;
    padding: 95px 14px 30px;
  }

  .registration-page .registration-form-shell {
    padding: 34px 22px;
    border-radius: 20px;
  }

  .registration-page .registration-form-heading {
    margin-bottom: 30px;
  }

  .registration-page .registration-form-heading h1 {
    font-size: 27px;
  }

  .registration-page .city-country-row {
    grid-template-columns: 1fr;
  }

  .registration-page .registration-source-options {
    flex-direction: column;
    align-items: stretch;
  }

  .registration-page .registration-source-option {
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .registration-page {
    padding: 20px 10px;
  }

  .registration-page .registration-form-shell {
    padding: 28px 16px;
    border-radius: 17px;
  }

  .registration-page .registration-form-heading h1 {
    font-size: 24px;
  }

  .registration-page .registration-form-heading p {
    font-size: 14px;
  }

  .registration-page .registration-fields > input,
  .registration-page .registration-fields > select,
  .registration-page .city-country-row > input,
  .registration-page .city-country-row > select,
  .registration-page .registration-submit {
    height: 55px;
    min-height: 55px;
  }
}
/* =========================================================
   CIO CONCLAVE & AWARDS 2026
   NOMINATION PAGE
   ========================================================= */

.nomination-page {
  width: 100%;
  min-height: 100vh;
  padding: 140px 24px 70px;
  box-sizing: border-box;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  background: radial-gradient(
      circle at 10% 5%,
      rgba(28, 57, 142, 0.07),
      transparent 30%
    ),
    radial-gradient(circle at 90% 90%, rgba(28, 57, 142, 0.05), transparent 32%),
    #f5f7fb;
}

.nomination-shell {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 68px;
  box-sizing: border-box;

  /*background: #fff;*/
  /*border: 1px solid rgba(20, 40, 80, 0.08);*/
  border-radius: 26px;
  /*box-shadow: 0 24px 70px rgba(15, 35, 75, 0.1);*/
}

.nomination-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

.nomination-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.nomination-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a77922;
}

.nomination-heading h1 {
  margin: 0;
  color: #12233f;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nomination-heading p {
  margin: 12px 0 0;
  color: #6c7788;
  font-size: 15px;
  line-height: 1.6;
}

.nomination-fields {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  box-sizing: border-box;
}

.nomination-fields > input,
.nomination-fields > select,
.nomination-fields > textarea {
  width: 100%;
  box-sizing: border-box;

  border: 1px solid #dfe4eb;
  outline: none;
  border-radius: 11px;

  background: #fff;
  color: #1b2b44;

  font-family: inherit;
  font-size: 15px;

  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nomination-fields > input,
.nomination-fields > select {
  height: 54px;
  padding: 0 18px;
}

.nomination-fields > textarea {
  grid-column: 1 / -1;
  min-height: 145px;
  padding: 16px 18px;
  resize: vertical;
  line-height: 1.55;
}

.nomination-fields > input::placeholder,
.nomination-fields > textarea::placeholder {
  color: #8b95a5;
  opacity: 1;
}

.nomination-fields > input:focus,
.nomination-fields > select:focus,
.nomination-fields > textarea:focus {
  border-color: #263f67;
  box-shadow: 0 0 0 3px rgba(38, 63, 103, 0.08);
  background: #fff;
}

.nomination-fields > select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;

  background-image: linear-gradient(45deg, transparent 50%, #718096 50%),
    linear-gradient(135deg, #718096 50%, transparent 50%);
  background-position: calc(100% - 20px) 25px, calc(100% - 15px) 25px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.nomination-fields > select:invalid {
  color: #8b95a5;
}

.nomination-fields > select option {
  color: #1b2b44;
}

.nomination-upload {
  grid-column: 1 / -1;
  width: 100%;
}

.nomination-upload-title {
  margin-bottom: 10px;
  color: #2c3d56;
  font-size: 14px;
  font-weight: 600;
}

.nomination-file-wrap {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;

  overflow: hidden;
  box-sizing: border-box;

  border: 1px solid #dfe4eb;
  border-radius: 11px;
  background: #fff;

  cursor: pointer;
}

.nomination-file-wrap input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nomination-file-button {
  height: 58px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  background: #18345d;
  color: #fff;

  font-size: 14px;
  font-weight: 600;
}

.nomination-file-name {
  min-width: 0;
  padding: 0 17px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #7d8795;
  font-size: 14px;
}

.nomination-upload-note {
  margin: 8px 0 0;
  color: #8791a0;
  font-size: 12px;
  line-height: 1.5;
}

.nomination-terms {
  grid-column: 1 / -1;
  width: 100%;
}

.nomination-terms p {
  margin: 0;
  color: #697688;
  font-size: 13px;
  line-height: 1.6;
}

.nomination-submit-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.nomination-submit {
  min-width: 210px;
  min-height: 56px;
  padding: 0 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  border-radius: 11px;

  background: #18345d;
  color: #fff;

  font-family: inherit;
  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(24, 52, 93, 0.16);

  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nomination-submit:hover {
  background: #122a4d;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(24, 52, 93, 0.22);
}

.nomination-submit:active {
  transform: translateY(0);
}

.nomination-submit i {
  font-size: 17px;
}

.nomination-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nomination-fields > input.invalid,
.nomination-fields > select.invalid,
.nomination-fields > textarea.invalid {
  border-color: #c73b3b;
  box-shadow: 0 0 0 3px rgba(199, 59, 59, 0.07);
}

@media (max-width: 900px) {
  .nomination-page {
    padding: 115px 20px 45px;
  }

  .nomination-shell {
    max-width: 100%;
    padding: 42px 38px;
  }
}

@media (max-width: 700px) {
  .nomination-page {
    min-height: auto;
    padding: 95px 14px 30px;
  }

  .nomination-shell {
    padding: 34px 22px;
    border-radius: 20px;
  }

  .nomination-heading {
    margin-bottom: 30px;
  }

  .nomination-heading h1 {
    font-size: 27px;
  }

  .nomination-fields {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .nomination-fields > textarea,
  .nomination-upload,
  .nomination-terms,
  .nomination-submit-wrap {
    grid-column: 1;
  }

  .nomination-file-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .nomination-file-button {
    width: 100%;
    box-sizing: border-box;
  }

  .nomination-file-name {
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
  }

  .nomination-submit {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .nomination-page {
    padding: 20px 10px;
  }

  .nomination-shell {
    padding: 28px 16px;
    border-radius: 17px;
  }

  .nomination-heading h1 {
    font-size: 24px;
  }

  .nomination-heading p {
    font-size: 14px;
  }

  .nomination-fields > input,
  .nomination-fields > select {
    height: 55px;
  }

  .nomination-fields > textarea {
    min-height: 125px;
  }
}
/* =========================================================
   SUMMIT IMPACT IN NUMBERS
   ========================================================= */

.stats-heading {
  text-align: center;
  margin-bottom: 42px;
}

/* Keep Our Journey in its existing position */
.stats-heading .kicker {
  margin-bottom: 8px;
  color: #ffffff !important;
}

/* Title */
.stats-heading h2 {
  position: relative;

  display: inline-block;

  margin: 0;
  padding-bottom: 10px;

  color: #ffffff !important;

  /* font-size: clamp(1.8rem, 3vw, 2.5rem); */
  line-height: 1.2;
  font-weight: 700;
}

/* Underline only */
.stats-heading h2::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 65px;
  height: 3px;

  transform: translateX(-50%);

  /* background: #ffffff; */

  border-radius: 10px;
}

/* Mobile */
@media (max-width: 575px) {
  .stats-heading {
    margin-bottom: 30px;
  }

  .stats-heading h2 {
    font-size: 1.8rem;
    padding-bottom: 9px;
  }

  .stats-heading h2::after {
    width: 50px;
    height: 3px;
  }
}
/* =========================================================
   AUDIENCE ROLES WITH ICONS
   ========================================================= */

.audience-roles {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.audience-role {
  min-width: 150px;
  padding: 24px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border: 1px solid var(--line);
  border-radius: var(--radius-md);

  background: var(--paper);

  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.audience-role:hover {
  transform: translateY(-4px);

  border-color: var(--navy);

  box-shadow: 0 12px 30px rgba(15, 33, 88, 0.08);
}

.audience-role i {
  width: 48px;
  height: 48px;

  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--navy-tint);
  color: var(--navy);

  font-size: 1.35rem;
}

.audience-role span {
  display: block;

  color: var(--ink);

  font-size: 1rem;

  font-weight: 700;

  letter-spacing: 0.02em;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {
  .audience-roles {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .audience-role {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    padding: 18px 20px;
  }
}
/* =========================================================
   HIGHLIGHT ZOOM BUTTON — MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .collage-image .collage-zoom {
    position: absolute;

    /* TOP RIGHT CORNER */
    top: 12px;
    right: 12px;
    left: auto;

    z-index: 10;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    opacity: 1;

    transform: none;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);

    font-size: 14px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  }

  /* Keep it in the corner on hover too */
  .collage-image:hover .collage-zoom {
    opacity: 1;

    transform: scale(1);
  }

  .collage-zoom:hover {
    background: var(--navy);
    color: #ffffff;

    transform: scale(1.06) !important;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .collage-image .collage-zoom {
    top: 9px;
    right: 9px;

    width: 34px;
    height: 34px;

    font-size: 12px;
  }
}

/* =========================================================
   TESTIMONIAL PERSON — ICON + NAME SIDE BY SIDE
   ========================================================= */

.testimonial-details {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;

  white-space: nowrap;
}

/* Circular person icon */

.testimonial-details i {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50%;

  background: var(--navy);
  color: #ffffff;

  font-size: 14px;
  line-height: 1;
}

/* Person name */

.testimonial-details strong {
  display: inline-block !important;

  margin: 0 !important;

  color: var(--ink);

  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}



/* ==========================================================================
   CIO CONCLAVE 2026 — PREMIUM REDESIGN
   --------------------------------------------------------------------------
   Content, links, images and existing functionality remain unchanged.
   This layer completely refreshes the visual system while preserving the
   existing navy / deep-navy / soft-grey / amber palette.
   ========================================================================== */

:root{
  --paper:#ffffff;
  --paper-tint:#f7f9fc;
  --ink:#101522;
  --ink-soft:#596273;
  --ink-faint:#8992a3;
  --line:#e6eaf0;
  --line-strong:#d4dbe6;
  --navy:#1c398e;
  --navy-hover:#16307e;
  --navy-deep:#0e0b47;
  --navy-2:#102762;
  --navy-tint:rgba(28,57,142,.07);
  --navy-tint-strong:rgba(28,57,142,.13);
  --amber:#b9791f;
  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --shadow-sm:0 8px 25px rgba(15,33,88,.06);
  --shadow-md:0 18px 50px rgba(15,33,88,.10);
  --shadow-lg:0 28px 80px rgba(15,33,88,.14);
}

/* Base */
html{scroll-behavior:smooth;scroll-padding-top:100px}
body{
  background:#fff;
  color:var(--ink);
  font-family:"Poppins",sans-serif;
  line-height:1.7;
}
::selection{background:var(--navy);color:#fff}
.container{max-width:1240px}
.section{padding:105px 0}
.section-sm{padding:70px 0}
.section-tint{background:#f7f9fc}
.section-head{margin-bottom:52px}
.section-head h2,
.stats-heading h2,
.sponsor-title h2,
.previous-partners-heading h2{
  font-size:38px;
  line-height:1.1;
  letter-spacing:-.045em;
  font-weight:600;
  color:var(--navy-deep);
}
.section-head h2::after{
  content:"";
  display:block;
  width:46px;
  height:4px;
  margin-top:16px;
  border-radius:20px;
  background:var(--amber);
}
.text-center .section-head h2::after,
.section-head.text-center h2::after{margin-left:auto;margin-right:auto}
p{color:var(--ink-soft)}
a{transition:all .25s ease}

/* Buttons */
.btn{
  border-radius:999px;
  padding:12px 23px;
  font-size:.86rem;
  letter-spacing:.01em;
  box-shadow:none;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,border-color .25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-navy{
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
  box-shadow:0 10px 25px rgba(28,57,142,.20);
}
.btn-navy:hover{background:var(--navy-deep);border-color:var(--navy-deep);color:#fff;box-shadow:0 14px 32px rgba(14,11,71,.22)}
.btn-navy-outline{
  color:var(--navy);
  border-color:rgba(28,57,142,.35);
  background:#fff;
}
.btn-navy-outline:hover{background:var(--navy);border-color:var(--navy);color:#fff}
.btn-light-solid{
  background:#fff;
  color:var(--navy-deep);
  border:1px solid rgba(255,255,255,.8);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}
.btn-light-solid:hover{background:var(--navy);color:#fff;border-color:var(--navy);box-shadow:0 16px 35px rgba(0,0,0,.18)}

/* Navbar — floating premium bar */
.navbar{
  top:12px;
  width:calc(100% - 32px);
  max-width:1280px;
  margin:0 auto;
  padding:10px 14px;
  border:1px solid rgba(213,220,232,.9);
  border-radius:18px;
  background:rgba(255,255,255,.90);
  box-shadow:0 10px 35px rgba(15,33,88,.08);
  backdrop-filter:blur(18px);
  z-index:1030;
}
.navbar.scrolled{
  box-shadow:0 14px 45px rgba(15,33,88,.13);
  background:rgba(255,255,255,.97);
}
.navbar-brand{padding-left:6px}
.brand-logo{width:auto;max-height:55px;object-fit:contain}
.navbar .nav-link{
  font-size:.82rem;
  font-weight:600;
  color:#273044;
  padding:10px 11px!important;
  border-radius:999px;
}
.navbar .nav-link::after{display:none}
.navbar .nav-link:hover,
.navbar .nav-link.active{
  color:var(--navy);
  background:var(--navy-tint);
}
.navbar .btn{padding:10px 20px;margin-right:4px}
.navbar-toggler{color:var(--navy-deep)!important;padding:8px 10px!important}
.navbar-toggler:focus{box-shadow:0 0 0 3px var(--navy-tint)}

.announce-bar {
  width: 100%;
  background: var(--navy-deep);
  border: 0;
}

.announce-track {
  width: 100%;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



/* Hero — asymmetric editorial layout */
.hero-image{
  /*min-height:clamp(590px,78vh,780px);*/
  margin-top:0;
  /*padding:120px 0 90px;*/
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(8,16,45,.97) 0%,rgba(9,24,64,.90) 39%,rgba(9,24,64,.48) 67%,rgba(9,24,64,.12) 100%),
    url("images/bgbanner.png") center/cover no-repeat;
}
.hero-image::before{
  content:"";
  position:absolute;
  width:520px;height:520px;
  right:-180px;top:-130px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  box-shadow:0 0 0 80px rgba(255,255,255,.025),0 0 0 160px rgba(255,255,255,.018);
}
.hero-overlay{display:none}
.hero-centered-content{
  width:min(690px,100%);
  margin:0;
  text-align:left;
  position:relative;
  z-index:3;
}
.hero-logo{
  display:block;
  width:min(440px,82%);
  max-height:145px;
  object-fit:contain;
  object-position:left center;
  margin:0 0 34px;
  filter:drop-shadow(0 15px 30px rgba(0,0,0,.16));
}
.hero-image .hero-meta{gap:12px;margin:0 0 30px}
.hero-image .meta-item{
  padding:9px 15px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(8px);
  font-size:.82rem;
}
.hero-image .meta-item i{color:#d9e2ff}
.hero-cta{gap:12px}
.hero-cta .btn{min-width:148px}
.hero-image::after{
  content:"15TH EDITION";
  position:absolute;
  right:7%;
  bottom:10%;
  color:rgba(255,255,255,.14);
  font-size:clamp(4rem,10vw,9rem);
  font-weight:800;
  line-height:1;
  letter-spacing:-.08em;
  pointer-events:none;
}

/* About */
.about-section{position:relative}
.about-section::before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--line),transparent);
}
.about-image-slider{
  min-height:560px;
  border-radius:28px;
  border:8px solid #fff;
  box-shadow:var(--shadow-lg);
}
.about-image-slider::after{
  background:linear-gradient(180deg,rgba(14,11,71,0) 45%,rgba(14,11,71,.46) 100%);
}
.about-content{padding-left:22px}
.about-content h2{
  font-size:clamp(2rem,3vw,3rem);
  font-weight:600;
  color:var(--navy-deep);
  letter-spacing:-.045em;
}
.about-intro{
  font-size:1.12rem;
  color:#303949;
  line-height:1.85;
}
.pull-quote{
  position:relative;
  margin:28px 0;
  padding:26px 28px 26px 72px;
  border:1px solid #dfe5ef;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.pull-quote-mark{
  position:absolute;
  left:22px;top:24px;
  width:36px;height:36px;
  display:grid;place-items:center;
  border-radius:11px;
  background:var(--navy);
  color:#fff;
}
.pull-quote-text{font-size:.94rem;line-height:1.8;color:#3d4656}
.about-cta .btn{padding:13px 22px}

/* Stats — cards instead of flat strip */
.stats{
  position:relative;
  background:var(--navy-deep);
  overflow:hidden;
}
.stats::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 10% 20%,rgba(255,255,255,.08),transparent 25%),
    radial-gradient(circle at 90% 80%,rgba(185,121,31,.12),transparent 24%);
}
.stats .container{position:relative;z-index:1}
.stats-heading{text-align:left;margin-bottom:34px}
.stats-heading h2{color:#fff;font-size:clamp(1.8rem,3vw,2.5rem)}
.stats-heading h2::after{content:"";display:block;width:44px;height:4px;background:var(--amber);border-radius:4px;margin-top:14px}
.stat-item{
  position:relative;
  text-align:left;
  padding:30px 28px;
  min-height:150px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(10px);
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}
.stat-item:hover{transform:translateY(-5px);background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.24)}
.stat-num{font-size:clamp(2.5rem,4.5vw,3.6rem);font-weight:700;color:#fff}
.stat-label{font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;color:#bfc9e3;margin-top:9px}

/* Speakers */
/* Speakers */
#speakers {
  background: #fff;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.leader-card {
  position: relative;
  border: 1px solid #e2e7ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(15, 33, 88, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-7px);
  border-color: #cdd6e5;
  box-shadow: 0 22px 50px rgba(15, 33, 88, 0.12);
}

.leader-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(14, 11, 71, 0.18));
  pointer-events: none;
}

.leader-photo img {
  transition: transform 0.55s ease;
  object-position: center top;
}

.leader-card:hover .leader-photo img {
  transform: scale(1.045);
}

.leader-info {
  padding: 18px 18px 22px;
  text-align: left;
}

.leader-initials {
  margin: -38px 0 12px;
  width: 46px;
  height: 46px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(15, 33, 88, 0.18);
  background: var(--navy);
}

.leader-info h3 {
  font-size: 1.08rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.leader-info .speaker-org {
  font-size: 0.67rem;
  padding: 5px 8px;
  margin: 0 0 8px;
  border-radius: 999px;
}

.leader-info p {
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}


/* =========================
   MOBILE — 2 SPEAKERS PER ROW
========================= */

@media (max-width: 767px) {
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .leader-card {
    border-radius: 15px;
  }

  .leader-info {
    padding: 12px 11px 15px;
  }

  .leader-initials {
    width: 38px;
    height: 38px;
    margin: -28px 0 8px;
    border-width: 3px;
  }

  .leader-info h3 {
    font-size: 0.82rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .leader-info .speaker-org {
    font-size: 0.56rem;
    padding: 4px 6px;
    margin-bottom: 6px;
  }

  .leader-info p {
    font-size: 0.65rem;
    line-height: 1.4;
  }
}
/* Speakers */
#speakers {
  background: #fff;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.leader-card {
  position: relative;
  border: 1px solid #e2e7ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(15, 33, 88, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-7px);
  border-color: #cdd6e5;
  box-shadow: 0 22px 50px rgba(15, 33, 88, 0.12);
}

.leader-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(14, 11, 71, 0.18));
  pointer-events: none;
}

.leader-photo img {
  transition: transform 0.55s ease;
  object-position: center top;
}

.leader-card:hover .leader-photo img {
  transform: scale(1.045);
}

.leader-info {
  padding: 18px 18px 22px;
  text-align: left;
}

.leader-initials {
  margin: -38px 0 12px;
  width: 46px;
  height: 46px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(15, 33, 88, 0.18);
  background: var(--navy);
}

.leader-info h3 {
  font-size: 1.08rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.leader-info .speaker-org {
  font-size: 0.67rem;
  padding: 5px 8px;
  margin: 0 0 8px;
  border-radius: 999px;
}

.leader-info p {
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}


/* =========================
   MOBILE — 2 SPEAKERS PER ROW
========================= */

@media (max-width: 767px) {
  .leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .leader-card {
    border-radius: 15px;
  }

  .leader-info {
    padding: 12px 11px 15px;
  }

  .leader-initials {
    width: 38px;
    height: 38px;
    margin: -28px 0 8px;
    border-width: 3px;
  }

  .leader-info h3 {
    font-size: 0.82rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .leader-info .speaker-org {
    font-size: 0.56rem;
    padding: 4px 6px;
    margin-bottom: 6px;
  }

  .leader-info p {
    font-size: 0.65rem;
    line-height: 1.4;
  }
}
/* Themes — bento cards */
.themes-section{background:#f7f9fc}
.theme-card{
  height:100%;
  min-height:225px;
  position:relative;
  padding:28px;
  border:1px solid #e0e6ef;
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(15,33,88,.045);
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.theme-card::before{
  content:"";
  position:absolute;
  width:130px;height:130px;
  right:-60px;top:-60px;
  border-radius:50%;
  background:var(--navy-tint);
  transition:transform .4s ease;
}
.theme-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:#cbd5e4}
.theme-card:hover::before{transform:scale(1.5)}
.theme-icon{
  position:relative;z-index:1;
  width:52px;height:52px;
  display:grid;place-items:center;
  border-radius:15px;
  background:var(--navy);
  color:#fff;
  font-size:1.2rem;
  box-shadow:0 10px 22px rgba(28,57,142,.18);
}
.theme-number{
  position:absolute;right:22px;top:22px;
  font-size:.7rem;font-weight:700;
  color:#a6afbd;letter-spacing:.08em;
}
.theme-card h3{position:relative;z-index:1;margin:28px 0 8px;font-size:1.02rem;line-height:1.35;color:var(--navy-deep)}
.theme-card p{position:relative;z-index:1;font-size:.79rem;line-height:1.6;margin:0}

/* Attend section */
.attend-section{background:#fff!important;padding:105px 0}
.attend-wrapper{
  min-height:600px;
  border:1px solid #dfe5ee;
  border-radius:28px;
  box-shadow:var(--shadow-lg);
  grid-template-columns:40% 60%;
}
.attend-image{min-height:600px}
.attend-image-content{left:38px;right:38px;bottom:40px}
.attend-image-content h3{font-size:clamp(1.9rem,3vw,2.7rem)}
.attend-content{padding:52px!important}
.attend-heading h2{font-size:38px;color:var(--navy-deep);letter-spacing:-.045em}
.attend-heading-line{background:var(--amber)!important}
.attend-roles{gap:12px}
.attend-item{
  border:1px solid #e2e7ef!important;
  border-radius:18px!important;
  background:#fff!important;
  padding:19px!important;
  box-shadow:none!important;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.attend-item:hover{transform:translateX(5px);box-shadow:var(--shadow-sm);border-color:#ccd6e4!important}
.attend-item-navy{background:var(--navy)!important;color:#fff}
.attend-role-icon{border-radius:13px!important;background:var(--navy-tint)!important;color:var(--navy)!important}
.attend-item-navy .attend-role-icon{background:rgba(255,255,255,.13)!important;color:#fff!important}

/* Awards — deep premium section */
.awards{
  background:
    radial-gradient(circle at 90% 10%,rgba(76,110,190,.18),transparent 28%),
    radial-gradient(circle at 10% 90%,rgba(185,121,31,.10),transparent 22%),
    var(--navy-deep)!important;
  position:relative;
  overflow:hidden;
}
.awards::before{
  content:"AWARDS";
  position:absolute;
  right:26rem;top:30px;
  font-size:clamp(5rem,13vw,12rem);
  font-weight:800;
  letter-spacing:-.08em;
  color:rgba(255,255,255,.025);
  line-height:1;
}
.awards-header,.awards-heading,.awards-intro,.awards-eyebrow{position:relative;z-index:1}
.awards-eyebrow{color:#d7b77e!important;letter-spacing:.14em;text-transform:uppercase;font-size:.72rem;font-weight:700}
.awards-heading{color:#fff!important;font-size:clamp(2.2rem,4vw,3.5rem)!important;letter-spacing:-.05em}
.awards-intro{color:#bfc8dc!important;max-width:720px}
.award-grid{
  position:relative;z-index:1;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.award-card{
  min-height:180px;
  padding:25px 22px 22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(10px);
}
.award-card:hover{transform:translateY(-6px);background:rgba(255,255,255,.085);border-color:rgba(255,255,255,.25)}
.award-icon{
  width:48px;height:48px;
  border-radius:14px;
  background:rgba(185,121,31,.12);
  border-color:rgba(185,121,31,.30);
  color:#d7b77e;
}
.award-number{color:rgba(255,255,255,.26)}
.award-card h3{font-size:.95rem;line-height:1.45}
.nominate-cta{
  position:relative;z-index:1;
  margin-top:24px;
  padding:26px 30px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(12px);
}
.nominate-content h3{color:#fff}
.nominate-content p{color:#bfc8dc}
.award-cta{border-radius:999px;background:#fff;color:var(--navy-deep);padding:11px 20px;font-weight:700}

/* Sponsor */
.sponsor-section{background:#f7f9fc}
.sponsor-title{margin-bottom:45px}
.sponsor-layout{
  display:grid;
  grid-template-columns:48% 52%;
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e0e6ef;
  box-shadow:var(--shadow-lg);
}
.sponsor-image{min-height:570px}
.sponsor-image-overlay{background:linear-gradient(180deg,rgba(14,11,71,0) 30%,rgba(14,11,71,.9) 100%)}
.sponsor-image-content{left:36px;bottom:36px}
.sponsor-image-content h3{font-size:2rem}
.verified-badge{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.35)}
.sponsor-right{padding:46px}
.sponsor-checks{display:grid;grid-template-columns:1fr 1fr;gap:13px}
.sponsor-check{
  min-height:100px;
  padding:18px;
  border:1px solid #e1e6ee;
  border-radius:16px;
  background:#fff;
}
.sponsor-check i{background:var(--navy);color:#fff;border-radius:50%;padding:4px;margin-right:8px}
.sponsor-check span{font-size:.78rem;line-height:1.55}
.sponsor-features{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:28px}
.sponsor-feature{padding:18px;border-top:2px solid var(--navy);background:#f7f9fc;border-radius:11px 0px 0px 7px}
.feature-icon{width:42px;height:42px;border-radius:12px;background:var(--navy-tint);color:var(--navy);display:grid;place-items:center}
.sponsor-feature h3{font-size:.88rem;margin:13px 0 6px}
.sponsor-feature p{font-size:.72rem;line-height:1.55;margin:0}

/* Previous partners */
.previous-partners-section{padding:80px 0;background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.previous-partners-heading{margin-bottom:34px}
.previous-partners-track{gap:45px}
.previous-partner-logo{
  width:175px;height:82px;
  border:1px solid #e2e7ef!important;
  border-radius:15px;
  background:#fff;
  box-shadow:0 6px 20px rgba(15,33,88,.04);
}

/* Pricing */
/*#pricing{background:#f7f9fc}*/
.price-card{
  height:100%;
  border:1px solid #dfe5ee!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:0 8px 26px rgba(15,33,88,.05)!important;
  padding:30px!important;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
/* .price-card:hover{transform:translateY(-7px);box-shadow:var(--shadow-md)!important} */
.price-card-featured{
  background:var(--navy-deep)!important;
  color:#fff;
  border-color:var(--navy-deep)!important;
  transform:translateY(-10px);
  box-shadow:0 22px 55px rgba(14,11,71,.22)!important;
}
.price-card-featured h3,.price-card-featured p,.price-card-featured li{color:#fff}
.price-amount{color:var(--navy)!important}
.price-card-featured .price-amount{color:#fff!important}
.price-lines{border-color:#e6eaf0!important}
.price-card-featured .price-lines{border-color:rgba(255,255,255,.16)!important}

/* Testimonials */
.testimonials-section{background:#fff!important}
.testimonial-carousel{max-width:1080px}
.testimonial-carousel .carousel-inner{border-radius:28px}
.testimonial-card{
  min-height:320px;
  border:1px solid #dfe5ee;
  border-radius:28px;
  box-shadow:var(--shadow-md);
  background:
    radial-gradient(circle at 50% 0,rgba(28,57,142,.08),transparent 42%),
    #fff;
}
.testimonial-quote-icon{background:var(--navy);color:#fff;border-radius:15px}
.testimonial-card blockquote,.testimonial-card p{color:#313a4a}
.testimonial-details strong{color:var(--navy-deep)}
.testimonial-arrow{border-radius:50%;background:#fff!important;border:1px solid #dbe2ec!important;color:var(--navy)!important;box-shadow:var(--shadow-sm)}
.testimonial-arrow:hover{background:var(--navy)!important;color:#fff!important}

/* Highlights */
.highlights-section{background:#f7f9fc}
.highlights-section .section-head{max-width:800px}
.event-collage{
  max-width:1180px;
  padding:12px;
  gap:12px;
  border-radius:28px;
  background:#fff;
  border:1px solid #e0e6ef;
  box-shadow:var(--shadow-lg);
}
.collage-image{border-radius:17px}
.collage-image > img{transition:transform .6s cubic-bezier(.2,.7,.2,1),filter .35s ease}
.collage-image:hover > img{transform:scale(1.06)}
.collage-zoom{
  border-radius:50%!important;
  background:rgba(14,11,71,.82)!important;
  border:1px solid rgba(255,255,255,.3)!important;
  width:42px!important;height:42px!important;
}
.collage-title{
  background:linear-gradient(transparent,rgba(14,11,71,.85))!important;
  padding:50px 20px 18px!important;
}

/* Contact / footer */
#contact{background:#f7f9fc}
.footer{
  padding:80px 0 24px;
  background:var(--navy-deep);
  color:#fff;
  border-top:0;
}
.footer-main{gap:70px}
.footer-about h3,.footer-contact h3,.footer-contact-person{color:#fff!important}
.footer-about>p,.footer-contact-line,.footer-contact-role{color:#bfc8dc!important}
.footer-logo img{filter:brightness(0) invert(1);opacity:.95}
.footer-social a{
  width:42px;height:42px;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
  color:#fff;
}
.footer-social a:hover{background:#fff;color:var(--navy-deep);border-color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12)!important;
  color:#aeb8cd!important;
  padding-top:24px!important;
}

/* Modals */
.highlight-zoom-viewer,.highlight-modal{backdrop-filter:blur(12px)}
.highlight-modal .modal-content{
  border:0!important;border-radius:24px!important;overflow:hidden;
  box-shadow:0 35px 90px rgba(0,0,0,.28);
}

/* Scroll reveal — softer */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.reveal.in{opacity:1;transform:none}

/* Responsive */
@media (max-width:1199px){
  .navbar .nav-link{padding-left:8px!important;padding-right:8px!important}
  .leader-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .award-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:991px){
  .navbar{top:8px;width:calc(100% - 18px)}
  .navbar-collapse{
    margin-top:10px;
    padding:10px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
  }
  .navbar .nav-link{padding:10px 13px!important}
  .navbar .btn{margin:8px 4px 3px}
  .hero-image{
    min-height:670px;
    background:
      linear-gradient(90deg,rgba(8,16,45,.94),rgba(9,24,64,.68)),
      url("images/bgbanner.png") center/cover no-repeat;
  }
  .hero-centered-content{width:100%}
  .hero-logo{width:380px}
  .about-content{padding-left:0}
  .about-image-slider{min-height:480px}
  .leader-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .attend-wrapper,.sponsor-layout{grid-template-columns:1fr}
  .attend-image,.sponsor-image{min-height:440px}
  .attend-content,.sponsor-right{padding:38px!important}
  .award-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .price-card-featured{transform:none}
}
@media (max-width:767px){
  .section{padding:78px 0}
  .section-sm{padding:55px 0}
  .hero-image{min-height:640px;padding:110px 0 70px}
  .hero-logo{width:320px;max-width:90%;margin-bottom:26px}
  .hero-cta{display:grid;grid-template-columns:1fr;max-width:300px}
  .hero-cta .btn{width:100%}
  .hero-image::after{font-size:4rem;right:-10px;bottom:8%}
  .about-image-slider{min-height:370px;border-width:5px;border-radius:20px}
  .pull-quote{padding:22px 20px 22px 62px}
  .stats-heading{text-align:center}
  .stats-heading h2::after{margin-left:auto;margin-right:auto}
  .stat-item{min-height:135px;padding:23px 20px}
  .leader-grid{grid-template-columns:1fr}
  .leader-photo{height:340px}
  .theme-card{min-height:205px}
  .attend-wrapper{border-radius:20px}
  .attend-image{min-height:380px}
  .attend-content,.sponsor-right{padding:28px!important}
  .sponsor-checks,.sponsor-features{grid-template-columns:1fr}
  .sponsor-image{min-height:390px}
  .award-grid{grid-template-columns:1fr}
  .award-card{min-height:150px}
  .nominate-cta{align-items:flex-start;gap:20px}
  .testimonial-carousel{padding-left:8px;padding-right:8px}
  .testimonial-card{padding:42px 24px;min-height:310px}
  .event-collage{grid-template-columns:1fr 1fr;grid-template-rows:170px 170px 170px 170px}
  .collage-center{grid-column:1 / 3;grid-row:1 / 3}
  .collage-1{grid-column:1;grid-row:3}
  .collage-2{grid-column:2;grid-row:3}
  .collage-3{grid-column:1;grid-row:4}
  .collage-5{grid-column:2;grid-row:4}
  .collage-6,.collage-7,.collage-8,.collage-9{display:none}
  .footer-main{grid-template-columns:1fr!important}
}
@media (max-width:480px){
  .container{padding-left:18px;padding-right:18px}
  .hero-image{min-height:600px}
  .hero-image .meta-item{width:100%;justify-content:center}
  .about-image-slider{min-height:300px}
  .leader-photo{height:195px}
  .stat-item{padding:20px 15px}
  .stat-num{font-size:2.3rem}
  .attend-image{min-height:330px}
  .attend-image-content{left:22px;right:22px;bottom:24px}
  .sponsor-image{min-height:330px}
  .event-collage{grid-template-rows:145px 145px 145px 145px}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    scroll-behavior:auto!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  
}

/* =========================================================
   FINAL VISUAL FIXES
   - Hero uses the original image directly, with no overlay
   - Hero begins from the very top behind the navbar
   - About Us typography is tighter and more compact
   - Blue pricing section uses white typography consistently
   - Footer uses a light background with dark typography
   ========================================================= */

/* HERO — original image only, no dark/colored overlay */
.hero-image {
    position: relative;
    /*height: 642px !important;*/
    /*min-height: 0 !important;*/
    margin-top: 0 !important;
    padding-top: 96px !important;
    overflow: hidden;

    /* Base background */
    background-color: #ffffff;

    /* Grid + radial gradients */
    background-image:
        radial-gradient(
            circle at 85% 10%,
            rgba(26, 86, 219, 0.18) 0%,
            rgba(14, 165, 233, 0.08) 25%,
            transparent 48%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(43, 55, 105, 0.16) 0%,
            rgba(26, 86, 219, 0.06) 28%,
            transparent 50%
        ),
        radial-gradient(
            circle at 55% 35%,
            rgba(14, 165, 233, 0.10) 0%,
            transparent 38%
        ),
        linear-gradient(
            rgba(43, 55, 105, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(43, 55, 105, 0.045) 1px,
            transparent 1px
        );

    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        40px 40px,
        40px 40px;

    background-position:
        center,
        center,
        center,
        0 0,
        0 0;

    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat,
        repeat,
        repeat;
}


/* Floating gradient blobs */
.hero-bp {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
}


/* Top-right */
.hero-bp.p1 {
    width: 560px;
    height: 560px;

    top: -160px;
    right: -100px;

    background:
        radial-gradient(circle, rgb(26 86 219 / 22%) 0%, rgb(14 165 233 / 3%) 45%, #00000000 72%);

    animation: pf 10s ease-in-out infinite;
}


/* Bottom-left */
.hero-bp.p2 {
    width: 480px;
    height: 480px;

    left: -100px;
    bottom: -150px;

    background:
       radial-gradient(circle, rgb(11 39 155 / 19%) 0%, rgb(26 86 219 / 11%) 45%, #00000000 72%);
    animation: pf 13s ease-in-out infinite 2s reverse;
}


/* Center */
.hero-bp.p3 {
    width: 300px;
    height: 300px;

    top: 30%;
    left: 52%;

    background:
       radial-gradient(circle, rgb(14 165 233 / 0%) 0%, rgb(26 86 219 / 0%) 45%, transparent 72%);
    animation: pf 9s ease-in-out infinite 4s;
}


/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.10),
        rgba(255, 255, 255, 0.02)
    );

    pointer-events: none;
}


/* Hero content */
.hero-image .container {
    position: relative;
    z-index: 2;
}


/* Floating animation */
@keyframes pf {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -20px, 0) scale(1.04);
    }
}



/* Remove decorative image tint/overlay effects from the hero */
.hero-image::before{
  display:none!important;
}
.hero-image::after{
  display:none!important;
}
.hero-overlay{
  display:none!important;
  opacity:0!important;
  background:none!important;
}

.hero-centered-content{
  width:min(900px,100%);
  height:100%;
  min-height:0!important;
  margin:26px auto;
  text-align:center;
  align-items:center;
}
.hero-centered-content h1,
.hero-centered-content .hero-lead,
.hero-centered-content .meta-item,
.hero-centered-content .meta-item i{
  color:#000!important;
}
.hero-centered-content .hero-meta,
.hero-centered-content .hero-cta{
  justify-content:center;
}
.hero-centered-content .hero-meta{
  gap:14px;
  margin:0 0 30px;
}
.hero-centered-content .meta-item{
  padding:10px 16px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:10px;
  background:rgba(255,255,255,.68);
  box-shadow:none;
  font-size:clamp(.88rem,1.15vw,1rem);
  font-weight:600;
  letter-spacing:0;
}
.hero-centered-content .meta-item i{
  font-size:1.05em;
}
.hero-logo{
  width:min(560px,90%);
  max-width:560px;
  max-height:260px;
  object-position:center;
  margin:0 auto 26px;
}

/* Keep hero content readable without putting an overlay over the image */
.hero-centered-content{
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}
.hero-logo{
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.22))!important;
}
.hero-image .meta-item{
  text-shadow:none;
}
.hero-cta .btn{
  text-shadow:none;
}

@media (max-width:575px){
  .hero-centered-content .hero-meta{
    width:100%;
    gap:10px;
  }
  .hero-centered-content .meta-item{
    width:auto;
    justify-content:center;
    padding:9px 14px;
    font-size:.88rem;
  }
}

@media (max-width:991px){
  .hero-image{
    height:566px!important;
    min-height:0!important;
  }
}

@media (max-width:767px){
  .hero-image{
    height:auto!important;
    min-height:566px!important;
  }
}

@media (max-width:480px){
  .hero-image{
    height:auto!important;
    min-height:566px!important;
  }
}

/* ABOUT — reduce oversized heading and line-height */
.about-content h2{
  font-size:clamp(1.85rem,2.65vw,2.55rem)!important;
  line-height:1.08!important;
  letter-spacing:-.035em!important;
  margin-bottom:16px!important;
}
.about-intro{
  font-size:1.03rem!important;
  line-height:1.68!important;
}
.about-content > p:not(.about-intro){
  line-height:1.7!important;
}
.pull-quote-text{
  line-height:1.65!important;
}

/* EVENT PRICING — blue section = white typography */
#pricing{
  background:var(--navy-deep)!important;
  color:#fff!important;
}
#pricing .section-head h2,
#pricing .section-head p,
#pricing .kicker,
#pricing .section-lead{
  color:#fff!important;
}
#pricing .section-head h2::after{
  background:var(--amber)!important;
}
#pricing .price-card{
  background:rgba(255,255,255,.055)!important;
  border:1px solid rgba(255,255,255,.16)!important;
  box-shadow:0 18px 45px rgba(0,0,0,.16)!important;
  color:#fff!important;
}
/* #pricing .price-card:hover{
  border-color:rgba(255,255,255,.30)!important;
  background:rgba(255,255,255,.085)!important;
} */
#pricing .price-card-featured{
  background:#fff!important;
  border-color:#fff!important;
  color:var(--navy-deep)!important;
}
#pricing .price-card-featured .price-phase,
#pricing .price-card-featured .price-until,
#pricing .price-card-featured .price-amount,
#pricing .price-card-featured .price-lines,
#pricing .price-card-featured .price-lines dt,
#pricing .price-card-featured .price-lines dd{
  color:var(--navy-deep)!important;
}
#pricing .price-phase,
#pricing .price-until,
#pricing .price-lines,
#pricing .price-lines dt,
#pricing .price-lines dd{
  color:#fff!important;
}
#pricing .price-lines{
  border-color:rgba(255,255,255,.18)!important;
}
#pricing .price-card-featured .price-lines{
  border-color:#dfe5ee!important;
}
#pricing .price-amount{
  color:#fff!important;
}
#pricing .price-card-featured .price-amount{
  color:var(--navy-deep)!important;
}
#pricing .price-amount small{
  color:inherit!important;
}
#pricing .btn-navy-outline{
  color:#fff!important;
  border-color:rgba(255,255,255,.55)!important;
  background:transparent!important;
}
#pricing .btn-navy-outline:hover{
  color:var(--navy-deep)!important;
  background:#fff!important;
  border-color:#fff!important;
}
#pricing .price-card-featured .btn-navy{
  background:var(--navy-deep)!important;
  color:#fff!important;
  border-color:var(--navy-deep)!important;
}

/* FOOTER — light background, dark readable text */
.footer{
  background:#fff!important;
  color:#172033!important;
  border-top:1px solid #e1e6ee!important;
}
.footer-about h3,
.footer-contact h3,
.footer-contact-person,
.footer-contact-person h4{
  color:#101522!important;
}
.footer-about>p,
.footer-contact-line,
.footer-contact-role{
  color:#596273!important;
}
.footer-contact-line strong{
  color:#273044!important;
}
.footer-contact-line i{
  color:var(--navy)!important;
}
.footer-logo img{
  filter:none!important;
  opacity:1!important;
}
.footer-social a{
  border:1px solid #d8dfe9!important;
  background:#f7f9fc!important;
  color:var(--navy-deep)!important;
}
.footer-social a:hover{
  background:var(--navy)!important;
  color:#fff!important;
  border-color:var(--navy)!important;
}
.footer-bottom{
  border-top:1px solid #e1e6ee!important;
  color:#697386!important;
}

@media (max-width:991px){
  .hero-image{
    padding-top:90px!important;
    background-image:url("images/bgbanner.png")!important;
  }
}

@media (max-width:767px){
  .hero-image{
    padding-top:86px!important;
    background-image:url("images/bgbanner.png")!important;
  }
  .about-content h2{
    font-size:2rem!important;
    line-height:1.08!important;
  }
}

  .editions-dropdown {
    min-width: 210px;
    max-height: 420px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid #eef1f6;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(28, 57, 142, 0.14);
  }

  .editions-dropdown .dropdown-item {
    padding: 9px 13px;
    border-radius: 6px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .editions-dropdown .dropdown-item:hover {
    background: #eef3ff;
    color: #1c398e;
  }

  /* Desktop dropdown */
  @media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
      display: block;
      margin-top: 0;
    }

    .navbar .dropdown-menu {
      animation: editionsDropdownAnimation 0.2s ease;
    }

  }

  @keyframes editionsDropdownAnimation {

    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }

  }

  /* Dropdown scrollbar */
  .editions-dropdown::-webkit-scrollbar {
    width: 5px;
  }

  .editions-dropdown::-webkit-scrollbar-track {
    background: #f5f6f8;
    border-radius: 10px;
  }

  .editions-dropdown::-webkit-scrollbar-thumb {
    background: #c8d1e5;
    border-radius: 10px;
  }

  /* Mobile */
  @media (max-width: 991.98px) {

    .editions-dropdown {
      max-height: 300px;
      border: 0;
      box-shadow: none;
      padding-left: 15px;
      background: transparent;
    }

    .editions-dropdown .dropdown-item {
      padding: 8px 12px;
    }

  }
  

