* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-header {
  position: relative;
  min-height: 50vh;
  background: linear-gradient(135deg, #0a0f16 0%, #141b2b 100%);
}

.hero-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-top: 25px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ABOUT STORY SECTION */
.about-hero-section {
  background: #ffffff;
  padding: 90px 0;
}

.about-story-wrap {
  display: block;
  overflow: hidden;
  margin-bottom: 50px;
}

.about-img-floating {
  float: right;
  width: 42%;
  margin-left: 45px;
  margin-bottom: 25px;
  shape-outside: inset(0% 0% 0% 0% round 24px);
}

.about-img-floating img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(10, 15, 22, 0.08);
  border: 1px solid var(--border-light);
}

.about-text-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.about-text-content p {
  color: #4a515a;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.stats-row-fullwidth {
  display: flex;
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 20px;
  margin-top: 60px;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: var(--shadow-sm);
  clear: both;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item h4 {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  font-feature-settings: "tnum";
}

.stat-item p {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-item-divider {
  width: 1px;
  height: 65px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.08) 80%,
    transparent
  );
}

/* ARCHITECTS SECTION */
.editorial-board-section {
  padding: 90px 0;
  background: #f4f6f9;
  position: relative;
  overflow: hidden;
}

.welcome-section-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.bg-shape-accent {
  position: absolute;
  left: -70px;
  top: -30px;
  width: 360px;
  height: 105%;
  min-height: 420px;
  background: linear-gradient(135deg, #ff8a3d 0%,#f75910 100%);
  border-radius: 50% 40% 60% 40% / 50% 50% 50% 50%;
  z-index: 1;
}

.welcome-photo-wrapper {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 380px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.welcome-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.welcome-content-card {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  background: #ffffff;
  border-radius: 28px;
  padding: 48px 48px 40px 56px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.welcome-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f75910;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.welcome-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #22252a;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.welcome-title .highlight-blue {
  color:  #f75910;
}

.welcome-message-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333a45;
  margin-bottom: 8px;
}

.welcome-message-block p {
  font-size: 0.95rem;
  line-height: 1.75;
  color:  #4a515a;
  margin-bottom: 10px;
}

.welcome-signoff {
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
}

.signoff-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
}

.signoff-role {
  font-size: 0.85rem;
  color: #ff8a3d;
  font-weight: 500;
}

/* MISSION & VISION */
.mv-section {
  padding: 40px 0;
  background: #f9fafb;
}

.centered-header {
  text-align: center;
  margin-bottom: 50px;
}

.centered-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.mv-wrapper {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.mv-card-reset {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px -10px rgba(10, 15, 22, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card-reset:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(10, 15, 22, 0.08);
}

.mv-card-reset h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 14px;
}

.mv-card-reset h3 i {
  color: var(--primary);
}

.mv-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.mv-bullet-list li:last-child {
  margin-bottom: 0;
}

.mv-bullet-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(247, 89, 16, 0.15);
}

/* --------------------------------------------------
 * TIMELINE / JOURNEY SECTION (ENLARGED & PROPORTIONAL)
 * -------------------------------------------------- */
.journey-section {
  padding: 60px 0;
  background: #f8fafc;
  overflow: visible;
  position: relative;
  text-align: center;
}

.section-header {
  margin-bottom: 20px;
}

.road-timeline-container {
  position: relative;
  width: 100%;
  max-width: 1300px; /* Wider canvas for bigger elements */
  height: 750px;     /* Increased vertical height */
  margin: 20px auto 0;
}

.road-svg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.road-track-progress {
  fill: none;
  stroke: #f6881f;
  stroke-width: 12px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* Base Landmark Container */
.road-milestone-landmark {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 210px; /* ENLARGED CARD WIDTH */
}

/* Position Above */
.road-milestone-landmark.position-above {
  transform: translate(-50%, -100%);
}

.road-milestone-landmark.position-above .milestone-text-block {
  order: 1;
  margin-bottom: 8px;
}

.road-milestone-landmark.position-above .pin-marker-assembly {
  order: 2;
}

/* Position Below */
.road-milestone-landmark.position-below {
  transform: translate(-50%, 0%);
}

.road-milestone-landmark.position-below .milestone-text-block {
  order: 2;
  margin-top: 8px;
}

.road-milestone-landmark.position-below .pin-marker-assembly {
  order: 1;
}

/* Enlarged Geo Pin Assembly */
.road-milestone-landmark .pin-marker-assembly {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  z-index: 10;
  width: 58px;
  height: 72px;
}

/* Enlarged Milestone Card Styling */
.road-milestone-landmark .milestone-text-block {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(10, 15, 22, 0.09);
  overflow: hidden;
  z-index: 15;
  background: #ffffff;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.milestone-text-block p {
  font-size: 0.88rem; /* Prominent body typography */
  line-height: 1.4;
  color: #334155;
  margin: 0;
}

.milestone-text-block p b {
  color: var(--primary);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 3px;
}

/* Desktop Scroll Activation */
@media (min-width: 1025px) {
  .road-milestone-landmark .milestone-text-block {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.92);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  }

  .road-milestone-landmark.node-activated .milestone-text-block {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
  }

  .road-milestone-landmark.node-activated .pin-marker-assembly {
    cursor: pointer;
  }
}

.road-milestone-landmark.node-activated .pin-marker-assembly {
  transform: scale(1);
  opacity: 1;
}

/* SVG Geo Pin Balloons */
.geo-balloon-pin {
  position: relative;
  width: 54px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-balloon-pin svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.pin-number-circle {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0a0f16;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.balloon-shadow {
  width: 18px;
  height: 5px;
  background: rgba(10, 15, 22, 0.2);
  border-radius: 50%;
  margin-top: -2px;
  filter: blur(2px);
}

/* Color Themes */
.milestone-gold .geo-balloon-pin svg .balloon-body { fill: #eab308; }
.milestone-yellow .geo-balloon-pin svg .balloon-body { fill: #d97706; }
.milestone-green .geo-balloon-pin svg .balloon-body { fill: #22c55e; }
.milestone-teal .geo-balloon-pin svg .balloon-body { fill: #0d9488; }
.milestone-blue .geo-balloon-pin svg .balloon-body { fill: #2563eb; }
.milestone-cyan .geo-balloon-pin svg .balloon-body { fill: #06b6d4; }
.milestone-magenta .geo-balloon-pin svg .balloon-body { fill: #ec4899; }
.milestone-red .geo-balloon-pin svg .balloon-body { fill: #ef4444; }
.milestone-orange .geo-balloon-pin svg .balloon-body { fill: #f97316; }
.milestone-indigo .geo-balloon-pin svg .balloon-body { fill: #4f46e5; }
.milestone-purple .geo-balloon-pin svg .balloon-body { fill: #7c3aed; }

/* SPATIAL DESKTOP COORDINATES FOR ENLARGED CARDS */
@media (min-width: 1025px) {
  /* Bottom Row Track (Y = 535px) */
  .node-1 { left: 10%; top: 535px; }
  .node-2 { left: 32%; top: 535px; }
  .node-3 { left: 54%; top: 535px; }
  .node-4 { left: 76%; top: 535px; }

  /* Middle Row Track (Y = 380px) */
  .node-5 { left: 70%; top: 315px; }
  .node-6 { left: 48%; top: 315px; }
  .node-7 { left: 26%; top: 315px; }
  .node-8 { left: 19%; top: 95px; }

  /* Top Row Track (Y = 160px) */
  .node-9  { left: 38%; top: 95px; }
  .node-10 { left: 57%; top: 95px; }
  .node-11 { left: 76%; top: 95px; }
}

/* RESPONSIVE MOBILE MEDIA QUERIES */
@media (max-width: 1024px) {
  .about-img-floating {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .stats-row-fullwidth {
    flex-direction: column;
    gap: 30px;
    padding: 30px 10px;
  }

  .stat-item-divider {
    width: 80%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
  }

  .mv-wrapper {
    flex-direction: column;
  }

  .journey-section {
    padding: 50px 0 !important;
    height: auto !important;
  }

  .road-timeline-container {
    height: auto !important;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    padding-left: 28px;
    margin-left: 10px;
  }

  .road-svg-canvas {
    display: none !important;
  }

  .road-timeline-container::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, #f75910 0%, #2563eb 50%, #7c3aed 100%);
    border-radius: 3px;
    z-index: 1;
  }

  .road-milestone-landmark {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px;
    text-align: left !important;
    opacity: 0;
    transform: translateY(35px) scale(0.97) !important;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .road-milestone-landmark.node-activated {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
  }

  .road-milestone-landmark .pin-marker-assembly {
    order: 1 !important;
    flex-shrink: 0;
    width: 50px !important;
    height: 60px !important;
    margin-left: -43px;
    z-index: 3;
    transform: scale(1) !important;
    opacity: 1 !important;
  }

  .geo-balloon-pin {
    width: 44px;
    height: 56px;
  }

  .pin-number-circle {
    top: 6px;
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
    border-width: 1.5px;
  }

  .balloon-shadow {
    display: none;
  }

  .road-milestone-landmark .milestone-text-block {
    order: 2 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(10, 15, 22, 0.06);
    flex-grow: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .road-milestone-landmark.node-activated .milestone-text-block:active,
  .road-milestone-landmark.node-activated .milestone-text-block:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(247, 89, 16, 0.12);
    border-color: rgba(247, 89, 16, 0.3);
  }

  .milestone-text-block p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.55;
    margin: 0;
  }

  .milestone-text-block p b {
    color: var(--primary);
    font-size: 1.05rem;
    display: inline-block;
    margin-right: 4px;
  }

  .welcome-section-card {
    flex-direction: column;
    gap: 24px;
  }

  .bg-shape-accent {
    width: 100%;
    max-width: 320px;
    height: 300px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .welcome-photo-wrapper {
    width: 280px;
    height: 320px;
  }

  .welcome-content-card {
    padding: 32px 24px;
    width: 100%;
  }

  .welcome-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 20px;
  }

  .about-text-content h2 {
    font-size: 1.8rem;
  }

  .stat-item h4 {
    font-size: 2.5rem;
  }

  .mv-card-reset {
    padding: 30px 20px;
  }
}