
/* ========================================
   NEW HERO SECTION - SPLIT PANEL DESIGN
   ======================================== */
/* ========================================
   ULTRA PREMIUM HERO SECTION - UNIQUE LAYOUT
   ======================================== */

.about-hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: #ffffff;
}

/* Animated Background */
.hero-bg-new {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 183, 74, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 102, 204, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 191, 166, 0.05) 0%, transparent 50%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 183, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 74, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 70%);
}

.hero-floating-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: orbFloat 30s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 183, 74, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -10s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.08) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -20s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -40px) scale(1.15);
  }
  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

/* Main Content Layout - Asymmetric Design */
.hero-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content Panel */
.hero-content-panel {
  max-width: 650px;
  position: relative;
}

/* Premium Badge with Animation */
.hero-label-strip {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 30px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.08), rgba(0, 191, 166, 0.08));
  border: 1.5px solid rgba(0, 183, 74, 0.2);
  border-radius: 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-label-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 183, 74, 0.1), transparent);
  animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  100% { left: 200%; }
}

.label-line {
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #00B74A, #00BFA6);
  border-radius: 3px;
}

.label-text {
  font-size: 13px;
  font-weight: 700;
  color: #00B74A;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.label-dot {
  width: 10px;
  height: 10px;
  background: #00B74A;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 183, 74, 0.5);
}

.label-dot.pulse {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0, 183, 74, 0.5), 0 0 0 0 rgba(0, 183, 74, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 183, 74, 0.7), 0 0 0 15px rgba(0, 183, 74, 0);
  }
}

/* Hero Title - Magazine Style */
.hero-main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);

  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 35px;
  color: #1a2332;
  letter-spacing: -0.03em;
}

.title-row {
  display: block;
}

.title-accent {
  background: linear-gradient(135deg, #00B74A 0%, #00BFA6 60%, #0066CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.title-underline {
  position: relative;
  display: inline-block;
  color: #00B74A;
}

.title-underline::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 18px;
  background: rgba(0, 183, 74, 0.12);
  z-index: -1;
  border-radius: 6px;
  animation: underlineExpand 1s ease-out forwards;
}

@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Lead Text */
.hero-lead-text {
  font-size: 19px;
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 45px;
  font-weight: 400;
}

.hero-lead-text strong {
  color: #00B74A;
  font-weight: 700;
  position: relative;
}

/* Action Buttons - Modern Style */
.hero-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.action-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 19px 42px;
  background: linear-gradient(135deg, #00B74A 0%, #00BFA6 100%);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 183, 74, 0.25);
  position: relative;
  overflow: hidden;
}

.action-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00BFA6 0%, #0066CC 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.action-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 183, 74, 0.35);
  color: white;
}

.action-btn-primary:hover::before {
  opacity: 1;
}

.action-btn-primary span,
.action-btn-primary i {
  position: relative;
  z-index: 1;
}

.action-btn-primary i {
  transition: transform 0.3s ease;
}

.action-btn-primary:hover i {
  transform: translateY(3px);
}

.action-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 19px 36px;
  background: white;
  color: #1a2332;
  text-decoration: none;
  border: 2px solid rgba(0, 183, 74, 0.2);
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.action-btn-ghost:hover {
  border-color: #00B74A;
  color: #00B74A;
  background: rgba(0, 183, 74, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 183, 74, 0.15);
}

/* Trust Badges - Sleek Pills */
.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: white;
  border-radius: 50px;
  border: 1px solid rgba(0, 183, 74, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: #1a2332;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.trust-chip:hover {
  border-color: rgba(0, 183, 74, 0.4);
  background: rgba(0, 183, 74, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 183, 74, 0.12);
}

.trust-chip i {
  color: #00B74A;
  font-size: 15px;
}

/* Right Visual Panel - Premium Cards Stack */
.hero-visual-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.perspective-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 550px;
}

/* Stats Grid - Overlapping Cards */
.stats-perspective-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  transform-style: preserve-3d;
}

.perspective-stat-box {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 35px 28px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 183, 74, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.perspective-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00B74A, #00BFA6, #0066CC);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.perspective-stat-box:hover::before {
  transform: scaleX(1);
}

.perspective-stat-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 183, 74, 0.15);
  border-color: rgba(0, 183, 74, 0.3);
}

.box-large {
  grid-column: span 2;
  padding: 40px 32px;
}

.stat-inner-content {
  position: relative;
  z-index: 1;
}

.stat-icon-badge {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 191, 166, 0.08));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.perspective-stat-box:hover .stat-icon-badge {
  background: linear-gradient(135deg, #00B74A, #00BFA6);
  transform: scale(1.1) rotate(-5deg);
}

.stat-icon-badge i {
  font-size: 28px;
  color: #00B74A;
  transition: all 0.4s ease;
}

.perspective-stat-box:hover .stat-icon-badge i {
  color: white;
}

.stat-icon-badge.blue {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 191, 166, 0.08));
}

.stat-icon-badge.blue i {
  color: #0066CC;
}

.perspective-stat-box:hover .stat-icon-badge.blue {
  background: linear-gradient(135deg, #0066CC, #00BFA6);
}

.stat-icon-badge.teal {
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.1), rgba(0, 183, 74, 0.08));
}

.stat-icon-badge.teal i {
  color: #00BFA6;
}

.perspective-stat-box:hover .stat-icon-badge.teal {
  background: linear-gradient(135deg, #00BFA6, #00B74A);
}

.stat-icon-badge.orange {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0, 183, 74, 0.08));
}

.stat-icon-badge.orange i {
  color: #F59E0B;
}

.perspective-stat-box:hover .stat-icon-badge.orange {
  background: linear-gradient(135deg, #F59E0B, #00B74A);
}

.stat-data {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.stat-big-number {
  font-size: 48px;
  font-weight: 900;
  color: #1a2332;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #00B74A, #00BFA6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-description {
  font-size: 15px;
  color: #5a6c7d;
  font-weight: 500;
}

.box-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.perspective-stat-box:hover .box-shine {
  transform: translateX(100%);
}

/* Central Brand Element - Floating Badge */
.central-brand-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.ring-outer {
  width: 160px;
  height: 160px;
  border: 2px dashed rgba(0, 183, 74, 0.25);
  transform: translate(-50%, -50%);
  animation: rotateRing 40s linear infinite;
}

.ring-inner {
  width: 120px;
  height: 120px;
  border: 2px dotted rgba(0, 102, 204, 0.2);
  transform: translate(-50%, -50%);
  animation: rotateRing 30s linear infinite reverse;
}

@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.brand-core {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 50px rgba(0, 183, 74, 0.2);
  border: 2px solid rgba(0, 183, 74, 0.1);
}

.brand-core img {
  height: 70px;
  filter: drop-shadow(0 4px 15px rgba(0, 183, 74, 0.15));
}

/* Scroll Indicator - Minimalist */
.scroll-indicator-new {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(0, 183, 74, 0.3);
  border-radius: 15px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 10px;
  background: #00B74A;
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 22px;
    opacity: 0.3;
  }
}

.scroll-indicator-new span {
  font-size: 11px;
  color: #5a6c7d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ========================================
   ENHANCED OTHER SECTIONS - PREMIUM TOUCH
   ======================================== */

/* Journey Section Enhancement */
.journey-section-new {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8fafb 100%);
  padding: 120px 0;
}

.section-header-new .header-tag {
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.08), rgba(0, 191, 166, 0.06));
  border: 1.5px solid rgba(0, 183, 74, 0.2);
  box-shadow: 0 4px 15px rgba(0, 183, 74, 0.08);
}

.section-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.milestone-stack-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.milestone-stack-item:hover {
  transform: translateX(10px);
}

.milestone-year-badge {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.milestone-content-block {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 183, 74, 0.08);
}

.milestone-stack-item:hover .milestone-content-block {
  box-shadow: 0 20px 60px rgba(0, 183, 74, 0.12);
  border-color: rgba(0, 183, 74, 0.2);
}

/* Core Values Enhancement */
.core-values-premium {
  background: linear-gradient(135deg, #0c1a2d 0%, #1a2942 50%, #102240 100%);
}

.active-value-display {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Mission Vision Enhancement */
.mission-vision-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #eff6ff 100%);
}

.mv-panel {
  box-shadow: inset 0 0 100px rgba(0, 183, 74, 0.03);
}

/* Impact Section Enhancement */
.impact-section-premium {
  background: linear-gradient(135deg, #1a2332 0%, #0f1b2e 50%, #1a2942 100%);
}

.impact-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.impact-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 183, 74, 0.25);
}

/* Leadership Enhancement */
.leadership-section-premium {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
}

.featured-leader {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 183, 74, 0.08);
}

.team-member:hover {
  box-shadow: 0 25px 70px rgba(0, 183, 74, 0.15);
}

/* CTA Enhancement */
.cta-section-premium {
  background: linear-gradient(135deg, #00b74a 0%, #00bfa6 50%, #0066cc 100%);
  position: relative;
}

.cta-section-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
  .hero-split-layout {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content-panel {
    max-width: 100%;
  }

  .hero-label-strip {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-action-row {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .perspective-container {
    margin: 0 auto;
  }

  .stats-perspective-grid {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .stats-perspective-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .box-large {
    grid-column: span 1;
  }

  .perspective-stat-box {
    padding: 28px 24px;
  }

  .stat-big-number {
    font-size: 40px;
  }

  .central-brand-element {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-hero-new {
    padding: 120px 0 80px;
  }

  .hero-action-row {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .action-btn-primary,
  .action-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-row {
    gap: 10px;
  }

  .trust-chip {
    padding: 10px 18px;
    font-size: 12px;
  }

  .hero-lead-text {
    font-size: 16px;
  }
}

/* ========================================
   NEW JOURNEY SECTION - MAGAZINE STACK
   ======================================== */
.journey-section-new {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.journey-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.journey-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(0, 183, 74, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 102, 204, 0.04) 0%, transparent 50%), var(--bg-section);
}

.journey-dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 183, 74, 0.04) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}

/* Section Header New */
.section-header-new {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.header-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(0, 183, 74, 0.1);
  border-radius: 50px;
  margin-bottom: 25px;
}

.header-tag i {
  color: var(--primary-green);
  font-size: 14px;
}

.header-tag span {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.5px;
}

.section-main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.gradient-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Milestones Stack Container */
.milestones-stack-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Milestone Stack Item */
.milestone-stack-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.milestone-stack-item.reverse {
  flex-direction: row-reverse;
}

.milestone-stack-item.reverse .milestone-content-block {
  flex-direction: row-reverse;
}

.milestone-stack-item.reverse .milestone-connector {
  left: auto;
  right: 100px;
}

/* Year Badge */
.milestone-year-badge {
  flex-shrink: 0;
  width: 120px;
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.milestone-stack-item:hover .milestone-year-badge {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 183, 74, 0.2);
}

.year-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.year-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.future-badge {
  background: var(--gradient-primary);
  border: none;
}

.future-badge .year-number {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.future-badge .year-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Content Block */
.milestone-content-block {
  flex: 1;
  display: flex;
  gap: 30px;
  background: white;
  border-radius: 28px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.milestone-stack-item:hover .milestone-content-block {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 183, 74, 0.15);
}

.future-block {
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
}

/* Visual */
.milestone-visual {
  flex-shrink: 0;
  position: relative;
  width: 100px;
  height: 100px;
}

.visual-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(0, 183, 74, 0.1);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.milestone-stack-item:hover .visual-icon-wrap {
  background: var(--gradient-primary);
}

.visual-icon-wrap i {
  font-size: 32px;
  color: var(--primary-green);
  transition: var(--transition);
}

.milestone-stack-item:hover .visual-icon-wrap i {
  color: white;
}

.visual-icon-wrap.blue {
  background: rgba(0, 102, 204, 0.1);
}

.visual-icon-wrap.blue i {
  color: var(--primary-blue);
}

.visual-icon-wrap.teal {
  background: rgba(0, 191, 166, 0.1);
}

.visual-icon-wrap.teal i {
  color: var(--secondary-teal);
}

.visual-icon-wrap.orange {
  background: rgba(245, 158, 11, 0.1);
}

.visual-icon-wrap.orange i {
  color: var(--accent-orange);
}

.visual-icon-wrap.gradient {
  background: var(--gradient-primary);
}

.visual-icon-wrap.gradient i {
  color: white;
}

.visual-bg-shape {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(0, 183, 74, 0.08);
  border-radius: 18px;
  bottom: 0;
  right: 0;
  transform: rotate(15deg);
  z-index: 1;
}

.visual-bg-shape.blue {
  background: rgba(0, 102, 204, 0.08);
}

.visual-bg-shape.teal {
  background: rgba(0, 191, 166, 0.08);
}

.visual-bg-shape.orange {
  background: rgba(245, 158, 11, 0.08);
}

.visual-bg-shape.gradient {
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 102, 204, 0.1));
}

/* Info */
.milestone-info {
  flex: 1;
}

.milestone-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.milestone-info p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 20px;
}

.milestone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.milestone-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-section);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-medium);
  font-weight: 500;
  transition: var(--transition);
}

.milestone-tags span:hover {
  background: rgba(0, 183, 74, 0.1);
  color: var(--primary-green);
}

.milestone-tags span i {
  font-size: 12px;
  color: var(--primary-green);
}

/* Connector */
.milestone-connector {
  position: absolute;
  left: 100px;
  top: 100%;
  width: 2px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connector-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 183, 74, 0.3), rgba(0, 183, 74, 0.1));
}

.connector-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-top: 5px;
}

.milestone-stack-item.future .milestone-connector {
  display: none;
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */
.mission-vision-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.mv-wrapper {
  display: flex;
  position: relative;
  min-height: 650px;
}

.mv-panel {
  flex: 1;
  position: relative;
  padding: 100px 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mission-panel .panel-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
}

.vision-panel .panel-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}

.panel-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-left: auto;
}

.vision-panel .panel-content-wrapper {
  margin-left: 0;
  margin-right: auto;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(0, 183, 74, 0.15);
  border-radius: 50px;
  margin-bottom: 30px;
}

.panel-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.panel-badge span {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
}

.vision-badge {
  background: rgba(0, 102, 204, 0.15);
}

.vision-badge .badge-icon {
  background: linear-gradient(135deg, #0066cc, #00bfa6);
}

.vision-badge span {
  color: var(--primary-blue);
}

.panel-title {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 20px;
  line-height: 1.3;
}

.panel-description {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 40px;
}

.panel-stats {
  display: flex;
  align-items: center;
  gap: 25px;
}

.stat-circle {
  position: relative;
  width: 110px;
  height: 110px;
}

.stat-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bg-circle {
  fill: none;
  stroke: rgba(0, 183, 74, 0.15);
  stroke-width: 6;
}

.progress-circle {
  fill: none;
  stroke: var(--primary-green);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 1.5s ease;
}

.vision-progress {
  stroke: var(--primary-blue);
}

.vision-panel .bg-circle {
  stroke: rgba(0, 102, 204, 0.15);
}

.stat-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.stat-inner .stat-number {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-green);
}

.vision-inner .stat-number {
  color: var(--primary-blue);
}

.stat-inner .stat-text {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info .stat-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
}

.stat-info .stat-sublabel {
  font-size: 13px;
  color: var(--text-muted);
}

/* Center Element */
.mv-center-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  display: none;
}

.center-circle {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.circle-inner {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-inner i {
  font-size: 28px;
  color: white;
}

.center-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: white;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

/* ========================================
   Section Header Premium (for other sections)
   ======================================== */
.section-header-premium {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(0, 183, 74, 0.1);
  border-radius: 50px;
  margin-bottom: 25px;
}

.header-badge i {
  color: var(--primary-green);
  font-size: 14px;
}

.header-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
}

.header-badge.light {
  background: rgba(255, 255, 255, 0.15);
}

.header-badge.light i,
.header-badge.light span {
  color: white;
}

.section-title-premium {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.section-subtitle-premium {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
/* ========================================
   CORE VALUES - Premium Interactive Grid
   ======================================== */
.core-values-premium {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0c1a2d 0%, #102240 100%);
    overflow: hidden;
}

.core-values-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.core-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(0, 183, 74, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(0, 102, 204, 0.08) 0%, transparent 50%);
}

.core-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.core-shapes {
    position: absolute;
    inset: 0;
}

.core-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
}

.core-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    top: -150px;
    right: -100px;
    animation: shapePulse 8s ease-in-out infinite;
}

.core-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    bottom: -100px;
    left: -50px;
    animation: shapePulse 10s ease-in-out infinite 1s;
}

.core-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--secondary-teal);
    top: 50%;
    left: 10%;
    animation: shapePulse 12s ease-in-out infinite 2s;
}

@keyframes shapePulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
}

/* Premium Header */
.core-header-premium {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.core-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.badge-orb {
    position: relative;

}

.badge-orb i {
    font-size: 18px;
    color: var(--primary-green);
    position: relative;
    z-index: 2;
    animation: badgeSpin 6s linear infinite;
}



.core-badge span {
    font-size: 15px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.badge-trail {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-green) 0%,
        var(--secondary-teal) 50%,
        var(--primary-blue) 100%);
    width: 0;
    animation: trailGrow 2s ease-out forwards;
}

@keyframes trailGrow {
    from { width: 0; }
    to { width: 100%; }
}

.core-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(135deg, #00B74A 0%, #00BFA6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 183, 74, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.core-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Value Selector */
.value-selector {
    max-width: 600px;
    margin: 40px auto 0;
}

.selector-track {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.selector-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #00B74A, #00BFA6);
    border-radius: 2px;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.selector-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.selector-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 15px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.selector-btn i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.selector-btn span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.selector-btn.active {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.selector-btn.active i,
.selector-btn.active span {
    color: white;
}

.selector-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.02);
}

.selector-btn:hover:not(.active) i,
.selector-btn:hover:not(.active) span {
    color: rgba(255, 255, 255, 0.8);
}

/* Interactive Grid */
.values-interactive-grid {
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

/* Active Value Display */
.active-value-display {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px;
    transition: all 0.5s ease;
}

.value-visual {
    position: relative;
}

.visual-canvas {
    position: relative;
    width: 100%;
    height: 400px;
}

#value-canvas {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00B74A, #0066CC);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 183, 74, 0.3);
    transition: all 0.5s ease;
}

.center-icon i {
    font-size: 40px;
    color: white;
}

.visual-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.visual-stat .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-align: center;
}

.visual-stat .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 100px;
}

/* Value Details */
.value-details {
    padding: 20px 0;
}

.value-number {
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -20px;
}

.value-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00B74A, #00BFA6);
    border-radius: 2px;
}

.value-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 183, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--primary-green);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Value Mini Grid */
.value-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-value-card {
    position: relative;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mini-value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(0, 183, 74, 0.2);
}

.mini-value-card[data-value="trust"]:hover {
    border-color: rgba(0, 183, 74, 0.3);
}

.mini-value-card[data-value="speed"]:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.mini-value-card[data-value="customer"]:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.mini-value-card[data-value="innovation"]:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.mini-value-card[data-value="transparency"]:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.mini-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mini-value-card:hover .mini-card-icon {
    background: rgba(0, 183, 74, 0.1);
}

.mini-card-icon i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mini-value-card:hover .mini-card-icon i {
    color: var(--primary-green);
}

.mini-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-card-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.mini-card-stat {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.mini-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 183, 74, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini-value-card:hover .mini-card-glow {
    opacity: 1;
}

/* Value Impact Metrics */
.value-impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.impact-metric {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.impact-metric:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.metric-visual {
    position: relative;
    flex-shrink: 0;
}

.metric-progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.metric-progress-circle svg {
    transform: rotate(-90deg);
}

.metric-progress-circle .progress {
    transition: stroke-dashoffset 1.5s ease;
}

.metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.metric-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.metric-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .active-value-display {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .value-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-impact-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .core-header-premium {
        margin-bottom: 50px;
    }
    
    .active-value-display {
        padding: 30px;
    }
    
    .visual-canvas {
        height: 300px;
    }
    
    .center-icon {
        width: 80px;
        height: 80px;
    }
    
    .center-icon i {
        font-size: 30px;
    }
    
    .value-number {
        font-size: 80px;
    }
    
    .value-title {
        font-size: 28px;
    }
    
    .value-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .value-impact-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .core-badge {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .selector-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .selector-btn {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .active-value-display {
        padding: 25px;
    }
    
    .visual-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   IMPACT SECTION - Premium Stats
   ======================================== */
.impact-section-premium {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--text-heading);
  overflow: hidden;
}

.impact-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.impact-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 183, 74, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%);
}

.impact-particles {
  position: absolute;
  inset: 0;
}

.impact-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: particleFloat 15s infinite ease-in-out;
}

.impact-particles span:nth-child(1) {
  left: 5%;
  top: 20%;
  animation-delay: 0s;
}
.impact-particles span:nth-child(2) {
  left: 15%;
  top: 70%;
  animation-delay: 2s;
}
.impact-particles span:nth-child(3) {
  left: 30%;
  top: 30%;
  animation-delay: 4s;
}
.impact-particles span:nth-child(4) {
  left: 45%;
  top: 80%;
  animation-delay: 6s;
}
.impact-particles span:nth-child(5) {
  left: 60%;
  top: 25%;
  animation-delay: 8s;
}
.impact-particles span:nth-child(6) {
  left: 70%;
  top: 60%;
  animation-delay: 1s;
}
.impact-particles span:nth-child(7) {
  left: 80%;
  top: 15%;
  animation-delay: 3s;
}
.impact-particles span:nth-child(8) {
  left: 90%;
  top: 50%;
  animation-delay: 5s;
}
.impact-particles span:nth-child(9) {
  left: 25%;
  top: 55%;
  animation-delay: 7s;
}
.impact-particles span:nth-child(10) {
  left: 55%;
  top: 45%;
  animation-delay: 9s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, -30px);
    opacity: 0.8;
  }
}

.impact-shapes {
  position: absolute;
  inset: 0;
}

.impact-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.impact-shapes .shape-1 {
  width: 400px;
  height: 400px;
  border: 2px solid white;
  top: -200px;
  left: -100px;
}

.impact-shapes .shape-2 {
  width: 300px;
  height: 300px;
  border: 2px solid white;
  bottom: -150px;
  right: -50px;
}

.impact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.impact-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.impact-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 35px;
}

.impact-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
}

.highlight-item i {
  color: var(--primary-green);
  font-size: 16px;
}

/* Impact Stats Grid */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.impact-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 20px 20px;
  text-align: center;
  transition: var(--transition);
}

.impact-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(0, 183, 74, 0.3);
}

.impact-stat-card .stat-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 183, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.impact-stat-card .stat-icon i {
  font-size: 26px;
  color: var(--primary-green);
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.stat-number-wrap .stat-number {
  font-size: 38px;
  font-weight: 800;
  color: white;
}

.stat-number-wrap .stat-suffix {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
}

.impact-stat-card .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ========================================
   LEADERSHIP SECTION
   ======================================== */
.leadership-section-premium {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.leadership-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.leadership-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-section) 50%, #ffffff 100%);
}

.leadership-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.l-shape {
  position: absolute;
  border-radius: 50%;
}

.l-shape.shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(0, 183, 74, 0.06) 0%, transparent 70%);
}

.l-shape.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
}

/* Featured Leader */
.featured-leader {
  display: flex;
  align-items: center;
  gap: 70px;
  background: white;
  border-radius: 35px;
  padding: 60px;
  box-shadow: var(--shadow-xl);
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 183, 74, 0.1);
}

.leader-image-section {
  position: relative;
  flex-shrink: 0;
}

.image-backdrop {
  position: absolute;
  width: 240px;
  height: 240px;
  background: var(--gradient-primary);
  border-radius: 35px;
  transform: rotate(8deg);
  opacity: 0.15;
}

.image-frame {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 15px 22px;
  border-radius: 35px;
  box-shadow: var(--shadow-lg);
}

.role-badge i {
  color: #fbbf24;
  font-size: 16px;
}

.role-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
}

.leader-info-section {
  flex: 1;
}

.leader-name {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 25px;
}

.leader-quote {
  position: relative;
  font-size: 20px;
  color: var(--text-medium);
  line-height: 1.8;
  font-style: italic;
  padding-left: 30px;
  border-left: 4px solid var(--primary-green);
  margin-bottom: 30px;
}

.leader-quote i {
  position: absolute;
  top: -10px;
  left: 35px;
  font-size: 24px;
  color: rgba(0, 183, 74, 0.2);
}

.leader-social {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 50px;
  height: 50px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
}

.social-btn:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-4px);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.team-member {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.member-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-image img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
}

.team-member:hover .image-overlay {
  opacity: 1;
}

.overlay-btn {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  text-decoration: none;
  transition: var(--transition);
}

.overlay-btn:hover {
  background: var(--primary-green);
  color: white;
}

.member-info {
  padding: 28px;
  text-align: center;
}

.member-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.member-role {
  font-size: 14px;
  color: var(--primary-green);
  font-weight: 600;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section-premium {
  padding: 80px 0;
  background: var(--bg-section);
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.partners-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
  transition: var(--transition);
  padding: 25px 35px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.partner-item:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.partner-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 183, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partner-item:hover .partner-icon {
  background: var(--gradient-primary);
}

.partner-icon i {
  font-size: 24px;
  color: var(--primary-green);
  transition: var(--transition);
}

.partner-item:hover .partner-icon i {
  color: white;
}

.partner-item span {
  font-size: 13px;
  color: var(--text-medium);
  font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section-premium {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.cta-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00b74a 0%, #00bfa6 50%, #0066cc 100%);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-title span {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 45px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 30px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-btn.primary {
  background: white;
  color: var(--text-heading);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

.cta-btn i {
  font-size: 24px;
}

.cta-btn div {
  text-align: left;
}

.cta-btn div span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn div strong {
  display: block;
  font-size: 16px;
}



.payment-partners {
  display: flex;
  gap: 18px;
}

.payment-partners img {
  height: 32px;
  opacity: 0.6;
  transition: var(--transition);
}

.payment-partners img:hover {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-6px);
  color: white;
  box-shadow: 0 20px 50px rgba(0, 183, 74, 0.5);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
  .hero-split-layout {
    gap: 50px;
  }

  .perspective-container {
    width: 450px;
    height: 450px;
  }

  .mv-panel {
    padding: 70px 50px;
  }

  .values-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

 
}

@media (max-width: 992px) {
  .container-fluid {
    padding: 0 30px;
  }

  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content-panel {
    max-width: 100%;
  }

  .hero-label-strip {
    justify-content: center;
  }

  .hero-action-row {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .perspective-container {
    width: 400px;
    height: 400px;
  }

  .stats-perspective-grid {
    transform: none;
  }

  .milestone-stack-item,
  .milestone-stack-item.reverse {
    flex-direction: column;
    align-items: center;
  }

  .milestone-stack-item.reverse .milestone-content-block {
    flex-direction: row;
  }

  .milestone-year-badge {
    width: auto;
    padding: 20px 35px;
  }

  .milestone-connector {
    display: none;
  }

  .mv-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .mv-panel {
    padding: 80px 50px;
  }

  .panel-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .panel-stats {
    justify-content: center;
  }

  .mv-center-element {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 0;
  }

  .value-card-featured {
    flex-direction: column;
    text-align: center;
  }

  .value-tags {
    justify-content: center;
  }

  .impact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .impact-highlights {
    align-items: center;
  }

  .featured-leader {
    flex-direction: column;
    text-align: center;
  }

  .leader-quote {
    border-left: none;
    padding-left: 0;
    border-top: 4px solid var(--primary-green);
    padding-top: 20px;
  }

  .leader-quote i {
    display: none;
  }

  .leader-social {
    justify-content: center;
  }



}

@media (max-width: 768px) {

  .about-hero-new {
    padding: 120px 0 80px;
  }

  .perspective-container {
    width: 320px;
    height: auto;
  }

  .stats-perspective-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .perspective-stat-box {
    padding: 20px 18px;
  }

  .stat-big-number {
    font-size: 32px;
  }

  .central-brand-element {
    display: none;
  }

  .milestone-content-block {
    flex-direction: column !important;
    text-align: center;
  }

  .milestone-visual {
    margin: 0 auto;
  }

  .milestone-tags {
    justify-content: center;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-cards-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .partners-grid {
    gap: 20px;
  }

  .partner-item {
    padding: 20px 25px;
  }

  
}

@media (max-width: 576px) {
  .container-fluid {
    padding: 0 20px;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .section-main-title,
  .section-title-premium {
    font-size: 1.75rem;
  }

  .stats-perspective-grid {
    grid-template-columns: 1fr;
  }

  .perspective-stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }

  .stat-icon-badge {
    margin-bottom: 0;
  }

  .value-card-featured {
    padding: 30px 25px;
  }

  .value-card {
    padding: 30px 25px;
  }

  .featured-leader {
    padding: 35px;
  }

  .image-frame {
    width: 180px;
    height: 180px;
  }

  .image-backdrop {
    width: 200px;
    height: 200px;
  }

  .hero-action-row {
    flex-direction: column;
    gap: 15px;
  }

  .action-btn-primary,
  .action-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}










/* enhanced other sections  */


