/* Old conflicting styles removed - using modern styles below */
.timeline-section .timeline {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    margin: 32px 0;
    padding-bottom: 16px;
}
.timeline-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    min-width: 220px;
    padding: 24px 16px;
    text-align: center;
    flex-shrink: 0;
}
.timeline-year {
    font-size: 1.6rem;
    font-weight: bold;
    color: #3476d1;
    margin-bottom: 8px;
    display: block;
}
.features-section .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 28px 20px;
    text-align: center;
    flex: 1 1 220px;
    min-width: 220px;
}
.feature-card .icon-lg {
    font-size: 2.3rem;
    color: #3476d1;
    margin-bottom: 8px;
}
.team-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    text-align: center;
    min-width: 220px;
}
.team-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 14px;
    border: 4px solid var(--about-orange);
    background: #f0f0f0; /* Fallback color if image fails to load */
}
.team-bio {
    font-size: 0.97em;
    color: #666;
    margin-top: 8px;
}
.testimonial-item {
    background: #f8faff;
    border-left: 4px solid #3476d1;
    border-radius: 12px;
    padding: 22px 20px 18px 26px;
    margin: 0 10px 16px 0;
    font-style: italic;
    box-shadow: 0 1px 7px rgba(0,0,0,0.04);
}
.testimonial-author {
    display: block;
    margin-top: 10px;
    color: #3476d1;
    font-weight: 500;
}
.cta-section {
    background: #295087;
    color: #fff;
    border-radius: 18px;
    margin-top: 32px;
    text-align: center;
    padding: 48px 0 32px 0;
}
.cta-section .btn-primary {
    background: #fff;
    color: #295087;
    border: none;
}

/* --- Modern About Us Redesign --- */
:root {
  --about-blue: #295087;
  --about-orange: #FF9800;
  --about-bg: #f7f9fc;
  --about-light: #fff;
  --about-gray: #e9eef5;
  --about-gradient: linear-gradient(120deg, #295087 0%, #3476d1 100%);
}
body {
  background: var(--about-bg);
  font-family: 'Poppins', 'Noto Sans SC', Arial, sans-serif;
  color: #222;
}

/* --- HERO --- */
.about-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  background: url('/image/About_us/Office.jpg') center center/cover no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, 
    rgba(41,80,135,0.55) 0%, 
    rgba(52,118,209,0.35) 100%);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  color: #fff !important;
}
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.about-hero .btn-primary {
  background: var(--about-orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.about-hero .btn-primary:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- TIMELINE --- */
.timeline-section {
  background: var(--about-light);
  padding: 80px 0 60px 0;
  position: relative;
}
.timeline {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  justify-content: center;
  margin: 48px 0 0 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: var(--about-orange);
  opacity: 0.13;
  z-index: 0;
}
.timeline-item {
  background: transparent;
  border-radius: 16px;
  min-width: 180px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 12px;
}
/* Old timeline year style - overridden by horizontal timeline style above */
.timeline-item p {
  background: var(--about-gray);
  border-radius: 12px;
  padding: 18px 12px;
  margin: 0;
  font-size: 1.05rem;
  color: #295087;
  box-shadow: 0 1px 6px rgba(41,80,135,0.04);
}

/* --- Modern Mission & Vision Flow --- */
.mission-section {
  background: linear-gradient(120deg, #f7f9fc 60%, #e9eef5 100%);
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  top: 30px; left: 50%; transform: translateX(-50%);
  width: 90vw; height: 220px;
  background: radial-gradient(circle at 60% 40%, #FF9800 0%, transparent 70%);
  opacity: 0.08;
  z-index: 0;
}
.mission-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.mission-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 220px;
  max-width: 340px;
  text-align: center;
}
.mission-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(255,152,0,0.10);
  margin-bottom: 18px;
  font-size: 2.3rem;
  color: #FF9800;
  position: relative;
  z-index: 2;
}
.mission-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -40px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF9800 0%, #295087 100%);
  border-radius: 2px;
  z-index: 1;
}
.mission-step h3 {
  color: #295087;
  font-size: 1.25rem;
  margin-bottom: 10px;
  margin-top: 0;
}
.mission-step p {
  color: #222;
  font-size: 1.08rem;
  margin: 0;
  margin-top: 8px;
  line-height: 1.6;
}
.mission-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
.mission-section .section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  background: #FF9800;
  margin: 18px auto 0 auto;
  border-radius: 2px;
}

/* --- Section Subtitle Styling --- */
.section-subtitle {
  font-size: 1.15rem;
  color: #555;
  text-align: center;
  line-height: 1.7;
  max-width: 800px;
  margin: 24px auto 0 auto;
  font-weight: 400;
}

/* --- Single Value Container Styling --- */
.single-value-container {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.value-icon-large {
  width: 80px;
  height: 80px;
  background: #FF9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
}

.value-description {
  font-size: 1.2rem;
  color: #295087;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.6;
}

.value-details {
  margin-top: 32px;
  text-align: left;
}

.value-details p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: none;
}

/* --- Values Grid Styling --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.value-item {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(41, 80, 135, 0.08);
  border: 1px solid #e9eef5;
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(41, 80, 135, 0.12);
}

.value-item h4 {
  color: #295087;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-item h4 i {
  color: #FF9800;
  font-size: 1.2rem;
}

.value-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Modern Features Flow --- */
.features-section {
  background: url('/image/About_us/Warehouse.jpg') center center/cover no-repeat !important;
  background-color: #295087 !important;
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}
/* Temporarily removing overlay to see warehouse image
.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,80,135,0.3);
  z-index: 1;
}
*/
.features-section .container {
  position: relative;
  z-index: 2;
}
.features-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
}
.features-section .section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  background: #fff;
  margin: 18px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.features-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.feature-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 180px;
  max-width: 260px;
  text-align: center;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  margin-bottom: 16px;
  font-size: 2rem;
  color: #FF9800;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.3);
}
.feature-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -40px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF9800 0%, #295087 100%);
  border-radius: 2px;
  z-index: 1;
}
.feature-step h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.4);
  padding: 10px;
  border-radius: 8px;
}
.feature-step p {
  color: #fff;
  font-size: 1.01rem;
  margin: 0;
  margin-top: 8px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.4);
  padding: 15px;
  border-radius: 8px;
}

/* --- TEAM --- */
.team-section {
  background: var(--about-light);
  padding: 80px 0 60px 0;
}
.team-grid {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.team-card {
  background: #fff;
  border-radius: 50px 16px 16px 16px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 2px 12px rgba(41,80,135,0.07);
  text-align: center;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.team-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,152,0,0.10);
}
.team-name {
  color: var(--about-blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 10px 0 2px 0;
}
.team-role {
  color: var(--about-orange);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.team-bio {
  font-size: 0.97em;
  color: #666;
  margin-top: 8px;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: linear-gradient(120deg, #f7f9fc 60%, #e9eef5 100%);
  padding: 80px 0 60px 0;
}
.testimonial-slider {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.testimonial-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(41,80,135,0.07);
  padding: 32px 24px 24px 24px;
  text-align: left;
  min-width: 220px;
  max-width: 340px;
  font-style: italic;
  position: relative;
}
.testimonial-item:before {
  content: '“';
  font-size: 2.5rem;
  color: var(--about-orange);
  position: absolute;
  left: 16px; top: 10px;
  opacity: 0.18;
}
.testimonial-author {
  display: block;
  margin-top: 10px;
  color: var(--about-blue);
  font-weight: 500;
}

/* --- CTA --- */
.cta-section {
  background: var(--about-gradient);
  color: #fff;
  border-radius: 18px;
  margin-top: 32px;
  text-align: center;
  padding: 64px 0 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-section .btn-primary {
  background: #fff;
  color: #295087;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 10px;
  margin-top: 24px;
  transition: background 0.2s, color 0.2s;
}
.cta-section .btn-primary:hover {
  background: var(--about-orange);
  color: #fff;
}
.cta-section .section-title {
  color: #fff !important;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-hero-content { padding: 60px 0 40px 0; }
  .timeline { flex-direction: column; gap: 24px; }
  .timeline::before { display: none; }
  .mission-flow { flex-direction: column; gap: 48px; }
  .mission-step:not(:last-child)::after { display: none; }
  .features-flow { flex-direction: column; gap: 48px; }
  .feature-step:not(:last-child)::after { display: none; }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .value-details {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
    height: 70vh;
  }
  .about-hero-content {
    padding: 40px 10px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .about-hero {
    min-height: 60vh;
    height: 60vh;
  }
  .about-hero-content {
    padding: 24px 4px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .about-hero .btn-primary {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/* --- Image Suggestions (for user) --- */
/*
1. Hero: Use a wide, bright team or workspace image (replace 'images/hero_about_bg.jpg').
2. Timeline: Optionally use a faint world map or abstract background.
3. Team: Use professional, friendly headshots with a consistent background.
*/

/* --- Section Animation --- */
.section-animate { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1); }
.section-animate.in-view { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
.section-animate.in-view .reveal, .section-animate.in-view .reveal.delay-1, .section-animate.in-view .reveal.delay-2, .section-animate.in-view .reveal.delay-3, .section-animate.in-view .reveal.delay-4 {
  opacity: 1; transform: none;
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
.reveal.delay-4 { transition-delay: 0.6s; }

/* ================== DARK MODE OVERRIDES FOR ABOUT US PAGE ================== */
@media (prefers-color-scheme: dark) {
  /* --- Root Variables Override --- */
  :root {
    --about-blue: #4a9eff;
    --about-orange: #ffaa33;
    --about-bg: #121212;
    --about-light: #1a1a1a;
    --about-gray: #2a2a2a;
    --about-gradient: linear-gradient(120deg, #1a1a1a 0%, #2a2a2a 100%);
  }

  /* --- Body Override --- */
  body {
    background: #121212 !important;
    color: #e0e0e0 !important;
  }

  /* --- Timeline Items --- */
  .timeline-item {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .timeline-item p {
    background: #1a1a1a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .timeline-year {
    color: var(--about-orange) !important;
  }

  /* --- Feature Cards --- */
  .feature-card {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .feature-card .icon-lg {
    color: var(--about-orange) !important;
  }

  /* --- Team Cards --- */
  .team-card {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .team-name {
    color: var(--about-blue) !important;
  }

  .team-role {
    color: var(--about-orange) !important;
  }

  .team-bio {
    color: #d0d0d0 !important;
  }

  /* --- Testimonial Items --- */
  .testimonial-item {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .testimonial-author {
    color: var(--about-blue) !important;
  }

  /* --- Mission Steps --- */
  .mission-step {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .mission-step h3 {
    color: #f5f5f5 !important;
  }

  .mission-step p {
    color: #d0d0d0 !important;
  }

  .mission-icon {
    background: #1a1a1a !important;
    border: 2px solid var(--about-orange) !important;
    color: var(--about-orange) !important;
  }

  /* --- Feature Steps --- */
  .feature-step {
    background: rgba(26,26,26,0.9) !important;
    border: 1px solid rgba(255,170,51,0.4) !important;
    color: #f5f5f5 !important;
  }

  .feature-step h4 {
    color: #f5f5f5 !important;
    background: rgba(0,0,0,0.6) !important;
  }

  .feature-step p {
    color: rgba(255,255,255,0.9) !important;
    background: rgba(0,0,0,0.6) !important;
  }

  .feature-icon {
    background: rgba(26,26,26,0.95) !important;
    border: 2px solid var(--about-orange) !important;
    color: var(--about-orange) !important;
  }

  /* --- Section Backgrounds --- */
  .timeline-section,
  .mission-section,
  .team-section,
  .testimonials-section {
    background: #1a1a1a !important;
    color: #e0e0e0 !important;
  }

  /* --- Value Items --- */
  .value-item {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .value-item h4 {
    color: #f5f5f5 !important;
  }

  .value-item h4 i {
    color: var(--about-orange) !important;
  }

  .value-item p {
    color: #d0d0d0 !important;
  }

  /* --- Value Details --- */
  .value-details p {
    color: #d0d0d0 !important;
  }

  /* --- Section Subtitles --- */
  .section-subtitle {
    color: #b0b0b0 !important;
  }

  /* --- Value Description --- */
  .value-description {
    color: var(--about-blue) !important;
  }

  /* --- Timeline Headers --- */
  .timeline-header {
    background: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #e0e0e0 !important;
  }

  .timeline-header:hover {
    background: #333333 !important;
    border-color: var(--about-orange) !important;
  }

  .timeline-year {
    color: var(--about-orange) !important;
  }

  .timeline-toggle {
    color: #b0b0b0 !important;
  }

  .timeline-content {
    background: #1a1a1a !important;
    border: 1px solid #444 !important;
    color: #e0e0e0 !important;
  }

  .timeline-content p {
    color: #d0d0d0 !important;
  }

  /* --- Horizontal Timeline Cards --- */
  .timeline-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%) !important;
    border: 1px solid #444 !important;
    color: #e0e0e0 !important;
  }

  .timeline-card::before {
    background: linear-gradient(90deg, var(--about-orange), #ff8c00) !important;
  }

  .timeline-card .timeline-year {
    color: var(--about-orange) !important;
  }

  .timeline-card p {
    color: #d0d0d0 !important;
  }

  /* --- Timeline Navigation --- */
  .timeline-nav {
    background: #2a2a2a !important;
    border: 2px solid var(--about-orange) !important;
    color: #e0e0e0 !important;
  }

  .timeline-nav:hover {
    background: var(--about-orange) !important;
    color: #000 !important;
  }

  /* --- Timeline Dots --- */
  .timeline-dot {
    background: #444 !important;
  }

  .timeline-dot:hover,
  .timeline-dot.active {
    background: var(--about-orange) !important;
  }

  .testimonial-dots .dot {
    background: #444 !important;
    border: 2px solid var(--about-orange) !important;
  }

  .testimonial-dots .dot.active {
    background: var(--about-orange) !important;
    border-color: var(--about-blue) !important;
  }

  /* --- Update Cards --- */
  .update-card {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
  }

  .update-card:hover {
    background: #333333 !important;
    border-color: #555 !important;
  }

  .update-icon {
    background: linear-gradient(135deg, var(--about-blue), #4a9eff) !important;
    color: #fff !important;
  }

  .update-title {
    color: var(--about-blue) !important;
  }

  .update-card p {
    color: #d0d0d0 !important;
  }

  /* --- CTA Section --- */
  .cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    color: #f5f5f5 !important;
  }

  .cta-section .section-title {
    color: #f5f5f5 !important;
  }

  .cta-section .btn-primary {
    background: var(--about-orange) !important;
    color: #000 !important;
  }

  .cta-section .btn-primary:hover {
    background: #ff9900 !important;
    color: #000 !important;
  }

  /* --- Updates Section --- */
  .updates-section {
    background: #1a1a1a !important;
    color: #e0e0e0 !important;
  }

  /* --- General Text Elements --- */
  p, span, div {
    color: inherit !important;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #f5f5f5 !important;
  }

  /* --- Force override for any remaining white backgrounds --- */
  *[style*="background: white"],
  *[style*="background-color: white"],
  *[style*="background: #fff"],
  *[style*="background-color: #fff"],
  *[style*="background: #ffffff"],
  *[style*="background-color: #ffffff"] {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
  }

  /* --- Force override for any remaining dark text --- */
  *[style*="color: #000"],
  *[style*="color: black"],
  *[style*="color: #333"],
  *[style*="color: #666"],
  *[style*="color: #222"] {
    color: #e0e0e0 !important;
  }
}

/* --- Timeline World Map/Abstract BG --- */
.timeline-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(45deg, rgba(41,80,135,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(41,80,135,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(41,80,135,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(41,80,135,0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.timeline-section { position: relative; overflow: hidden; }

/* --- Testimonial Dots --- */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.testimonial-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #e9eef5;
  border: 2px solid #FF9800;
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
}
.testimonial-dots .dot.active {
  background: #FF9800;
  border-color: #295087;
}

/* --- Section Spacing & Whitespace --- */
.section-padding { padding-top: 80px; padding-bottom: 60px; }
@media (max-width: 900px) {
  .section-padding { padding-top: 48px; padding-bottom: 32px; }
}

/* --- Ensure all new classes are responsive and visually consistent --- */
@media (max-width: 600px) {
  .timeline-bg { background-size: 120%; }
  .testimonial-dots { gap: 8px; }
  .testimonial-dots .dot { width: 9px; height: 9px; }
}

/* Timeline Toggle Styles */
.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.timeline-header:hover {
  background: #e9ecef;
  border-color: #a67c52;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a67c52;
}

.timeline-toggle {
  font-size: 1rem;
  color: #666;
  transition: transform 0.3s ease;
  user-select: none;
}

.timeline-item.active .timeline-toggle {
  transform: rotate(180deg);
}

.timeline-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem;
  transition: all 0.4s ease;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.timeline-item.active .timeline-content {
  max-height: 200px;
  opacity: 1;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-top: none;
}

.timeline-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Mobile responsiveness for timeline */
@media (max-width: 768px) {
  .timeline-header {
    padding: 0.75rem;
  }
  
  .timeline-year {
    font-size: 1rem;
  }
  
  .timeline-toggle {
    font-size: 0.9rem;
  }
}

/* Horizontal Timeline Styles */
.timeline-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container {
  flex: 1;
  overflow: hidden;
  margin: 0 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.timeline-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.timeline-item {
  flex: 0 0 100%;
  padding: 0;
}

.timeline-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin: 0 0.5rem;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a67c52, #ff8c00);
}

.timeline-card .timeline-year {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--about-orange);
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

.timeline-card p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
}

.timeline-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #a67c52;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.timeline-nav:hover {
  background: #a67c52;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(166, 124, 82, 0.3);
}

.timeline-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.timeline-prev {
  left: 0;
}

.timeline-next {
  right: 0;
}

.timeline-nav i {
  font-size: 1.2rem;
}

.timeline-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-dot:hover {
  background: #a67c52;
  transform: scale(1.2);
}

.timeline-dot.active {
  background: #a67c52;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.3);
}

/* Mobile responsiveness for horizontal timeline */
@media (max-width: 768px) {
  .timeline-wrapper {
    padding: 1rem 0;
  }
  
  .timeline-container {
    margin: 0 2rem;
  }
  
  .timeline-card {
    padding: 2rem 1.5rem;
  }
  
  .timeline-year {
    font-size: 2rem;
  }
  
  .timeline-card p {
    font-size: 1rem;
  }
  
  .timeline-nav {
    width: 40px;
    height: 40px;
  }
  
  .timeline-nav i {
    font-size: 1rem;
  }
  
  .timeline-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .timeline-container {
    margin: 0 1.5rem;
  }
  
  .timeline-card {
    padding: 1.5rem 1rem;
  }
  
  .timeline-year {
    font-size: 1.8rem;
  }
}

.update-card {
    cursor: pointer;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    position: relative;
    z-index: 1;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.update-card.clickable-card {
    cursor: pointer;
}

.update-card.clickable-card:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.update-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--about-blue), #3476d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.update-title {
    color: var(--about-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.update-card p {
    color: #666;
    line-height: 1.6;
}

/* Updates Section Grid */
.updates-section {
    padding: 80px 0;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Force clickability with higher specificity */
.updates-section .updates-grid .update-card {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.updates-section .updates-grid .update-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.updates-section .updates-grid a.update-card {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}