
/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova-regular.woff2') format('woff2'),
       url('/assets/fonts/proximanova-regular.woff') format('woff');
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova-bold.woff2') format('woff2'),
       url('/assets/fonts/proximanova-bold.woff') format('woff');
  font-style: normal;
  font-weight: 700;
}
/* Apply font broadly */
body,
p,
.section-title,
.hero-title,
.intro-bold,
.intro-quote,
.section-block-inner-h1,
.feature-text,
.publication-item,
.gallery-slide-img,
* {
  font-family: "Proxima Nova", sans-serif !important;
  
}
/* Small text/color adjustments for paragraphs */
p,
.color-contrast-medium {
  line-height: 1.8 !important;
  font-size: .95rem !important;
  margin-bottom: 0 !important;
  color: #0b3a66 !important;
}
/* Variables (merged) */
:root {
  --blue: #118fd5;
  --dark-blue: #0b3a66;
  --green: #198754;
  --red: #dc3545;
  --amber: #d39e00;
  --bg: #f9fbfd;
  --white: #ffffff;
  --border: #e3f2fd;
  --text: #0b3a66;
  --muted: #6b7280;
  --radius: 34px;
  --shadow-sm: 0 2px 12px rgba(17,143,213,0.06);
  --shadow-md: 0 8px 32px rgba(17,143,213,0.12);
  /* spacing tokens */
  --s4: 4px; --s8: 8px; --s12: 12px; --s16: 16px;
  --s20: 20px; --s24: 24px; --s32: 32px; --s40: 40px; --s48: 48px;
}

/* Base body */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  word-spacing: 1px;
}

/* Layout */
.site-container { padding: 0 1rem; }

/* Section block (merged padding & inner styles) */
.section-block {
  padding: 32px 24px;
}
.section-block-inner {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(248,250,252,0.95) 0%, rgba(231,244,249,0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: 0 4px 24px rgba(17,143,213,0.08);
}

/* Section title (merged) */
.section-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 4px solid var(--blue);
  display: inline-block;
  background: var(--white);
  width: fit-content;
}

/* Hero / spotlight */
.hero-spotlight {
  min-height: 60vh;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-content {
  border-radius: 12px;
}
.hero-title {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 var(--s8) 0;
  margin-bottom: 12px;
  color: var(--dark-blue);
  overflow-x: visible;
}
.hero-logo-container {
  width: 70%;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Logo */
.logo-container {
  width: 180px;
  flex-shrink: 0;
}
.logo-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Intro */
.intro-bold {
  font-weight: 900;
  display: block;
  margin-bottom: .9rem;
}
.intro-quote {
  font-style: italic;
}

/* Cards (solutions, impact, challenge) */
.solution-card,
.impact-card,
.challenge-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.challenge-stat-card {
  padding: 12px !important;
}
.solution-card:hover,
.impact-card:hover,
.challenge-stat-card:hover {
    box-shadow: 0 8px 32px rgba(17, 143, 213, 0.12);
  overflow-y: visible;
  border:2px solid #b6e0fe;
}

/* Solution specific */
.solution-title {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.solutions-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.solution-icon,
.feature-icon,
.impact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f7ff;
}
.solution-icon { width: 36px; height: 36px; flex-shrink: 0; }
.impact-icon { width: 54px; height: 54px; }

/* Stats */
.stat-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.stat-body { flex: 1; min-width: 0; }
.stat-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.challenge-stat-value {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}
.challenge-stat-label {
  margin-top: 8px;
  font-size: .9rem;
  color: var(--dark-blue);
  margin-top: 10px;
  line-height: 1.4;
}
.stat-sub {
  font-size: .75rem;
  color: var(--muted);
}

/* Colors for stats */
.stat-red { color: #b91c1c; }
.stat-amber { color: #b45309; }
.stat-green { color: #0f5132; }
.stat-blue { color: #0b66a6; }

/* Progress bars */
.stat-bar-bg {
  height: 6px;
  margin-top: 12px;
  border-radius: 6px;
  background: rgba(220,53,69,0.12);
  overflow: hidden;
}
.stat-bar-bg--amber { background: rgba(255,193,7,0.12); }
.stat-bar-bg--green { background: rgba(25,135,84,0.12); }
.stat-bar-bg--blue { background: rgba(17,143,213,0.08); }

.stat-bar-fill {
  height: 100%;
  border-radius: 6px;
}
.stat-bar-red   { background: linear-gradient(90deg,#ff7b86,#dc3545); }
.stat-bar-amber { background: linear-gradient(90deg,#ffd98a,#ffbf47); }
.stat-bar-green { background: linear-gradient(90deg,#6ee7b7,#198754); }
.stat-bar-blue  { background: linear-gradient(90deg,#86d1ff,#118fd5); }

/* Quote / impact */
.impact-quote {
  padding: 24px;
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f7ff, #e3f2fd);
  font-style: italic;
  color: var(--dark-blue);
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(17,143,213,0.04);
}
.impact-quote-icon { font-size: 1.4rem; color: var(--blue); vertical-align: middle; }

/* Gallery / Splide */
.gallery {
  margin-top: -32px !important;
}
.gallery-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.2s ease;
}
.gallery-item:hover { transform: scale(1.03); }

.gallery-slide-img {
  width: 100%;
  max-width: 520px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  transition: transform .4s ease;
}
.gallery-slide-img:hover { transform: scale(1.03); }

.gallery-slide.event-image {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
}

/* Carousel */
.carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel__prev,
.carousel__next,
.carousel__prev svg,
.carousel__next svg {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}

/* Splide arrows */
.splide__slide { display: flex; justify-content: center; align-items: center; padding: 12px 0; }
.splide__arrow { background: rgba(0,0,0,.5) !important; }
.splide__arrow svg { fill: #fff !important; font-size: 0.9rem; }

/* Timeline (merged) */
.cd-timeline,
.cd-timeline__content {
 
  border-radius: 12px;
  box-shadow: none !important;
  
}
.cd-timeline__content {
 /* border: 1px solid #ddd !important; */
     background: #fff;
    border: 1px solid var(--border) !important;
    border-radius: 12px;
    padding: 24px;
    transition: transform .18s ease, box-shadow .18s ease;
    border-radius:12px !important

}
.cd-timeline__content:hover {
  box-shadow: 0 8px 32px rgba(17, 143, 213, 0.12) !important;
  overflow-y: visible;
  border:1.5px solid #b6e0fe !important;
}
.cd-timeline__img--movie { background: #007bff !important; }

.timeline-list { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline-list::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 3px;
}
.timeline-item { position: relative; padding-left: 56px; margin-bottom: 2rem; }
.timeline-dot {
  position: absolute;
  left: 8px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue);
}
.timeline-dot--alt { box-shadow: 0 0 0 3px var(--green); }
.timeline-date { font-size: .8rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .4rem; }
.timeline-content { background: var(--white); border: 1.5px solid #ddd; border-radius: 12px; padding: 20px; box-shadow: none; }

/* Feature list */
.feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  flex-shrink: 0;
}
.feature-icon--large { width: 32px; height: 32px; min-width: 32px; min-height: 32px; }
.feature-list { padding: 0; margin: 0; list-style: none; display: grid; gap: .55rem; }
.feature-text {
  font-size: .95rem !important;
  color: var(--dark-blue) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

/* Publications / media */
.media,
.publications {
  width: 100%;
  border-radius: 12px;
  background: #f8fbff;
}
.publication-item {
  display: block;
  padding: 15px 24px;
  margin: 4px 0;
  border-radius: 12px;
  background: #fdfdfe;
  text-decoration: none;
  color: var(--text);
  font-size: .95rem;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
}
.publication-item:hover {
  box-shadow: var(--shadow-md);
  border-color: #b6e0fe;
  text-decoration: none;
  color: var(--text);
}
.publication-item strong { display: block; font-size: 1rem; }
.publication-item small { color: var(--muted); display: block; font-size: .85rem; line-height: 1.4; }

/* Partners / process images */
.partners-img { width: 100%; max-width: 920px; height: auto; display: block; margin: 0 auto; }
.process-img { width: 100%; height: auto; border-radius: 12px; display: block; }
.slide-solution-img {
  height: 100%; width: 100%; object-fit: cover;
  border: 1px solid #f1f1f1; border-radius: 12px;
}

/* Prevent media from causing horizontal overflow on small screens */
img, picture, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility */
.section-block-inner-h1 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--blue);
  border: none;
  background: none;
  line-height: 1.5;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Responsive (merged breakpoints) */
@media (max-width: 1200px) {
  .hero-title { font-size: 1.5rem; line-height: 1.6rem; }
}
@media (max-width: 1000px) {
  .hero-title { font-size: 1.4rem; }
  .hero-logo-container { width: 100% !important; }
  .partners-img { max-width: 100%; }
  .gallery-slide.event-image { width: 100%; max-width: 100%; }
}
@media (max-width: 767px) {
  .section-block { padding: 20px 16px; }
  .hero-spotlight { flex-direction: column-reverse; min-height: auto; gap: 1rem; align-items: flex-start; }
  .hero-title { font-size: 1rem; line-height: 1.4rem; }
  .hero-logo-container { width: 70%; }
  .logo-container { width: 100%; margin-bottom: var(--s12); }
  .solution-title { font-size: 1.4rem; }
  .section-title { font-size: 18px; }
  .hide-on-mobile { display: none; }
  .solution-card { min-height: 120px; }
  .logo-container img {
  width: 60%;
  height: auto;
  object-fit: cover;
}
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.1rem; line-height: 1.4; }
  .hero-logo-container { width: 70%; }
}

/* Timeline background tweak */
.cd-timeline { background-color: white !important; }


