/* --- navbar.css --- */



*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  -webkit-tap-highlight-color: transparent;
}
html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #FFFFFF;
  color: #0F172A;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}


a, button, [role="button"], .nav-link, .btn-upload, .btn-theme, .hero__pill, .contrib-card {
  cursor: pointer !important;
}



.site-global-bg {
  display: none !important;
}


a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }





.app-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FFFFFF !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-shadow: 0 1px 6px rgba(10, 28, 62, 0.04);
  transition: box-shadow 200ms ease;
}

.app-header.scrolled {
  background: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(10, 28, 62, 0.07);
}




.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}




.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 1002;
  cursor: pointer;
}


.brand-emblem {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  fill: #0A4FCD !important;
  stroke: none !important;
  filter: drop-shadow(0 1px 4px rgba(10, 79, 205, 0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}


.brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-name-orange {
  font-family: 'Yatra One', cursive;
  font-size: 21.5px;
  font-weight: 400;
  color: #0A4FCD !important;
  margin-left: 2px;
  filter: drop-shadow(0 0 8px rgba(10, 79, 205, 0.3));
}


.brand-tagline-gu {
  font-family: 'Noto Sans Gujarati', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: #64748B;
  margin-top: 2px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}




.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  pointer-events: auto;
}


.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 200ms ease;
}
.nav-link:hover {
  color: #0F172A;
}


.nav-link.active {
  font-weight: 600;
  color: #0F172A;
}


.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: #FF7A00;
  border-radius: 2px;
}




.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}


.btn-lang-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #334155;
  font-family: 'Noto Sans Gujarati', 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
}
.btn-lang-switcher:hover {
  background: #E2E8F0;
  color: #0F172A;
}


.btn-theme {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 180ms ease;
}
.btn-theme:hover {
  background: #E2E8F0;
  color: #0F172A;
}


.btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  background: #0A4FCD;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF !important;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 2px 8px rgba(10, 79, 205, 0.25);
}
.btn-upload:hover {
  background: #083EA5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 79, 205, 0.35);
}





.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -2px 12px rgba(10, 28, 62, 0.06);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #64748B;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 8px;
  transition: color 200ms ease;
}
.mob-nav-item.active,
.mob-nav-item:hover {
  color: #0A4FCD;
}


.mob-nav-upload {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0A4FCD;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -16px;
  box-shadow: 0 4px 14px rgba(10, 79, 205, 0.35);
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.mob-nav-upload:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 79, 205, 0.45);
}






@media (max-width: 1100px) {
  .header-inner { padding: 0 20px; }
  .nav-links { gap: 20px; }
  .brand-tagline-gu { display: none; } 
}


@media (max-width: 768px) {
  .nav-links,
  .btn-upload { display: none; }
  .header-inner { padding: 0 16px; }
  .mobile-nav { display: flex; }
  body { padding-bottom: 64px; }
}




.nav-demo-bg {
  min-height: 100vh;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-demo-label {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 80px;
}

/* --- hero.css --- */



:root {
  --hero-navy-dark:     #0b2545;
  --hero-navy-btn:      #091e3a;
  --hero-navy-text:     #0a2240;
  --hero-orange:        #FF7A00;
  --hero-orange-hover:  #FF6B00;
  --hero-green:         #16A34A;
  --hero-slate:         #1e293b;
  --hero-slate-muted:   #64748b;
  --hero-card-border:   rgba(203, 213, 225, 0.85);
}




.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  background: #FFFFFF !important;
  background-image: none !important;
  padding: 100px 0 30px;
}




.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 48px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}




.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}


.hero__headline {
  font-family: 'Yatra One', 'Rozha One', serif;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--hero-navy-text);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero__headline-row {
  display: block;
}


.hero__tricolor-bar {
  display: flex;
  width: 86px;
  height: 4px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 22px;
}

.hero__tricolor-saffron {
  flex: 1;
  background: var(--hero-orange);
}

.hero__tricolor-green {
  flex: 1;
  background: var(--hero-green);
}


.hero__sub {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--hero-slate);
  max-width: 520px;
  margin: 0 0 28px;
}


.hero__search-card {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 520px;
  background: #FFFFFF;
  border: 1px solid var(--hero-card-border);
  border-radius: 10px;
  padding: 5px 6px 5px 16px;
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.07);
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.hero__search-card:focus-within {
  border-color: #0b2545;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.14);
}

.hero__search-icon {
  flex-shrink: 0;
  color: #64748b;
  margin-right: 12px;
}

.hero__search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  color: #0f172a;
  padding: 8px 0;
}

.hero__search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.hero__search-submit {
  flex-shrink: 0;
  background: var(--hero-navy-dark);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.hero__search-submit:hover {
  background: #06172d;
  transform: translateY(-1px);
}

.hero__search-submit:active {
  transform: translateY(0);
}


.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hero-navy-dark);
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.18);
}

.btn-hero-explore:hover {
  background: #06172d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 37, 69, 0.28);
}

.btn-hero-upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #0A4FCD !important;
  border: 1.5px solid #0A4FCD;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(10, 79, 205, 0.08);
}

.btn-hero-upload:hover {
  background: rgba(10, 79, 205, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 79, 205, 0.18);
}




.hero__map-showcase-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}


.hero__infrastructure-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -220px;
  width: 100%;
  height: calc(100% + 220px);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  user-select: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.hero__infrastructure-backdrop picture {
  display: contents;
}

.hero__infra-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
  image-rendering: auto;
}

.hero__showcase-map-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__showcase-map-img:hover {
  transform: scale(1.02);
  filter: none !important;
}




.hero__scroll-indicator {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.hero__scroll-text {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--hero-slate-muted);
  letter-spacing: 0.02em;
}

.hero__scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0b2545;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.12);
  border: 1px solid rgba(203, 213, 225, 0.7);
  cursor: pointer;
  text-decoration: none;
  animation: scrollBounce 2s infinite ease-in-out;
  transition: all 0.2s ease;
}

.hero__scroll-btn:hover {
  background: #f8fafc;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(11, 37, 69, 0.2);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}




@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 20px 24px 30px;
    text-align: center;
  }
  .hero__left {
    align-items: center;
  }
  .hero__tricolor-bar {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__search-card {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta-group {
    justify-content: center;
  }
  .hero__map-collage-stage {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
  }
  .hero__inner {
    padding: 10px 16px 20px;
  }
  .hero__headline {
    font-size: 38px;
  }
  .hero__search-card {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
    border-radius: 12px;
  }
  .hero__search-input {
    width: 100%;
    text-align: center;
  }
  .hero__search-submit {
    width: 100%;
    padding: 11px;
  }
  .hero__cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-explore, .btn-hero-upload {
    width: 100%;
    justify-content: center;
  }
}

/* --- category-section.css --- */


.cat-explore-section {
  position: relative;
  background: #FFFFFF;
  padding: 100px 0 80px 0;
  width: 100%;
  overflow: hidden;
  border-bottom: none;
}

.cat-explore-inner {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}




.cat-explore-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
  max-width: 860px;
}


.cat-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.cat-tag-line-left {
  width: 28px;
  height: 2.5px;
  background-color: #FF7A00;
  border-radius: 1.5px;
}

.cat-tag-line-right {
  width: 28px;
  height: 2.5px;
  background-color: #16A34A;
  border-radius: 1.5px;
}

.cat-tag-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #0B192C;
  text-transform: uppercase;
}


.cat-explore-title {
  font-family: 'Noto Serif', 'Cinzel', serif;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 700;
  color: #0B192C;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}


.cat-tricolor-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cat-bar-seg {
  height: 3.5px;
  border-radius: 2px;
}

.cat-bar-orange {
  width: 36px;
  background-color: #FF7A00;
}

.cat-bar-navy {
  width: 36px;
  background-color: #0A4FCD;
}

.cat-bar-green {
  width: 36px;
  background-color: #16A34A;
}

.cat-explore-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17.5px;
  font-weight: 450;
  color: #475569;
  line-height: 1.65;
  max-width: 660px;
  margin: 0 auto;
}




.cat-showcase-split-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  max-width: 1320px;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  gap: 20px;
}


.cat-center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 420px;
  padding: 0 24px;
  position: relative;
}

.cat-divider-line-top,
.cat-divider-line-bottom {
  width: 1.5px;
  background-color: #E2E8F0;
  flex: 1;
}

.cat-divider-diamond-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 16px 0;
}

.diamond-node {
  width: 8.5px;
  height: 8.5px;
  transform: rotate(45deg);
}

.diamond-orange {
  background-color: #FF7A00;
}

.diamond-navy {
  background-color: #0B192C;
}

.diamond-green {
  background-color: #16A34A;
}


.cat-column-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  gap: 32px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
}

.cat-column-card:hover {
  transform: translateY(-4px);
}


.cat-col-text-content {
  flex: 1;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.cat-col-index-wrap {
  margin-bottom: 10px;
}

.cat-col-index {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 6px;
}

.cat-col-index-orange {
  color: #FF7A00;
}

.cat-col-index-green {
  color: #16A34A;
}

.cat-index-underline {
  height: 3px;
  width: 28px;
  border-radius: 2px;
}

.underline-orange {
  background-color: #FF7A00;
}

.underline-green {
  background-color: #16A34A;
}


.cat-col-title {
  font-family: 'Noto Serif', 'Cinzel', serif;
  font-size: 38px;
  font-weight: 700;
  color: #0B192C;
  line-height: 1.2;
  margin-bottom: 10px;
}


.cat-mini-bar {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}

.cat-mini-bar span {
  width: 18px;
  height: 2.5px;
  border-radius: 1px;
}

.cat-mini-bar .m-orange { background-color: #FF7A00; }
.cat-mini-bar .m-navy { background-color: #0A4FCD; }
.cat-mini-bar .m-green { background-color: #16A34A; }


.cat-col-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 450;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}


.cat-col-cta-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #0B192C;
  transition: color 0.2s ease;
}

.cat-col-cta-link .cta-arrow-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cat-col-cta-link svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-column-card:hover .cat-col-cta-link svg {
  transform: translateX(6px);
}

.cat-cta-bottom-line {
  height: 2.5px;
  width: 100%;
  margin-top: 5px;
  border-radius: 1.5px;
  transition: width 0.2s ease;
}

.cta-line-orange {
  background-color: #FF7A00;
}

.cta-line-green {
  background-color: #16A34A;
}


.cat-col-illustration-wrap {
  flex: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 440px;
}

.cat-col-illustration-img {
  width: 100%;
  height: auto;
  max-height: 290px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.95;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.cat-column-card:hover .cat-col-illustration-img {
  transform: scale(1.03);
  opacity: 1;
}




@media (max-width: 1100px) {
  .cat-showcase-split-stage {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cat-center-divider {
    display: none;
  }
  .cat-column-card {
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .cat-explore-section {
    padding: 70px 20px 30px;
  }
  .cat-column-card {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
    padding: 16px 0;
  }
  .cat-col-text-content {
    max-width: 100%;
  }
  .cat-col-illustration-wrap {
    max-width: 100%;
  }
  .cat-col-illustration-img {
    max-height: 220px;
  }
}

/* --- stats.css --- */


.live-stats-section {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #FFFFFF;
  padding: 64px 0 56px;
  border-top: 1px solid #F1F5F9;
  border-bottom: none;
}

.live-stats-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.live-stats-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}


.live-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.stats-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.stats-badge-dot.dot-blue {
  background: #0A4FCD;
}

.stats-badge-bar {
  width: 32px;
  height: 3px;
  border-radius: 2px;
}

.stats-badge-bar.bar-orange {
  background: #FF7A00;
}

.stats-badge-bar.bar-green {
  background: #16A34A;
}

.stats-badge-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0A4FCD;
  text-transform: uppercase;
}


.live-stats-main-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0A1C3E;
  margin: 0 0 10px;
  line-height: 1.15;
}


.live-stats-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: #64748B;
  margin: 0 0 16px;
  font-weight: 400;
}


.live-stats-accent-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.accent-line {
  width: 32px;
  height: 3px;
  border-radius: 2px;
}

.accent-line.line-orange {
  background: #FF7A00;
}

.accent-line.line-green {
  background: #16A34A;
}

.accent-dot.dot-blue {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0A4FCD;
}


.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  align-items: stretch;
}


.live-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 14px;
  border-right: 1px solid #E2E8F0;
  transition: transform 0.25s ease;
  min-width: 0;
}

.live-stat-card:last-child {
  border-right: none;
}

.live-stat-card:hover {
  transform: translateY(-4px);
}


.live-stat-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.live-stat-icon-wrap.icon-blue { color: #0A4FCD; }
.live-stat-icon-wrap.icon-green { color: #16A34A; }
.live-stat-icon-wrap.icon-orange { color: #FF7A00; }


.live-stat-number-wrap {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}

.stat-plus {
  font-size: 26px;
  font-weight: 800;
  color: #0A1C3E;
}


.live-stat-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #64748B;
  margin: 6px 0 14px;
  text-align: center;
  line-height: 1.3;
}


.live-stat-accent-bar {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.live-stat-accent-bar.bar-blue { background: #0A4FCD; }
.live-stat-accent-bar.bar-green { background: #16A34A; }
.live-stat-accent-bar.bar-orange { background: #FF7A00; }


.live-stat-footnote {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.live-stat-card:nth-child(1) .live-stat-footnote { color: #0A4FCD; }
.live-stat-card:nth-child(2) .live-stat-footnote { color: #16A34A; }
.live-stat-card:nth-child(3) .live-stat-footnote { color: #FF7A00; }
.live-stat-card:nth-child(4) .live-stat-footnote { color: #0A4FCD; }
.live-stat-card:nth-child(5) .live-stat-footnote { color: #16A34A; }
.live-stat-card:nth-child(6) .live-stat-footnote { color: #FF7A00; }


@media (max-width: 1240px) {
  .live-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }
  .live-stat-card {
    border-right: 1px solid #E2E8F0;
    padding: 16px 12px;
  }
  .live-stat-card:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 720px) {
  .live-stats-main-title {
    font-size: 32px;
  }
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-stat-card {
    border-right: 1px solid #E2E8F0;
  }
  .live-stat-card:nth-child(2n) {
    border-right: none;
  }
  .live-stat-number-wrap {
    font-size: 26px;
  }
}

/* --- recent-contributions.css --- */


.recent-carousel-section {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #FFFFFF;
  padding: 68px 0 60px;
  overflow: hidden;
}

.recent-carousel-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.recent-carousel-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}


.recent-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.recent-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.recent-badge-dot.dot-blue {
  background: #0A4FCD;
}

.recent-badge-bar {
  width: 32px;
  height: 3px;
  border-radius: 2px;
}

.recent-badge-bar.bar-orange {
  background: #FF7A00;
}

.recent-badge-bar.bar-green {
  background: #16A34A;
}

.recent-badge-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0A4FCD;
  text-transform: uppercase;
}


.recent-main-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0A1C3E;
  margin: 0 0 10px;
  line-height: 1.15;
}


.recent-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: #64748B;
  margin: 0 0 16px;
  font-weight: 400;
}


.recent-accent-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}


.recent-carousel-stage {
  position: relative;
  width: 100%;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}

.recent-carousel-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}

.recent-carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}


.recent-slide {
  flex: 0 0 760px;
  max-width: 66vw;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: scale(0.94);
  opacity: 0.78;
  filter: brightness(0.96);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 20px rgba(10, 28, 62, 0.05);
}

.recent-slide.active {
  transform: scale(1);
  opacity: 1;
  filter: brightness(1);
  cursor: default;
  box-shadow: 0 14px 40px rgba(10, 28, 62, 0.1);
  border-radius: 20px;
}

.recent-photo-frame {
  width: 100%;
  height: 100%;
  background: #F1F5F9;
}

.recent-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.carousel-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: #0A1C3E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-arrow-btn:hover {
  background: #FFFFFF;
  color: #0A4FCD;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 25px rgba(10, 79, 205, 0.2);
  border-color: #CBD5E1;
}

.carousel-arrow-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-arrow-btn.prev-btn {
  left: max(16px, calc(50% - 380px - 24px));
}

.carousel-arrow-btn.next-btn {
  right: max(16px, calc(50% - 380px - 24px));
}


.recent-metadata-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 6px 0 28px;
  padding: 0 16px;
}

.metadata-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.metadata-divider {
  width: 1px;
  height: 16px;
  background: #E2E8F0;
}

.meta-val {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A1C3E;
  letter-spacing: -0.01em;
}

.meta-cat-val {
  font-weight: 700;
}

.meta-time-val {
  font-weight: 500;
  color: #64748B;
}


.recent-counter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
}

.counter-line {
  flex: 1;
  height: 1px;
  background: #E2E8F0;
}

.counter-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: 0.04em;
  white-space: nowrap;
}


@media (max-width: 1200px) {
  .recent-slide {
    flex: 0 0 680px;
    max-width: 72vw;
    height: 410px;
  }
  .carousel-arrow-btn.prev-btn {
    left: calc(50% - 340px - 20px);
  }
  .carousel-arrow-btn.next-btn {
    right: calc(50% - 340px - 20px);
  }
}

@media (max-width: 900px) {
  .recent-slide {
    flex: 0 0 540px;
    max-width: 82vw;
    height: 340px;
  }
  .carousel-arrow-btn.prev-btn {
    left: 12px;
  }
  .carousel-arrow-btn.next-btn {
    right: 12px;
  }
  .recent-main-title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .recent-carousel-section {
    padding: 48px 0 40px;
  }
  .recent-main-title {
    font-size: 28px;
  }
  .recent-slide {
    flex: 0 0 88vw;
    max-width: 88vw;
    height: 250px;
    border-radius: 14px;
  }
  .recent-slide.active {
    border-radius: 16px;
  }
  .carousel-arrow-btn {
    width: 38px;
    height: 38px;
  }
  .recent-metadata-bar {
    gap: 14px;
    flex-wrap: wrap;
  }
  .meta-val {
    font-size: 13.5px;
  }
  .recent-counter-wrap {
    max-width: 90%;
  }
}

/* --- upload-showcase.css --- */


@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');


.upload-mission-unified-stage {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid #F1F5F9;
}

.unified-stage-bg-lineart {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.13;
  mix-blend-mode: multiply;
  user-select: none;
}

.unified-stage-bg-lineart picture {
  display: contents;
}

.unified-stage-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.05);
  pointer-events: none;
}

.upload-showcase-section {
  position: relative;
  width: 100%;
  background: transparent !important;
  padding: 80px 0 60px;
  overflow: visible;
  border-top: none;
  border-bottom: none;
  z-index: 2;
}


.upload-showcase-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}




.upload-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}


.upload-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.upload-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.upload-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF7A00;
}

.upload-badge-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #FF7A00;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.upload-tricolor-line {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 22px;
}

.tricolor-saffron {
  width: 32px;
  height: 3px;
  background: #FF7A00;
  border-radius: 2px;
}

.tricolor-blue {
  width: 32px;
  height: 3px;
  background: #0A4FCD;
  border-radius: 2px;
}

.tricolor-green {
  width: 32px;
  height: 3px;
  background: #16A34A;
  border-radius: 2px;
}


.upload-main-headline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
}


.upload-script-sub {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 700;
  color: #0A1C3E;
  line-height: 1.2;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}


.upload-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  font-weight: 450;
  max-width: 500px;
  margin: 0 0 32px;
}


.upload-steps-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.upload-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #0A1C3E;
  line-height: 1.2;
}

.step-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
  line-height: 1.2;
}


.upload-action-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-upload-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #0A1C3E;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10, 28, 62, 0.18);
  transition: all 0.2s ease;
}

.btn-upload-primary:hover {
  background: #081630;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 28, 62, 0.28);
}

.link-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A1C3E;
  text-decoration: none;
  transition: all 0.2s ease;
}

.link-learn-more:hover {
  color: #0A4FCD;
  transform: translateX(3px);
}




.upload-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  display: inline-block;
}


.phone-chassis {
  width: 280px;
  height: 520px;
  background: #1E293B;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 25px 65px rgba(10, 28, 62, 0.16), 0 0 0 2px #334155;
  display: flex;
  flex-direction: column;
}


.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 4px;
  background: #FFFFFF;
  border-radius: 32px 32px 0 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
}

.phone-notch {
  width: 70px;
  height: 18px;
  background: #1E293B;
  border-radius: 10px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0F172A;
}


.phone-app-body {
  background: #FFFFFF;
  flex: 1;
  border-radius: 0 0 32px 32px;
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.phone-app-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F1F5F9;
}

.phone-app-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A1C3E;
}


.phone-dropzone {
  border: 1.5px dashed #CBD5E1;
  border-radius: 12px;
  padding: 16px 8px;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.phone-drop-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #0A1C3E;
}

.phone-drop-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px;
  color: #64748B;
}


.phone-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.phone-field-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.phone-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: #334155;
}

.phone-input-mock {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 6px 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.phone-submit-btn {
  background: #0A1C3E;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
}


.floating-photo-card {
  position: absolute;
  right: -55px;
  bottom: 25px;
  width: 220px;
  height: 270px;
  border-radius: 18px;
  background: #FFFFFF;
  padding: 6px;
  box-shadow: 0 20px 50px rgba(10, 28, 62, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: rotate(7deg);
  z-index: 5;
  transition: transform 0.3s ease;
}

.floating-photo-card:hover {
  transform: rotate(4deg) scale(1.03);
}

.floating-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.photo-card-check {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #16A34A;
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
  z-index: 10;
}




.impact-pillars-strip {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 6px 25px rgba(10, 28, 62, 0.03);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.impact-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon-wrap.icon-blue {
  background: #EEF4FF;
}

.pillar-icon-wrap.icon-green {
  background: #ECFDF5;
}

.pillar-icon-wrap.icon-orange {
  background: #FFF7ED;
}

.pillar-icon-wrap.icon-emerald {
  background: #F0FDF4;
}

.pillar-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A1C3E;
  margin: 0;
  line-height: 1.25;
}

.pillar-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #475569;
  margin: 0;
}


@media (max-width: 1140px) {
  .upload-showcase-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .upload-content-col {
    align-items: center;
    text-align: center;
  }
  .upload-desc {
    max-width: 600px;
  }
  .upload-steps-row {
    justify-content: center;
  }
  .impact-pillars-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .upload-showcase-section {
    padding: 50px 0 45px;
  }
  .upload-main-headline {
    font-size: 34px;
  }
  .upload-script-sub {
    font-size: 26px;
  }
  .upload-steps-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .upload-action-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-upload-primary {
    width: 100%;
    justify-content: center;
  }
  .floating-photo-card {
    width: 170px;
    height: 210px;
    right: -25px;
    bottom: 20px;
  }
  .phone-chassis {
    width: 250px;
    height: 480px;
  }
  .impact-pillars-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* --- mission.css --- */


.mission-page-section {
  position: relative;
  width: 100%;
  background: transparent !important;
  padding: 40px 0 85px;
  overflow: visible;
  border-top: none;
  border-bottom: none;
  z-index: 2;
}


.mission-page-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}




.mission-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.mission-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.badge-dot-orange {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF7A00;
}

.badge-line-orange {
  width: 44px;
  height: 2px;
  background: #FF7A00;
  border-radius: 2px;
}

.mission-top-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.mission-tricolor-accent {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
}

.mission-tricolor-accent .saffron-line {
  width: 32px;
  height: 3px;
  background: #FF7A00;
  border-radius: 2px;
}

.mission-tricolor-accent .blue-line {
  width: 32px;
  height: 3px;
  background: #0A1C3E;
  border-radius: 2px;
}

.mission-tricolor-accent .green-line {
  width: 32px;
  height: 3px;
  background: #16A34A;
  border-radius: 2px;
}


.mission-top-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #334155;
  font-weight: 450;
  max-width: 680px;
  margin: 0;
}




.mission-showcase-row {
  display: grid;
  grid-template-columns: 1.25fr 1px repeat(4, 1fr);
  gap: 28px;
  align-items: flex-start;
}


.mission-left-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 12px;
}

.highlight-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.highlight-headline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 14px;
}

.highlight-accent-curve {
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #FF7A00 0%, rgba(255, 122, 0, 0.2) 100%);
  border-radius: 2px;
  margin-bottom: 18px;
}

.highlight-cursive-quote {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: #0A1C3E;
  line-height: 1.2;
}

.highlight-cursive-quote .quote-orange {
  color: #FF7A00;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  vertical-align: top;
  margin: 0 2px;
}


.mission-vertical-divider {
  width: 1px;
  height: 100%;
  min-height: 220px;
  background: #E2E8F0;
  align-self: stretch;
}


.mission-principle-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.principle-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.principle-icon-badge.icon-blue { background: #EEF4FF; }
.principle-icon-badge.icon-orange { background: #FFF7ED; }

.principle-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0A1C3E;
  line-height: 1.25;
  margin: 0 0 10px;
}

.principle-mini-accent {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.mini-dot-orange {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF7A00;
}

.mini-line-blue {
  width: 20px;
  height: 2px;
  background: #0A4FCD;
  border-radius: 1px;
}

.principle-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
  font-weight: 450;
  margin: 0;
}




.mission-values-strip {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 6px 25px rgba(10, 28, 62, 0.03);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mission-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon-wrap.icon-blue { background: #EEF4FF; }
.value-icon-wrap.icon-green { background: #ECFDF5; }
.value-icon-wrap.icon-lavender { background: #EEF2FF; }
.value-icon-wrap.icon-emerald { background: #F0FDF4; }

.value-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A1C3E;
  margin: 0;
  line-height: 1.25;
}

.value-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #475569;
  margin: 0;
}


@media (max-width: 1200px) {
  .mission-showcase-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .mission-vertical-divider {
    display: none;
  }
  .mission-left-highlight {
    grid-column: span 2;
    align-items: center;
    text-align: center;
  }
  .highlight-accent-curve {
    margin-left: auto;
    margin-right: auto;
  }
  .mission-values-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .mission-page-section {
    padding: 50px 0 45px;
  }
  .highlight-headline {
    font-size: 28px;
  }
  .highlight-cursive-quote {
    font-size: 24px;
  }
  .mission-showcase-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mission-left-highlight {
    grid-column: span 1;
    align-items: flex-start;
    text-align: left;
  }
  .highlight-accent-curve {
    margin-left: 0;
  }
  .mission-values-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* --- footer.css --- */


.site-footer {
  position: relative;
  width: 100%;
  background: #FFFFFF !important;
  border-top: 1px solid #E2E8F0;
  margin-top: 0;
  padding: 24px 0 24px;
  color: #1E293B;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}


.footer-panorama-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-panorama-backdrop picture {
  display: contents;
}

.footer-panorama-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 2%;
  opacity: 0.48;
  filter: contrast(1.05);
  pointer-events: none;
  user-select: none;
}

.footer-inner-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
}


.footer-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.footer-brand-col {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand-link .brand-emblem {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  fill: #0A4FCD !important;
}

.footer-brand-title {
  font-size: 19px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: -0.02em;
}

.footer-portal-subtitle {
  font-size: 15px;
  font-weight: 800;
  color: #0A1C3E;
  margin-top: 2px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #1E293B;
  font-weight: 500;
  margin: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social-btn.fb { background: #1877F2; }
.footer-social-btn.ig { background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%); }
.footer-social-btn.tw { background: #000000; }
.footer-social-btn.yt { background: #FF0000; }

.footer-social-btn:hover {
  transform: scale(1.1);
}

.footer-cols-group {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 100px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #0A1C3E;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-col-accent {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

.footer-col-accent .bar-saffron {
  width: 20px;
  height: 3px;
  background: #FF7A00;
  border-radius: 2px;
}

.footer-col-accent .bar-green {
  width: 20px;
  height: 3px;
  background: #047857;
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0A1C3E;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list li a:hover {
  color: #0A4FCD;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: #0A1C3E;
  flex-shrink: 0;
}


.footer-skyline-vista {
  width: 100%;
  height: 140px;
  pointer-events: none;
}


.footer-cards-row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.footer-action-card {
  flex: 1;
  max-width: 480px;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.08), 0 2px 8px -2px rgba(15, 23, 42, 0.04);
}

.footer-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0A1C3E;
  margin: 0;
}

.footer-card-sub {
  font-size: 12.5px;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.footer-newsletter-input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 13.5px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  outline: none;
  background: #FFFFFF;
}

.footer-newsletter-input:focus {
  border-color: #0A4FCD;
}

.footer-btn-subscribe {
  height: 42px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  background: #091E3A;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.footer-btn-subscribe:hover {
  background: #0A4FCD;
}

.footer-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: #0A1C3E;
  background: #FFFFFF;
  border: 1.5px solid #0A1C3E;
  border-radius: 10px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 4px;
  transition: all 0.2s ease;
}

.footer-btn-contact:hover {
  background: #0A1C3E;
  color: #FFFFFF;
}


.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  font-size: 13px;
  color: #475569;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: #475569;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #0A4FCD;
}

.footer-made-with {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #1E293B;
}

.footer-heart {
  color: #FF7A00;
}




@media (max-width: 1024px) {
  .footer-top-row {
    flex-direction: column;
    gap: 32px;
  }
  .footer-cols-group {
    width: 100%;
    justify-content: space-between;
  }
  .footer-skyline-vista {
    height: 160px;
  }
  .footer-cards-row {
    flex-direction: column;
  }
  .footer-action-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 36px 0 24px;
  }
  .footer-inner-content {
    padding: 0 20px;
  }
  .footer-cols-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-skyline-vista {
    height: 100px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}



.footer-root {
  position: relative;
  width: 100%;
  background: #0A1C3E !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  z-index: 10;
}

.footer-root .footer-content a {
  transition: color 0.2s ease;
}

.footer-root .footer-content a:hover {
  color: #FF7A00 !important;
}

/* --- skeleton.css --- */



@keyframes skeletonShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.04) 100%
  ) !important;
  background-size: 200% 100% !important;
  animation: skeletonShimmer 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  pointer-events: none !important;
  user-select: none !important;
}


.skeleton-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  overflow: hidden;
}

.skeleton-thumb {
  width: 100%;
  height: 125px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.skeleton-line.short {
  width: 40%;
  height: 10px;
}

.skeleton-line.medium {
  width: 75%;
}

.skeleton-line.full {
  width: 100%;
}

.skeleton-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.skeleton-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}


.skeleton-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: rgba(9, 14, 26, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.skeleton-map-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.map-radar-pulse {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 122, 0, 0.6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-radar-pulse::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.3);
  animation: radarPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes radarPing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.map-radar-text {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.img-blur-up {
  opacity: 0;
  filter: blur(12px) scale(0.98);
  transition:
    opacity 450ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 450ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.img-blur-up.loaded {
  opacity: 1;
  filter: blur(0px) scale(1);
}


@keyframes cardStaggerIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contrib-card.stagger-in {
  animation: cardStaggerIn 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contrib-card.stagger-in:nth-child(1) { animation-delay: 60ms; }
.contrib-card.stagger-in:nth-child(2) { animation-delay: 120ms; }
.contrib-card.stagger-in:nth-child(3) { animation-delay: 180ms; }
.contrib-card.stagger-in:nth-child(4) { animation-delay: 240ms; }
