body {
  background-color: #ffffff;
  font-family: "Roboto Slab", serif;
  color: #212529;
}
.glass-header {
  background: rgba(33, 37, 41, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Mobile Swipe & Scrollbar Hiding Utility --- */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* --- Timeline Base Styles --- */
.timeline-wrapper {
  position: relative;
}
.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #e9ecef;
  z-index: 0;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background-color: #ffc800;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.timeline-card {
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(12, 19, 29, 0.06);
  transition: transform 0.2s ease;
}
.timeline-card:hover {
  transform: translateY(-2px);
}

/* --- Cards & General Enhancements --- */
.no-border-card {
  box-shadow: 0 12px 32px rgba(12, 19, 29, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.no-border-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}
.btn-lift {
  transition:
    transform 0.15s ease,
    background 0.2s;
}
.btn-lift:hover {
  transform: translateY(-1px);
}
html {
  scroll-behavior: smooth;
}
.bg-surface-light {
  background-color: #f8f9fa;
}
.border-outline {
  border-color: #dee2e6;
}
.skeleton-pulse {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.75rem;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.retry-btn {
  cursor: pointer;
  transition: all 0.2s;
}
.retry-btn:hover {
  background: #e0b000 !important;
  transform: translateY(-1px);
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.testimonial-card {
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

/* --- Mobile Swipeable Layout Overrides --- */
@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }

  .timeline-wrapper::before {
    display: none;
  }
  .timeline-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .timeline-container::-webkit-scrollbar {
    display: none;
  }
  .timeline-row {
    min-width: 85vw;
    scroll-snap-align: center;
    flex-direction: column !important;
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 32px rgba(12, 19, 29, 0.06);
    align-items: center;
    text-align: center;
    margin-bottom: 0 !important;
  }
  .timeline-dot {
    position: static;
    transform: none;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
  }
  .timeline-card {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .timeline-spacer {
    display: none !important;
  }

  #testimonialsDynamic {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #testimonialsDynamic::-webkit-scrollbar {
    display: none;
  }
  .testimonial-card {
    min-width: 85vw;
    scroll-snap-align: center;
  }
}