@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

:root {
  --ink: #1c1c1e;
  --white: #ffffff;
  --accent: #e3a73c;
  --menu-color: #4b3fd6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* no blue wash on top of the footage - just a soft neutral scrim so white
   text stays readable. every stop carries alpha, so the video always shows. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 56% at 50% 56%, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.62) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============ NAV STRIP ============ */
.header-strip {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 22px 40px;
}

/* ============ CENTERED PILL ============ */
.header-pill {
  max-width: 1180px;
  margin: 0 auto;
  background: #fffffffa;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  box-shadow: #e1fe01 0px 50px 100px -20px, #e1fe01 0px 30px 60px -30px, #2196f33d 0px -2px 6px 0px inset;
}

/* ============ LOGO ============ */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  padding: 8px 16px;
}

.nav-logo img {
  height: 24px;
  display: block;
}

/* ============ NAV MENU ============ */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: #111111;
  font-size: 14.5px;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s ease;
  font-family: "Bricolage Grotesque", sans-serif;
  text-decoration: none;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--menu-color);
  transition: width 0.25s ease;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ============ NAV CTA ============ */
.nav-cta {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #0248f7;
  color: #ffffff;
  border: 1px solid #156db4;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  box-shadow: 0 8px 22px rgba(227, 167, 60, 0.45);
  transform: translateY(-1px);
}

/* ============ HAMBURGER ============ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 8px auto 0;
  background: var(--white);
  border-radius: 24px;
  padding: 10px 24px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu a {
  color: var(--menu-color);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .nav-cta {
  margin-top: 16px;
  text-align: center;
}

body.menu-open .mobile-menu {
  display: flex;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {

  .nav-menu,
  .header-pill .nav-cta {
    display: none;
  }

  .wrap-mplogo {
    width: 100% !important;
  }

  .gispeakerbox0 .gispeakertext0 h4 {
    line-height: normal !important;
  }

  .wrap-speakertiles h2 {
    padding-bottom: 26px;
  }


  .hamburger {
    display: flex;
  }

  .header-pill {
    padding: 8px 10px;
  }

  .header-strip {
    padding: 18px 20px;
  }
}

/* ============ LEFT ICON DOCK ============ */
.side-dock {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.dock-item {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdffeb;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0248f7;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  animation: dock-float 3.2s ease-in-out infinite;
}

.dock-item:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes dock-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.dock-item:hover {
  background: #0248f7;
  border-color: var(--accent);
  color: #28210a;
  transform: scale(1.12);
}

.dock-item.form-trigger::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: dock-pulse 2.4s ease-out infinite;
}

@keyframes dock-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .side-dock {
    display: none;
  }
}

/* ============ CENTER CONTENT ============ */
.hero-center {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
}

.hero-logo {
  max-width: 34%;
  width: 100%;
  margin-bottom: 26px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.55));
}

.hero-tagline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.28;
  max-width: 900px;
  color: var(--white);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #0d6efd;
  color: #ffffff;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(227, 167, 60, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width:520px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }
}

/* ---------- scroll reveal ---------- */
.about-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s cubic-bezier(.16, .8, .3, 1), transform .8s cubic-bezier(.16, .8, .3, 1);
}

.about-reveal.about-in {
  opacity: 1;
  transform: translateY(0);
}

.about-delay-1 {
  transition-delay: .02s;
}

.about-delay-2 {
  transition-delay: .12s;
}

.about-delay-3 {
  transition-delay: .22s;
}

.about-delay-4 {
  transition-delay: .32s;
}

.about-delay-5 {
  transition-delay: .42s;
}

/* 
.about-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 60px 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
} */

.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #000000;
  /* background: rgba(225, 29, 94, .08); */
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.about-heading {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.5px;
  color: #000000;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  /* color: #ffffff; */
  font-size: clamp(30px, 4vw, 55px);
}

.about-heading em {
  color: #0248f7;
  font-style: normal;
}

.about-lede {
  font-size: 17px;
  line-height: 1.65;
  color: #4a4655;
  max-width: 100%;
  margin: 0 0 30px;
}

section#aboutus {
  /* margin-top: 115PX; */
  background: url(../images/StatsBg_.svg);
  background-size: cover;
  padding-bottom: 70px !important;
  background-position: top;
  overflow: hidden;
  padding-top: 103px;
}

.whyp-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.whyp-chips li {
  width: 110px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyp-chips li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 36px;
}

.about-feature h3 {
  font-size: 15px;
  font-weight: 800;
  color: #e11d5e;
  margin: 0 0 8px;
}

.about-feature p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4a4655;
  margin: 0;
}

.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-btn {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 16px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.about-btn-dark {
  background: #0e0c14;
  color: #fff;
}

.about-btn-accent {
  background: #0248f7;
  color: #fff;
}

.about-btn-dark:hover {
  background: #25202f;
}

.about-btn-accent:hover {
  background: #c81552;
}

/* --- right visual: animated "video" panel --- */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
}

.about-dotpattern {
  position: absolute;
  top: -20px;
  right: -40px;
  width: 100%;
  height: 300px;
  /* background-image: radial-gradient(#b9a4ec 1.6px, transparent 1.6px); */
  background-size: 16px 16px;
  /* opacity: .55; */
  -webkit-mask-image: radial-gradient(circle, black 55%, transparent 80%);
  mask-image: radial-gradient(circle, black 55%, transparent 80%);
  z-index: 0;
}

.HexaWrapper_As:before {
  position: absolute;
  content: '';
  left: -10%;
  top: -7%;
  width: 100%;
  height: 580px;
  background: url(../images/CircleElement_.png) no-repeat;
  background-size: cover;
}

.HexaWrapper_As {
  position: relative;
  right: -10%;
}

.HexaWrapper_As {
  position: relative;
  right: -10%;
}

/* ring sits as an even 22px halo around the hexagon - the old asymmetric
   offset + padding put the text on top of the image edge instead */
.circle-text {
  position: absolute;
  top: -22px;
  left: -22px;
  width: calc(94% + 44px);
  height: calc(36vw + 44px);
  padding: 0;
  z-index: 1;
  pointer-events: none;
}

/*.hex-container {
    clip-path: polygon(0.5% 14%, 48.5% 0.75%, 100% 27.5%, 100% 99.75%, 45.2% 99.75%, 0.5% 70.02%);
    background: #fff;
    width: 94%;
    height: 86%;
    padding: 15px;
    z-index: 1;
    position: relative;
}*/

.hex-container {
  clip-path: polygon(0.5% 14%, 48.5% 0.75%, 100% 27.5%, 100% 99.75%, 45.2% 99.75%, 0.5% 70.02%);
  background: #fff;
  width: 100%;
  height: 36vw;
  padding: 15px;
  z-index: 1;
  position: relative;
}

.hex-container img,
.hex-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clip-path: polygon(0.5% 14%, 48.5% 0.75%, 100% 27.5%, 100% 99.75%, 45.2% 99.75%, 0.5% 70.02%);
  background: #fff;
  display: block;
}

.hex-container video {
  -webkit-clip-path: polygon(0.5% 14%, 48.5% 0.75%, 100% 27.5%, 100% 99.75%, 45.2% 99.75%, 0.5% 70.02%);
}

/* about_us.png is landscape inside a portrait hexagon - favour the upper-middle
   of the frame so the skyline and transit corridor survive the crop */
.hex-container img {
  object-position: center 42%;
}

/*.border-text-svg {
    overflow: visible;
    height: 92%;
}*/

.border-text-svg {
  overflow: visible;
  width: 100%;
  height: 100%;
}

.border-text-svg text {
  font-weight: 600;
  letter-spacing: 1px;
}

/*.ForTbbing .hex-container {
    clip-path: polygon(0% 0%, 18.99% 6.33%, 57.3% 0%, 88.75% 6.33%, 97.34% 63.95%, 100% 81.84%, 88.75% 96%, 53.74% 100%, 0% 96%);
    background: #fff;
    width: 92%;
    height: 93%;
    padding: 14px;
    z-index: 1;
    position: relative;
}*/


.ForTbbing .hex-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clip-path: polygon(0% 0%, 18.99% 6.33%, 57.3% 0%, 88.75% 6.33%, 97.34% 63.95%, 100% 81.84%, 88.75% 96%, 53.74% 100%, 0% 96%);
  background: #fff;
}

.HexaWrapper_As.ForTbbing {
  right: inherit;
  left: -6.3%;
  margin-top: -6%;
}

div#badgetab01Content {
  margin-top: 30px;
}

.HexaWrapper_As.ForTbbing:before {
  display: none;
}

.HexaWrapper_As.ForTbbing .border-text-svg {
  overflow: visible;
  height: 102%;
  font-family: 'Bomstad Display';
}

.HexaWrapper_As.ForTbbing .circle-text {
  width: 103%;
  height: -webkit-fill-available;
  padding: 26px;
  position: absolute;
  top: -30px;
  left: -28px;
  z-index: 1;
}

.HexaWrapper_As.ForHeader {
  position: relative;
  /* right: -10%; */
  top: 109px !important;
  right: 9%;
}

.ForHeader .hex-container {
  clip-path: polygon(18.75% 20.5%, 60.87% 3.86%, 100% 12.5%, 95.5% 71.25%, 68.04% 85.63%, 0.38% 85.63%);
  height: 86%;
}

.ForHeader .border-text-svg {
  height: 92%;
}

.ForHeader .hex-container video {
  clip-path: polygon(18.75% 20.5%, 60.87% 3.86%, 100% 12.5%, 95.5% 71.25%, 68.04% 85.63%, 0.38% 85.63%);
}

.ForHeader .circle-text {
  padding: 16px;
  top: -26px;
  left: -25px;
  z-index: 1;
}

.about-badgering {
  position: absolute;
  width: 520px;
  height: 520px;
  animation: about-spin 26s linear infinite;
  z-index: 2;
}

@keyframes about-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-badgering text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 3px;
  fill: #14121a;
}

.about-hexframe {
  position: relative;
  width: 400px;
  height: 400px;
  z-index: 1;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  box-shadow: 0 30px 60px -20px rgba(20, 18, 26, .35);
  overflow: hidden;
}

.about-hexframe svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* motion inside the "video" panel */
.about-panlayer {
  animation: about-pan 18s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes about-pan {
  from {
    transform: scale(1.06) translateX(-2%);
  }

  to {
    transform: scale(1.12) translateX(2%);
  }
}

.about-cloud {
  animation: about-drift 22s linear infinite;
}

.about-cloud-2 {
  animation-duration: 30s;
  animation-delay: -6s;
}

@keyframes about-drift {
  from {
    transform: translateX(-60px);
  }

  to {
    transform: translateX(460px);
  }
}

.about-window {
  animation: about-flicker 3.6s ease-in-out infinite;
}

.about-window:nth-child(odd) {
  animation-delay: .6s;
}

.about-window:nth-child(3n) {
  animation-delay: 1.3s;
}

.about-window:nth-child(4n) {
  animation-delay: 2s;
}

@keyframes about-flicker {

  0%,
  100% {
    opacity: .9;
  }

  45% {
    opacity: .25;
  }

  60% {
    opacity: .9;
  }
}

.about-cranehook {
  animation: about-hoist 5s ease-in-out infinite;
}

@keyframes about-hoist {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(18px);
  }
}

.about-sun {
  animation: about-glow 6s ease-in-out infinite;
}

@keyframes about-glow {

  0%,
  100% {
    opacity: .85;
    r: 55;
  }

  50% {
    opacity: 1;
    r: 60;
  }
}

/* ---------- marquee ticker ---------- */
.about-marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #0e0c14;
  padding: 14px 0;
  margin-top: 26px;
}

.about-marquee-track {
  display: inline-block;
  animation: about-scroll-left 22s linear infinite;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #f2ecff;
}

.about-marquee-track span {
  margin: 0 22px;
  opacity: .85;
}

@keyframes about-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-badgering,
  .about-panlayer,
  .about-cloud,
  .about-window,
  .about-cranehook,
  .about-sun,
  .about-marquee-track {
    animation: none !important;
  }

  .about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width:980px) {
  .about-wrap {
    grid-template-columns: 1fr;
    padding: 50px 24px 20px;
  }

  .hero-logo {
    max-width: 100% !important;
  }

  section#aboutus {
    margin-top: 0px !important;
  }

  .hex-container {
    width: 100% !important;
    height: 75vw !important;
  }

  .circle-text {
    width: calc(100% + 44px);
    height: calc(75vw + 44px);
  }

  .HexaWrapper_As:before {
    width: 341px !important;
    height: 336px !important;
  }

  section#speakers {
    padding: 14px !important;
  }

  .gispeakerbox0 .gispeakertext0 h2 {
    line-height: normal !important;
  }

  .keythemes01 .tabrightImage {
    height: auto !important;
  }

  .about-visual {
    height: 380px;
    order: -1;
  }

  .about-badgering {
    width: 340px;
    height: 340px;
  }

  .about-hexframe {
    width: 260px;
    height: 260px;
  }

  .about-heading {
    font-size: 36px;
  }

  .about-stats-outer {
    margin-top: 48px;
    padding: 0 20px;
  }

  section#aboutus {
    padding-bottom: 48px !important;
  }
}

.wrpbdr {
  border-bottom: 1px solid white;
  border-radius: 27px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}



.gispeakerbox0 {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-top: 2vw;
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.gispeakerbox0 figure {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-top: -4vw;
  max-height: 310px;
  aspect-ratio: 230 / 190;
}

.gispeakerbox0 figure img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(44%, #000000), to(transparent));
  -webkit-mask-image: linear-gradient(to bottom, #000000 44%, transparent 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(44%, #000000), to(transparent));
  mask-image: linear-gradient(to bottom, #000000 44%, transparent 100%);
}

.gispeakerbox0 figure .gispeakertag {
  position: absolute;
  left: 0;
  top: 4rem;
  z-index: 1;
  padding-left: 0.75rem;
  text-align: center;
  -ms-writing-mode: sideways-lr;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  white-space: nowrap;
  -webkit-writing-mode: sideways-lr;
  -ms-writing-mode: sideways-lr;
  transform: translateY(-4%);
  -webkit-transform: translateY(-4%);
  -moz-transform: translateY(-4%);
  -ms-transform: translateY(-4%);
  -o-transform: translateY(-4%);
}

.gispeakerbox0 figure .gispeakertag h5 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2vw;
  font-family: 'Bricolage Grotesque';
  margin: 0;
  padding: 0;
  background: #0248f7;
  padding: 11px 3px;
  border-radius: 31px;
}

section#speakers .col-lg-3 {
  margin-bottom: 57px;
}

.gispeakerbox0 .gispeakertext0 {
  position: relative;
  padding: 1rem 1rem 1rem;
}

.gispeakerbox0 .gispeakertext0 h2 {
  color: #000000;
  font-size: 20px;
  line-height: 1.652vw;
  font-family: "Bricolage Grotesque", sans-serif;
  margin-bottom: 5px;
}

.gispeakerbox0 .gispeakertext0 p {
  color: rgb(0 0 0);
  font-size: 0.824vw;
  line-height: 1.14vw;
  padding-right: 1vw;
  margin-bottom: 0.5rem;
}

.gispeakerbox0 .gispeakertext0 .fs21 {
  font-size: 1.214vw;
  line-height: 0.875vw;
}

.gispeakerbox0 .gispeakertext0 h4 {
  color: #000000;
  font-size: 14px;
  line-height: 1.5vw;
  letter-spacing: -0.45px;
  font-weight: bold;
  font-family: 'Bricolage Grotesque';
  margin-bottom: 0;
}

.wrap-speakertiles h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 45px;
  text-align: center;
  padding-bottom: 71px;
  color: #000000;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  /* color: #ffffff; */
  font-size: clamp(30px, 4vw, 55px);
}

/* ============ SECTION + ANIMATED BG ============ */
.tracks-section {
  position: relative;
  width: 100%;
  padding: 50px 60px 90px;
  overflow: hidden;
  background: #f1f1f1;
}

.tracks-section::before {
  content: '';
  position: absolute;
  inset: -50% 0;
  z-index: 0;
  background-image: repeating-linear-gradient(35deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 2px,
      transparent 2px,
      transparent 14px);
  animation: bg-drift 14s linear infinite;
  pointer-events: none;
}

@keyframes bg-drift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(120px);
  }
}


/* ============ HEADER ============ */
.tracks-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 38px;
}

.tracks-header .eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(33 0 0 / 92%);
  margin-bottom: 10px;
}

.tracks-header h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #000000;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  /* color: #ffffff; */
  font-size: clamp(30px, 4vw, 55px);
}

/* ============ GRID ============ */
.tracks-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1560px;
  margin: 0 auto;
}

.track-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 4);
  max-width: calc((100% - 48px) / 4);
  aspect-ratio: 1/1;
  perspective: 1200px;
}

.card-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
}

.track-card:hover .card-flip {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.card-front {
  background-size: cover;
  background-position: center;
}

.card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 20, 0.35) 0%, rgb(5 8 20 / 84%) 100%);
  z-index: 0;
}

.card-front span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: white;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.card-back {
  background: linear-gradient(150deg, #000000 0%, #0248f7 55%, #000000 100%);
  transform: rotateY(180deg);
  flex-direction: column;
  gap: 8px;
}

.card-back h4 {
  font-size: 13.5px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}

.card-back p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* ============ BOTTOM FLOATING CTA ============ */
.cta-dock {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin-top: -34px;
}

.cta-dock-inner {
  display: flex;
  align-items: center;
  gap: 0;
  background: #0248f7b0;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 16px 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 26px;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-item:last-child {
  border-right: none;
}

.cta-item svg {
  opacity: 0.95;
  color: white;
}

.cta-item span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: white;
}

/* ============ SOCIAL RAIL ============ */
.social-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  display: flex;
  flex-direction: column;
}

.social-rail a {
  width: 38px;
  height: 38px;
  background: rgba(10, 10, 16, 0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-rail a:hover {
  background: #d1348f;
}

/* ============ RESPONSIVE ============ */
@media (max-width:1200px) {
  .track-card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}

@media (max-width:720px) {
  .track-card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }

  .tracks-section {
    padding: 40px 20px 80px;
  }

  .cta-dock-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .cta-item {
    border-right: none;
    padding: 6px 16px;
  }

  .social-rail {
    display: none;
  }
}

@media (max-width:420px) {
  .tracks-grid {
    gap: 12px;
  }

  .track-card {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .track-card span {
    font-size: 13px;
  }
}

section#speakers {
  background: linear-gradient(115deg, #1b4a80 0%, #ffffff 22%, #fdfbff 45%, #1b4a80 68%, #1b4a80 100%);
  background-size: cover;
  padding: 66px;
}

.keythemes01 {
  background: #101938;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  z-index: 99;
}

.keythemes01:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0043b59e;
  content: "";
  z-index: -1;
}

.cardflipbox .cardflipinner {
  position: relative;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  -ms-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  -webkit-backface-visibility: hidden;
}

.cardflipbox .innercontent {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 10px;
  outline: #fff0 solid 1px;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -moz-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -o-transform: translateY(-50%) translateZ(60px) scale(0.94);
}

.cardflipbox .cardback,
.cardflipbox .cardfront {
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: #101010;
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -moz-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.cardflipbox .cardfront {
  transform: rotateY(0);
  transform-style: preserve-3d;
  -ms-transform: rotateY(0);
  -webkit-transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform: rotateY(0);
  -o-transform: rotateY(0);
}

.cardflipbox .cardback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}

.cardflipbox:hover .cardfront {
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
}

.cardflipbox:hover .cardback {
  -ms-transform: rotateY(0);
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -moz-transform: rotateY(0);
  -o-transform: rotateY(0);
}

.cardflipbox .cardflipinner .cardfront {
  background-size: cover;
  background-position: center;
  backface-visibility: hidden;
  -webkit-transition:
    opacity 0.55s 0.25s,
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition:
    opacity 0.55s 0.25s,
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.55s 0.25s;
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.55s 0.25s,
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  border: 1px solid #333;
  -webkit-backface-visibility: hidden;
  -ms-transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.55s 0.25s;
  -webkit-transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.55s 0.25s;
  -moz-transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.55s 0.25s;
  -o-transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    opacity 0.55s 0.25s;
}

.cardflipbox .cardflipinner .cardfront::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.5;
  border-radius: 15px;
  background-color: inherit;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.cardflipbox .innercontent h2 {
  color: #fff;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.cardflipbox .innercontent p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 10px;
}

.agendaGlance {
  position: relative;
}

.keythemesItem25v3 {
  position: relative;
  padding: 0 0;
  border-radius: 20px;
  padding-bottom: 40px;
  border: #fff solid 1px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 99;
  background: #0098a4ad;
  background-image: -o-linear-gradient(top, #ffd500, #2c90f4, #03c7d6);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd500), color-stop(#2c90f4), to(#03c7d6));
  background-image: linear-gradient(to bottom, #ffd500, #2c90f4, #03c7d6);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.keythemesItem25v3 figure {
  position: relative;
}

.keythemesItem25v3 figure img {
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
}

.keythemesItem25v3 h2 {
  color: #fff;
  font-size: 1.3vw;
  line-height: 1.5vw;
  text-transform: uppercase;
  padding: 0 20px;
  min-height: 5vw;
  padding-top: 2.3vw;
}

.keythemesItem25v3 p {
  color: #fff;
  padding: 6px 20px;
  width: 100%;
}

.keydaybxv3 {
  text-align: center;
  display: inline-block;
  margin: 10px auto;
  width: auto;
  color: #000 !important;
  background: #ffe075;
  padding: 10px 30px;
  font-weight: 800;
  line-height: 15px;
  transform: rotate(357deg);
  position: absolute;
  bottom: -8%;
  left: 20px;
  font-size: 20px;
  -webkit-transform: rotate(357deg);
  -moz-transform: rotate(357deg);
  -ms-transform: rotate(357deg);
  -o-transform: rotate(357deg);
}

.regiontechweek {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  width: 100%;
  z-index: 99;
  padding: 6vw 0;
}

.regiontechweek:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -o-linear-gradient(right, rgb(133 118 255 / 18%) 0, rgb(133 118 255 / 26%) 29%, #03c7d6 57%, #70bbf9);
  background: -webkit-gradient(linear,
      right top,
      left top,
      color-stop(0, rgb(133 118 255 / 18%)),
      color-stop(29%, rgb(133 118 255 / 26%)),
      color-stop(57%, #03c7d6),
      to(#70bbf9));
  background: linear-gradient(270deg, rgb(133 118 255 / 18%) 0, rgb(133 118 255 / 26%) 29%, #03c7d6 57%, #70bbf9);
  z-index: -1;
}

.regiontechweek h5 {
  font-size: 1.6vw;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.regiontechweek p {
  margin: 0;
  padding: 0;
}

.hubfeatwrap {
  position: relative;
}

.hubdeatITem {
  position: relative;
  background-color: #000;
  padding: 40px 40px;
  border-radius: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.bg-gradient01 {
  background: #03c7d6;
  background-image: -o-linear-gradient(top, #ffd500, #fcf0be, #03c7d6);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd500), color-stop(#fcf0be), to(#03c7d6));
  background-image: linear-gradient(to bottom, #ffd500, #fcf0be, #03c7d6);
}

.bg-gradient02 {
  background: #0043b5;
  background-image: -o-linear-gradient(top, #ffd500, #fcf0be, #0e70e5);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd500), color-stop(#fcf0be), to(#0e70e5));
  background-image: linear-gradient(to bottom, #ffd500, #fcf0be, #0e70e5);
}

.bg-gradient03 {
  background: #03c7d6;
  background-image: -o-linear-gradient(top, #ffd500, #fcf0be, #00aec5);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd500), color-stop(#fcf0be), to(#00aec5));
  background-image: linear-gradient(to bottom, #ffd500, #fcf0be, #00aec5);
}

.hubdeatITem h2 {
  font-size: 1.8vw;
  padding-bottom: 20px;
}

.hubdeatITem h2 span {
  display: block;
  font-size: 3vw;
}

.hubdeatITem p {
  margin: 0;
}


/* =========================================================
   Flagship Programmes & Live Experiences - Tab Section
   Recreated to match gitexcac.com design
   ========================================================= */
ul.wrp-listwhould li {
  line-height: 40px;
}

.keythemes01 {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-color: #0a1e3f;
  /* fallback if bg image missing */
}

.keythemes01 .auto-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.keythemes01 .mainheading {
  text-align: center;
  margin-bottom: 45px;
}

.keythemes01 .mainheading h2.white-text {
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 55px);
}

.keythemes01 .mainheading p.white-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin: 0;
}

/* ---------- Tabs (logo buttons) ---------- */

.eventshowtabWrap {
  position: relative;
}

.eventshowtabWrap .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin: 0 0 -35px 0;
  padding: 0 30px;
  border: none;
  position: relative;
  z-index: 3;
}

.eventshowtabWrap .nav-item {
  flex: 1 1 200px;
  max-width: 260px;
}

.eventshowtabWrap .nav-link {
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: background 0.35s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.eventshowtabWrap .nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.eventshowtabWrap .nav-link figure {
  margin: 0;
  max-width: 100%;
  max-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventshowtabWrap .nav-link figure img {
  max-width: 100%;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Active tab: tinted background matching that panel's theme colour,
   logo image flips to white via CSS filter */
.eventshowtabWrap .nav-link.active {
  background: var(--tab-accent, #1b3a6b);
}

.eventshowtabWrap .nav-link.active figure img {
  filter: brightness(0) invert(1);
}

/* Per-tab accent colours (also used for the active panel gradient) */
#Shiptab01 {
  --tab-accent: #1b3a6b;
}

#Shiptab02 {
  --tab-accent: #0f7a72;
}

#Shiptab03 {
  --tab-accent: #1a1a2e;
}

#Shiptab04 {
  --tab-accent: #1f6b3e;
}

/* ---------- Tab content card ---------- */

.keythemes01 .tab-content {
  position: relative;
  z-index: 2;
}

.keythemes01 .tab-pane {
  display: none;
}

.keythemes01 .tab-pane.active.show {
  display: block;
  animation: fadeIn 0.45s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.customtabInner {
  border-radius: 28px;
  padding: 70px 40px 40px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--panel-start, #16305c) 0%, var(--panel-end, #2f5aa8) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Panel-specific gradients matching each tab's accent */
#Shippanel01 .customtabInner {
  --panel-start: #0f2a52;
  --panel-end: #2f5aa8;
}

#Shippanel02 .customtabInner {
  --panel-start: #0248f726;
  --panel-end: #121313;
}

#Shippanel03 .customtabInner {
  --panel-start: #0f0f10;
  --panel-end: #172b9d;
}

#Shippanel04 .customtabInner {
  --panel-start: #2940bf;
  --panel-end: #050505;
}

.tabrightImage img {
  width: 100%;
}

.customtabInner h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
}

.customtabInner>.row>div>p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.customtabInner strong {
  color: #ffffff;
}

/* ---------- Stats row ---------- */

.tabStats {
  margin: 24px 0 30px;
}

.tabStats .row {
  display: flex;
  flex-wrap: wrap;
}

.statsITemTab {
  text-align: left;
  padding-right: 10px;
}

.statsITemTab h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.statsITemTab p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.keythemes01 .borderright {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

/* Odometer number styling - simplified single-value display */
.keythemes01 .odometer {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.keythemes01 .odometer-inside {
  display: none;
  /* hide the original scrambled markup, JS injects clean value */
}

.keythemes01 .odometer-value-display {
  display: inline-block;
}

/* ---------- Accordion ---------- */

.keythemes01 .accordion {
  margin-top: 10px;
  margin-bottom: 24px;
}

.keythemes01 .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.keythemes01 .accordion-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.keythemes01 .accordion-header {
  margin: 0;
}

.keythemes01 .accordion-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 18px 34px 18px 0;
  cursor: pointer;
  position: relative;
  display: block;
}

.keythemes01 .accordion-button::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.keythemes01 .accordion-button.collapsed::after {
  content: "+";
}

.keythemes01 .accordion-button:not(.collapsed)::after {
  content: "\2212";
  /* minus sign */
}

.keythemes01 .accordion-collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.keythemes01 .accordion-collapse.show {
  max-height: 800px;
}

.keythemes01 .accordion-body {
  padding: 0 0 22px;
}

.keythemes01 .accordion-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */

.herobtnStyle2 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.herothemeButton2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.herothemeButton2:hover {
  background: #ffffff;
  color: var(--panel-start, #16305c);
}

.herothemeButton2.redHomeButton {
  background: #ffffff;
  color: #16305c;
  border-color: #ffffff;
}

.herothemeButton2.redHomeButton:hover {
  background: transparent;
  color: #ffffff;
}

.herothemeButton2.blueHomeButton {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.herothemeButton2.blueHomeButton:hover {
  background: #ffffff;
  color: #16305c;
}

/* ---------- Right side image ---------- */

.keythemes01 .tabrightImage {
  /* position: relative; */
  /* height: 100%; */
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.keythemes01 .tabrightImage figure {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

/* ---------- Grid helpers (in case Bootstrap grid isn't loaded) ---------- */

.keythemes01 .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.keythemes01 .row>[class*="col-"] {
  padding: 0 12px;
  box-sizing: border-box;
}

.keythemes01 .col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.keythemes01 .col-sm-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.keythemes01 .col-4,
.col-sm-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.keythemes01 .col-6,
.col-sm-3 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .keythemes01 .eventshowtabWrap .nav-tabs {
    margin-bottom: -20px;
    padding: 0 10px;
  }

  .keythemes01 .customtabInner {
    padding: 60px 24px 30px;
  }

  .keythemes01 .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .keythemes01 .col-sm-6:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .keythemes01 .eventshowtabWrap .nav-tabs {
    gap: 8px;
  }

  .keythemes01 .eventshowtabWrap .nav-link {
    height: 60px;
    padding: 8px;
  }

  .keythemes01 .mainheading h2.white-text {
    font-size: 28px;
  }

  .keythemes01 .statsITemTab h2 {
    font-size: 26px;
  }

  .keythemes01 .col-4,
  .col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .keythemes01 .borderright {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 12px;
  }
}



/* placeholder gradient for the section background image */
.keythemes01 {
  background-image: linear-gradient(160deg, #0a1e3f 0%, #123a63 60%, #1b4a80 100%);
}

/* placeholder gradients for right-side images since original assets aren't available here */
#Shippanel01 .tabrightImage figure {
  background: linear-gradient(135deg, #101c33, #3a4a6b);
}

#Shippanel02 .tabrightImage figure {
  background: linear-gradient(135deg, #062e2a, #1cb8a8);
}

#Shippanel03 .tabrightImage figure {
  background: linear-gradient(135deg, #0c0c18, #3a3a5c);
}

#Shippanel04 .tabrightImage figure {
  background: linear-gradient(135deg, #0c2818, #2e8b57);
}

/* placeholder logo boxes since original logo images aren't available here */
.keythemes01 .nav-link figure {
  width: 100%;
  height: 100%;
}

.keythemes01 .nav-link figure img {
  display: none;
}

.keythemes01 .nav-link figure::after {
  content: attr(data-label);
  font-weight: 600;
  font-size: 19px;
  text-align: center;
  color: #16305c;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 23px;
}

.keythemes01 .nav-link.active figure::after {
  color: #ffffff;
}

.keythemes01 .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: #5533aeb0 !important;
  border-color: var(--bs-nav-tabs-link-active-border-color);
}


.whyattend-section {
  background: #ffffff;
  padding: 80px 6vw 90px;
  overflow: hidden;
}

.whyattend-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.whyattend-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff8a5c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.whyattend-eyebrow::before,
.whyattend-eyebrow::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: #ff8a5c;
}

.whyattend-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  color: #000000;
  font-size: clamp(30px, 4vw, 55px);
}

.whyattend-title span {
  color: #0248f7;
}

.whyattend-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}

.whyattend-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #14181f;
  background-size: cover;
  background-position: center;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whyattend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

.whyattend-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.15) 0%, rgba(6, 8, 12, 0.55) 55%, rgba(6, 8, 12, 0.92) 100%);
  transition: background 0.4s ease;
}

.whyattend-card:hover::before {
  background: linear-gradient(180deg, rgba(255, 90, 40, 0.10) 0%, rgba(6, 8, 12, 0.6) 55%, rgba(6, 8, 12, 0.95) 100%);
}

.whyattend-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whyattend-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.whyattend-label {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

/* Bento layout: card 1 large feature, rest varied sizes */
.whyattend-card-1 {
  grid-column: span 3;
  grid-row: span 2;
}

.whyattend-card-2 {
  grid-column: span 3;
  grid-row: span 1;
}

.whyattend-card-3 {
  grid-column: span 3;
  grid-row: span 1;
}

.whyattend-card-4 {
  grid-column: span 2;
  grid-row: span 1;
}

.whyattend-card-5 {
  grid-column: span 2;
  grid-row: span 1;
}

.whyattend-card-6 {
  grid-column: span 2;
  grid-row: span 1;
}

.whyattend-card-7 {
  grid-column: span 6;
  grid-row: span 1;
}

.whyattend-card-1 .whyattend-label {
  font-size: 22px;
}

.whyattend-card-1 .whyattend-body {
  padding: 26px;
}

.whyattend-card-7 .whyattend-body {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 900px) {
  .whyattend-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .whyattend-card-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .whyattend-card-2,
  .whyattend-card-3,
  .whyattend-card-4,
  .whyattend-card-5,
  .whyattend-card-6,
  .whyattend-card-7 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .whyattend-card-7 {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .whyattend-section {
    padding: 60px 6vw 70px;
  }

  .whyattend-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
  }

  .whyattend-card-1,
  .whyattend-card-2,
  .whyattend-card-3,
  .whyattend-card-4,
  .whyattend-card-5,
  .whyattend-card-6,
  .whyattend-card-7 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .whyattend-card-1 {
    grid-row: span 1;
  }

  .whyattend-card-1 .whyattend-label {
    font-size: 17px;
  }
}

/* ============ FOOTER ============ */
.hnkFooterWrap {
  position: relative;
  display: block;
  width: 100%;
  background: #041027;
  overflow: hidden;
}

/* photograph sits behind, the card dissolves into it at the bottom */
.hnkFooterCityBg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(4, 10, 26, 0.72) 0%, rgba(4, 10, 26, 0.56) 48%, rgba(4, 10, 26, 0.70) 100%),
    url('https://commons.wikimedia.org/wiki/Special:FilePath/Sunset%20view%20of%20Sukhna%20Lake%2C%20Chandigarh%2C%20India.JPG');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0;
}

.hnkFooterCard {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1400px;
  padding: 68px 52px 40px;
  background: transparent;
}

.hnkFooterTop {
  display: block;
  padding-bottom: 34px;
}

/* brand column */
.hnkFooterBrand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(150, 190, 255, 0.16);
}

.hnkFooterLogo {
  display: block;
  width: 100%;
  max-width: 236px;
  height: auto;
  margin: 0 auto 20px;
}

.hnkFooterTagline {
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(219, 231, 252, 0.8);
  margin: 0 auto 22px;
  max-width: 520px;
}

.hnkFooterFacts {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hnkFooterFacts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #d3e3ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(150, 190, 255, 0.24);
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.hnkFooterFacts svg {
  flex: 0 0 auto;
  color: #8cb9ff;
}

.hnkFooterCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #06305f;
  background: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hnkFooterCta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.75);
  color: #06305f;
}

/* link columns */
.hnkFooterCols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 1040px;
  margin: 0 auto;
}

.hnkFooterCol {
  min-width: 0;
  text-align: center;
}

.hnkFooterCol h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 6px 0 18px;
  white-space: nowrap;
}

.hnkFooterCol a {
  display: block;
  font-size: 14.2px;
  line-height: 1.45;
  color: rgba(214, 227, 250, 0.78);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.22s ease;
}

.hnkFooterCol a:hover {
  color: #ffffff;
}

.hnkFooterDivider {
  border: none;
  border-top: 1px solid rgba(150, 190, 255, 0.2);
  margin: 0;
}

.hnkFooterBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0 8px;
}

.hnkFooterCopyright {
  font-size: 13px;
  color: rgba(206, 221, 247, 0.72);
  margin: 0;
}

/* real circular buttons - these used to be 0x0 and effectively invisible */
.hnkFooterSocials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.hnkFooterSocials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #dce9ff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(150, 190, 255, 0.26);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hnkFooterSocials a:hover {
  background: #ffffff;
  color: #0248f7;
  transform: translateY(-2px);
}

/* ---------- responsive ---------- */
@media (max-width: 1150px) {
  .hnkFooterCols {
    gap: 26px;
  }
}

/* ios safari ignores background-attachment:fixed and renders it badly,
   so touch devices get the normal scrolling photo instead */
@media (hover: none),
(max-width: 860px) {
  .hnkFooterCityBg {
    background-attachment: scroll;
  }
}

@media (max-width: 860px) {
  .hnkFooterCard {
    padding: 54px 28px 32px;
  }

  .hnkFooterCols {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .hnkFooterCard {
    padding: 44px 20px 28px;
  }

  .hnkFooterTop {
    padding-bottom: 26px;
  }

  .hnkFooterBrand {
    margin-bottom: 34px;
    padding-bottom: 30px;
  }

  .hnkFooterCols {
    gap: 26px 18px;
  }

  .hnkFooterLogo {
    max-width: 200px;
  }

  .hnkFooterBottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hnkFooterCta,
  .hnkFooterCol a,
  .hnkFooterSocials a {
    transition: none;
  }

  .hnkFooterCta:hover,
  .hnkFooterSocials a:hover {
    transform: none;
  }

  .hnkFooterCol a:hover {
    padding-left: 0;
  }
}

.ptnrMarqueeSection {
  padding: 16px;
  width: 100%;
  max-width: 85%;
  margin: 28px auto;
  padding: 42px 20px;
  border: 2px solid #090a0a5e;
  border-radius: 28px;
}

.ptnrMarqueeHeading {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.ptnrMarqueeSubheading {
  text-align: center;
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 36px;
}

/* one masked viewport per row so the loop edges fade instead of hard-cutting */
.ptnrMarqueeRow {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 8%, #000 92%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 8%, #000 92%, rgba(0, 0, 0, 0) 100%);
}

.ptnrMarqueeRow+.ptnrMarqueeRow {
  margin-top: 6px;
}

/* track holds TWO copies of the logo set back to back -> seamless, never blank */
.ptnrMarqueeTrack {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  will-change: transform;
}

.ptnrMarqueeTrack--ltr {
  animation: ptnrScrollLTR 28s linear infinite;
}

.ptnrMarqueeTrack--rtl {
  animation: ptnrScrollRTL 28s linear infinite;
}

/* pause on hover, purely cosmetic, remove if not wanted */
.ptnrMarqueeRow:hover .ptnrMarqueeTrack {
  animation-play-state: paused;
}

@keyframes ptnrScrollLTR {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes ptnrScrollRTL {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ptnrMarqueeLogoCard {
  flex: 0 0 auto;
  width: 186px;
  height: 97px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
}

.ptnrMarqueeLogoCard img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.65;
  transition: filter .25s ease, opacity .25s ease;
}

.ptnrMarqueeLogoCard:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width:600px) {
  .ptnrMarqueeLogoCard {
    width: 110px;
    height: 64px;
    padding: 10px 14px;
  }

  .ptnrMarqueeTrack {
    gap: 18px;
  }
}

/* ============ WHY PUNJAB ============ */
/* dark panel between two light sections - gives the page a break in rhythm */
.whyp-section {
  position: relative;
  background: #061024;
  background-image:
    radial-gradient(ellipse 60% 55% at 82% 18%, rgba(2, 72, 247, 0.30) 0%, rgba(2, 72, 247, 0) 68%),
    radial-gradient(ellipse 55% 50% at 8% 92%, rgba(2, 72, 247, 0.18) 0%, rgba(2, 72, 247, 0) 70%),
    linear-gradient(165deg, #061024 0%, #0a1c3f 48%, #050d1e 100%);
  padding: 96px 0 100px;
  overflow: hidden;
}

.whyp-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* content left, image right */
.whyp-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 62px;
  align-items: center;
}

/* min-width:0 stops the long text from blowing out the grid track */
.whyp-copy {
  min-width: 0;
}

.whyp-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ea2ff;
  border: 1px solid rgba(110, 162, 255, 0.34);
  background: rgba(2, 72, 247, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.whyp-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 20px;
}

.whyp-title em {
  color: #4d8dff;
  font-style: normal;
}

.whyp-lede {
  font-size: 17px;
  line-height: 1.68;
  color: rgba(226, 234, 250, 0.82);
  margin: 0 0 34px;
  max-width: 620px;
}

/* priority list */
.whyp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.whyp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.whyp-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(110, 162, 255, 0.22);
  transform: translateX(4px);
}

.whyp-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(145deg, #0248f7 0%, #1b6bff 100%);
  box-shadow: 0 10px 22px -10px rgba(2, 72, 247, 0.9);
}

.whyp-icon svg {
  display: block;
}

.whyp-itemtext {
  min-width: 0;
}

.whyp-itemtext h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 5px;
  letter-spacing: 0.01em;
}

.whyp-itemtext p {
  font-size: 14.8px;
  line-height: 1.6;
  color: rgba(215, 226, 245, 0.76);
  margin: 0;
  overflow-wrap: break-word;
}

/* right visual */
.whyp-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* offset accent frame behind the photo */
/* ---------- punjab map collage ---------- */
.whyp-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.whyp-mapwrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 26px;
}

/* dotted field behind the state shape */
.whyp-mapwrap::before {
  content: '';
  position: absolute;
  inset: 8% -6% 4% -6%;
  background-image: radial-gradient(rgba(120, 170, 255, 0.26) 1.4px, transparent 1.4px);
  background-size: 17px 17px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 45%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 45%, transparent 78%);
  z-index: 0;
  pointer-events: none;
}

/* the state silhouette - real punjab boundary, dissolved from district data */
.whyp-map {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 883 / 1000;
  -webkit-clip-path: url(#whypPunjabShape);
  clip-path: url(#whypPunjabShape);
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.6));
}

/* collage bands - overlapping, mask-blended so they melt into each other */
.whyp-band {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.whyp-band-1 {
  top: 0;
  height: 36%;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=700&auto=format&fit=crop');
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
}

.whyp-band-2 {
  top: 27%;
  height: 32%;
  background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?q=80&w=700&auto=format&fit=crop');
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 70%, transparent 100%);
}

.whyp-band-3 {
  top: 52%;
  height: 30%;
  background-image: url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?q=80&w=700&auto=format&fit=crop');
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
}

.whyp-band-4 {
  top: 74%;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=700&auto=format&fit=crop');
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
}

/* brand tint unifies four unrelated photographs into one image */
.whyp-maptint {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(2, 72, 247, 0.52) 0%, rgba(2, 72, 247, 0.10) 34%, rgba(2, 72, 247, 0.06) 66%, rgba(6, 18, 43, 0.42) 100%);
  mix-blend-mode: multiply;
}

/* crisp edge on the silhouette */
.whyp-mapedge {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  height: calc(100% - 26px);
  z-index: 2;
  fill: none;
  stroke: rgba(140, 185, 255, 0.55);
  stroke-width: 1.5;
  pointer-events: none;
}

/* floating state label */
.whyp-mappill {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.whyp-visual.about-reveal.about-delay-3.about-in img {
  width: 100%;
}

.whyp-badge {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 18px;
  border-radius: 16px;
  background: rgba(6, 16, 36, 0.92);
  border: 1px solid rgba(110, 162, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 44px -18px rgba(0, 0, 0, 0.9);
  max-width: calc(100% - 20px);
}

.whyp-badge-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #4d8dff;
}

.whyp-badge-text {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.42;
  color: rgba(226, 234, 250, 0.9);
}

/* authorities strip */
.whyp-authorities {
  margin-top: 66px;
  padding: 30px 34px;
  border-radius: 20px;
  border: 1px solid rgba(110, 162, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.whyp-auth-head h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 5px;
}

.whyp-auth-head p {
  font-size: 14px;
  color: rgba(215, 226, 245, 0.72);
  margin: 0;
}

.whyp-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.whyp-chips li {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  /* color: #cfe0ff; */
  background: rgb(242 246 255);
  border: 1px solid rgba(110, 162, 255, 0.32);
  padding: 9px 17px;
  /* border-radius: 999px; */
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.whyp-chips li:hover {
  background: #0248f7;
  color: #ffffff;
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .whyp-grid {
    gap: 44px;
  }
}

@media (max-width: 991px) {
  .whyp-section {
    padding: 74px 0 78px;
  }

  /* stack: copy first so the argument leads, image supports it below */
  .whyp-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .whyp-visual {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .whyp-mapwrap {
    max-width: 430px;
  }

  .whyp-lede {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .whyp-section {
    padding: 62px 0 66px;
  }

  .whyp-authorities {
    margin-top: 48px;
    padding: 26px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .whyp-container {
    padding: 0 18px;
  }

  .whyp-mapwrap {
    max-width: 320px;
  }

  .whyp-mappill {
    font-size: 13.5px;
    padding: 8px 16px;
  }

  .whyp-item {
    gap: 13px;
    padding: 14px 12px;
  }

  .whyp-item:hover {
    transform: none;
  }

  .whyp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .whyp-icon svg {
    width: 20px;
    height: 20px;
  }

  .whyp-badge {
    left: 0;
    bottom: 0;
    padding: 12px 15px;
    gap: 11px;
  }

  .whyp-badge-num {
    font-size: 31px;
  }

  .whyp-chips {
    gap: 8px;
  }

  .whyp-chips li {
    font-size: 12px;
    padding: 8px 13px;
  }
}

/* --- stats: floating divided panel --- */
.about-stats-outer {
  max-width: 1240px;
  margin: 70px auto 0;
  padding: 0 24px;
}

.about-stats-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #ffffff;
  border: 1px solid rgba(2, 72, 247, 0.10);
  border-radius: 24px;
  box-shadow: 0 30px 70px -32px rgba(24, 20, 60, 0.38);
  overflow: hidden;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 36px 16px 32px;
  border-right: 1px solid #eef0f8;
  transition: background 0.3s ease;
}

.about-stat:last-child {
  border-right: none;
}

.about-stat:hover {
  background: #fbfcff;
}

.about-stat-ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0248f7;
  background: linear-gradient(150deg, rgba(2, 72, 247, 0.11) 0%, rgba(2, 72, 247, 0.035) 100%);
  border: 1px solid rgba(2, 72, 247, 0.13);
  margin-bottom: 16px;
}

.about-stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(30px, 2.9vw, 42px);
  font-weight: 800;
  color: #14121a;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.about-stat-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #6a6880;
  text-transform: uppercase;
  line-height: 1.45;
  max-width: 15ch;
}

/* stats panel reflow - dividers must follow the wrap, so the right border is
   cleared at each row end and a bottom border added to every row but the last */
@media (max-width: 1100px) {
  .about-stats-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stat:nth-child(3n),
  .about-stat:last-child {
    border-right: none;
  }

  .about-stat:nth-child(-n+3) {
    border-bottom: 1px solid #eef0f8;
  }
}

@media (max-width: 700px) {
  .about-stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat {
    padding: 28px 14px 26px;
  }

  .about-stat:nth-child(n) {
    border-right: 1px solid #eef0f8;
    border-bottom: 1px solid #eef0f8;
  }

  .about-stat:nth-child(2n),
  .about-stat:last-child {
    border-right: none;
  }

  /* odd count - the fifth sits full width so no half-empty cell is left */
  .about-stat:last-child {
    grid-column: 1 / -1;
    border-bottom: none;
  }
}

@media (max-width: 420px) {
  .about-stats-outer {
    padding: 0 14px;
  }

  .about-stat {
    padding: 24px 10px 22px;
  }

  .about-stat-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .about-stat-label {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}

@media (prefers-reduced-motion: reduce) {

  .whyp-item,
  .whyp-chips li {
    transition: none;
  }

  .whyp-item:hover {
    transform: none;
  }
}

/* ============ CONTACT ============ */
.ctc-section {
  position: relative;
  background: #ffffff;
  background-image:
    radial-gradient(ellipse 55% 60% at 12% 8%, rgba(2, 72, 247, 0.07) 0%, rgba(2, 72, 247, 0) 62%),
    radial-gradient(ellipse 50% 55% at 90% 92%, rgba(2, 72, 247, 0.06) 0%, rgba(2, 72, 247, 0) 66%);
  padding: 86px 0 96px;
  overflow: hidden;
}

.ctc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.ctc-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}

.ctc-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0248f7;
  border: 1px solid rgba(2, 72, 247, 0.26);
  background: rgba(2, 72, 247, 0.07);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.ctc-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #000000;
  margin: 0 0 20px;
}

.ctc-title em {
  color: #0248f7;
  font-style: normal;
}

.ctc-lede {
  font-size: 17px;
  line-height: 1.68;
  color: #4a4655;
  margin: 0;
}

/* contact panel */
.ctc-panel {
  background: #ffffff;
  border: 1px solid rgba(2, 72, 247, 0.12);
  border-radius: 24px;
  box-shadow: 0 30px 70px -34px rgba(24, 20, 60, 0.4);
  padding: 40px 40px 42px;
}

.ctc-panel-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #14121a;
  text-align: center;
  margin: 0 0 30px;
  position: relative;
  padding-bottom: 16px;
}

.ctc-panel-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 52px;
  height: 3px;
  border-radius: 3px;
  background: #0248f7;
}

.ctc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ctc-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid #e8eefc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ctc-card:hover {
  border-color: rgba(2, 72, 247, 0.3);
  box-shadow: 0 18px 34px -20px rgba(2, 72, 247, 0.5);
  transform: translateY(-3px);
}

.ctc-avatar {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(145deg, #0248f7 0%, #2f7bff 100%);
  box-shadow: 0 10px 20px -10px rgba(2, 72, 247, 0.85);
}

.ctc-card-body {
  min-width: 0;
}

.ctc-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #14121a;
  margin: 2px 0 12px;
}

.ctc-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: #4a4655;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s ease;
  overflow-wrap: anywhere;
}

.ctc-link svg {
  flex: 0 0 auto;
  color: #0248f7;
}

.ctc-link:hover {
  color: #0248f7;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .ctc-section {
    padding: 70px 0 76px;
  }

  .ctc-head {
    margin-bottom: 40px;
  }

  .ctc-panel {
    padding: 32px 24px 34px;
  }

  .ctc-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ctc-container {
    padding: 0 18px;
  }

  .ctc-section {
    padding: 58px 0 64px;
  }

  .ctc-panel {
    padding: 26px 18px 28px;
    border-radius: 20px;
  }

  .ctc-card {
    gap: 14px;
    padding: 20px 16px;
  }

  .ctc-avatar {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .ctc-link {
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ctc-card {
    transition: none;
  }

  .ctc-card:hover {
    transform: none;
  }
}

/* ============ EXPRESS INTEREST PAGE ============ */
/* the shared header pill is designed to sit on dark footage, so this page
   gives it an equivalent brand band to sit on instead of the hero video */
.xi-topband {
  position: relative;
  background: #061024;
  background-image:
    radial-gradient(ellipse 60% 70% at 80% 10%, rgba(2, 72, 247, 0.42) 0%, rgba(2, 72, 247, 0) 66%),
    radial-gradient(ellipse 55% 60% at 10% 90%, rgba(2, 72, 247, 0.24) 0%, rgba(2, 72, 247, 0) 70%),
    linear-gradient(165deg, #051023 0%, #0b2050 52%, #050d1e 100%);
  padding-bottom: 74px;
  overflow: hidden;
}

.xi-nav-cta-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.xi-hero {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 24px 0;
  text-align: center;
}

.xi-hero-logo {
  width: 100%;
  max-width: 330px;
  height: auto;
  margin-bottom: 26px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.8);
}

.xi-hero-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 16px;
}

.xi-hero-lede {
  font-size: 16.5px;
  line-height: 1.66;
  color: rgba(226, 234, 250, 0.82);
  margin: 0 auto 26px;
  max-width: 620px;
}

.xi-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.xi-meta li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #cfe0ff;
  background: rgba(2, 72, 247, 0.18);
  border: 1px solid rgba(110, 162, 255, 0.34);
  padding: 9px 18px;
  border-radius: 999px;
}

.xi-meta svg {
  flex: 0 0 auto;
  color: #6ea2ff;
}

/* form card lifts over the seam between the band and the page */
.xi-formsection {
  display: block;
  background: #f4f6fc;
  padding: 0 0 84px;
}

.xi-formwrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px;
}

.xi-formcard {
  position: relative;
  margin-top: -54px;
  background: #ffffff;
  border: 1px solid rgba(2, 72, 247, 0.12);
  border-radius: 24px;
  box-shadow: 0 34px 76px -34px rgba(16, 20, 60, 0.55);
  padding: 18px;
  overflow: hidden;
}

.xi-frame {
  display: block;
  width: 100%;
  height: 1180px;
  border: none;
  border-radius: 14px;
}

.xi-formnote {
  margin: 22px auto 0;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.65;
  color: #5b5870;
}

.xi-formnote a {
  color: #0248f7;
  font-weight: 600;
  text-decoration: none;
}

.xi-formnote a:hover {
  text-decoration: underline;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .xi-topband {
    padding-bottom: 64px;
  }

  .xi-frame {
    height: 1320px;
  }
}

@media (max-width: 600px) {
  .xi-hero {
    padding-top: 22px;
  }

  .xi-hero-logo {
    max-width: 250px;
    padding: 13px 15px;
    margin-bottom: 20px;
  }

  .xi-hero-lede {
    font-size: 15.5px;
  }

  .xi-formwrap {
    padding: 0 16px;
  }

  .xi-formcard {
    margin-top: -44px;
    padding: 12px;
    border-radius: 18px;
  }

  .xi-frame {
    height: 1500px;
  }

  .xi-formsection {
    padding-bottom: 64px;
  }
}

.wrap-mplogo img {
  width: 100%;
}

.wrap-mplogo {
  width: 203px;
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  background: white;
}

.wrap-commonte h3 {
  text-align: center;
  padding-bottom: 55px;
  font-size: 17px;
}

section#ourpartners {
  padding-bottom: 62px;
}


.faq-page {
  max-width: 100%;
  margin: 0 auto;
  padding: 77px 133px 96px;
  position: relative;
  background: #061024;
  background-image: radial-gradient(ellipse 60% 55% at 82% 18%, rgba(2, 72, 247, 0.30) 0%, rgba(2, 72, 247, 0) 68%), radial-gradient(ellipse 55% 50% at 8% 92%, rgba(2, 72, 247, 0.18) 0%, rgba(2, 72, 247, 0) 70%), linear-gradient(165deg, #061024 0%, #0a1c3f 48%, #050d1e 100%);
  /* padding: 96px 0 100px; */
}

/* faint blueprint grid backdrop, subject-matter nod to urban planning */
.faq-blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#1B2226 1px, transparent 1px),
    linear-gradient(90deg, #1B2226 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
  opacity: 0.55;
  pointer-events: none;
}

.faq-header {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 8px;
  border-bottom: 1px solid #262E33;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #BF5B32;
  background: rgba(191, 91, 50, 0.1);
  border: 1px solid rgba(191, 91, 50, 0.35);
  padding: 6px 12px 6px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.faq-tag svg {
  width: 13px;
  height: 13px;
}

.faq-title {
  color: white;
  margin: 0 0 16px;
  max-width: 23ch;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.faq-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #98A2A7;
  max-width: 52ch;
  margin: 0;
}

.faq-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: #55625E;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- list --- */
.faq-list {
  margin-top: 4px;
}

.faq-entry {
  position: relative;
  border-bottom: 1px solid #262E33;
}

/* accent rule that appears when an entry is open */
.faq-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2196F3;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}

.faq-entry[open]::before {
  transform: scaleY(1);
}

.faq-trigger {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 6px 24px 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #ffffff;
  padding-top: 3px;
  flex: none;
  width: 24px;
  transition: color .2s ease;
}

.faq-entry[open] .faq-count {
  color: #BF5B32;
}

.faq-question {
  flex: 1;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  transition: color .15s ease;
}

.faq-entry:hover .faq-question {
  color: #a9c2ff;
}

.faq-icon {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #7C8589;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, background .2s ease;
}

.faq-icon::before {
  width: 11px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 11px;
}

.faq-entry[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-entry[open] .faq-icon::before {
  background: #BF5B32;
}

.faq-answer {
  padding: 0 6px 28px 62px;
  font-size: 17px;
  line-height: 1.7;
  color: #d0dadf;
  max-width: 100%;
}

.faq-answer strong {
  color: #EDEAE0;
  font-weight: 500;
}

.faq-entry[open] .faq-answer {
  animation: faq-reveal .28s ease;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- footer --- */
.faq-footer {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid #262E33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.faq-footer p {
  font-size: 13px;
  color: #55625E;
  margin: 0;
}

.faq-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #10161A;
  background: #BF5B32;
  border: none;
  padding: 12px 22px;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background .15s ease;
}

.faq-cta:hover {
  background: #D98259;
}

.faq-trigger:focus-visible {
  outline: 2px solid #BF5B32;
  outline-offset: -2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-entry[open] .faq-answer {
    animation: none;
  }

  .faq-icon::before,
  .faq-icon::after,
  .faq-entry::before {
    transition: none;
  }
}

/* --- responsive --- */
@media (max-width:700px) {
  .faq-page {
    padding: 48px 20px 72px;
  }

  .faq-trigger {
    gap: 14px;
    padding: 20px 4px 20px 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 54px;
    font-size: 14.5px;
  }
}

@media (max-width:480px) {
  .faq-title {
    max-width: none;
  }

  .faq-trigger {
    padding-left: 12px;
    gap: 10px;
  }

  .faq-count {
    width: 20px;
    font-size: 12px;
  }

  .faq-answer {
    padding-left: 42px;
  }

  .faq-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-cta {
    width: 100%;
    text-align: center;
  }
}

.officials-section {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  padding: 60px 20px;
}

.officials-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.officials-card {
  position: relative;
  text-align: center;
  flex-shrink: 0;
}

.officials-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.officials-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.officials-badge {
  background: #3b2fd4;
  color: #fff;
  border-radius: 40px;
  padding: 14px 10px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(59, 47, 212, 0.25);
}

.officials-badge h3 {
  margin: 0 0 4px 0;
  font-weight: 700;
  line-height: 1.2;
}

.officials-badge p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.3;
}

/* Size tiers: big -> medium -> small (clear difference between each) */
.officials-card.officials-big {
  width: 440px;
}

.officials-card.officials-big .officials-badge h3 {
  font-size: 26px;
}

.officials-card.officials-big .officials-badge p {
  font-size: 16px;
}

.officials-card.officials-medium {
  width: 437px;
}

.officials-card.officials-medium .officials-badge h3 {
  font-size: 20px;
}

.officials-card.officials-medium .officials-badge p {
  font-size: 13px;
}

.officials-card.officials-small {
  width: 303px;
}

.officials-card.officials-small .officials-badge h3 {
  font-size: 15px;
}

.officials-card.officials-small .officials-badge p {
  font-size: 11px;
}

@media (max-width: 900px) {
  .officials-row {
    align-items: center;
  }

  .officials-card.officials-big,
  .officials-card.officials-medium,
  .officials-card.officials-small {
    width: 85%;
    max-width: 320px;
  }
}