:root {
  --bg-dark: #050505;
  --brand-color: #ffde42; /* Updated Yellow Color */
  --text-white: #ffffff;
  --text-muted: #888888;
  --font-primary: "Inter", sans-serif;
  --font-serif: "Fraunces", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none; /* Hides default cursor for our custom one */
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-primary);
  overflow-x: hidden;
}
main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* --- Smooth Mouse Follower --- */
.cursor-dot,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand-color);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 222, 66, 0.4);
  transition:
    width 0.2s,
    height 0.2s;
}

/* --- Falling Stars Container --- */
#stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.falling-star {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-white));
  border-radius: 90%;
  opacity: 0;
}

/* --- Layout & Header --- */
#smooth-wrapper {
  position: relative;
  z-index: 1;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-item {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: var(--brand-color);
}

.btn-primary {
  background-color: var(--brand-color);
  color: #000000;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 222, 66, 0.3);
}

/* --- Hero Section --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 110px);
  padding: 40px 50px;
  position: relative;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 56rem;
}

.tagline {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--brand-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.tagline .line {
  width: 40px;
  height: 1px;
  background-color: var(--brand-color);
}

.main-title {
  white-space: nowrap;
  font-size: clamp(3.75rem, 8.5vw, 12rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 35px;
}

.outline-text {
  font-family: var(--font-serif);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-weight: 400;
}

.highlight-text {
  /* color: var(--brand-color); */
  background: url(img/yellow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.white-text {
  color: var(--text-white);
}

.description {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.link-secondary {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--text-muted);
  padding-bottom: 4px;
  margin-left: 30px;
  transition: 0.3s;
}

.link-secondary:hover {
  color: var(--brand-color);
  border-color: var(--brand-color);
}

/* --- Planet Image Placeholders --- */
.hero-visual {
  position: relative;
  width: 100%;
  height: 600px;
}

.img-planet-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s ease;
}

.img-planet-wrapper:hover {
  transform: scale(1.1);
}

/* Style for the actual images you will insert */
.img-planet-wrapper img {
  width: 120px; /* Default size, adjust as needed */
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.05); /* Placeholder background */
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.planet-info .name {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
}

.img-planet-wrapper.active .name {
  color: var(--brand-color);
}

/* Positions for placeholders */

/* --- Chat Widget --- */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--brand-color);
  color: #000000;
  display: flex;
  align-items: center;
  padding: 8px 20px 8px 8px;
  border-radius: 40px;
  gap: 12px;
  font-weight: 800;
  font-size: 13px;
  z-index: 100;
}

.chat-widget img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #000;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
}
/* --- Future Section Layout --- */
.future-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  /* Soft purple radial blend fading into dark background */
  background: radial-gradient(
    circle at 50% 50%,
    rgba(107, 47, 191, 0.4) 0%,
    var(--bg-dark) 100%
  );
  z-index: 2;
}

.future-tagline {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--brand-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.future-tagline .line {
  width: 30px;
  height: 1px;
  background-color: rgba(255, 222, 66, 0.5); /* Faded yellow line */
}

.future-title {
  font-size: 65px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 60px;
}

.outline-text-dim {
  font-family: var(--font-serif);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25); /* Fainter than hero outline */
  font-style: italic;
  font-weight: 400;
}

/* --- The Crystal Orb --- */
.orb-container {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.orb {
  position: relative;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  /* Creates the 3D dark glass effect */
  background: radial-gradient(circle at 30% 30%, #494196, #494196);
  box-shadow:
    inset -20px -20px 50px rgba(0, 0, 0, 0.8),
    inset 10px 10px 30px rgba(255, 255, 255, 0.05),
    0 0 60px rgba(100, 50, 200, 0.4),
    0 0 120px rgba(70, 30, 150, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none; /* Let the custom dot cursor handle this */
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.orb:hover {
  box-shadow:
    inset -20px -20px 50px rgba(0, 0, 0, 0.8),
    inset 10px 10px 30px rgba(255, 255, 255, 0.05),
    0 0 80px rgba(120, 60, 220, 0.6),
    0 0 150px rgba(90, 40, 180, 0.3);
}

/* Glass Reflection */
.orb-highlight {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 120px;
  height: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: rotate(-30deg);
  pointer-events: none;
}

.orb:hover {
  animation: shake 0.6s;
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg) translateX(0) scale(1);
  }
  25% {
    transform: rotate(-5deg) translateX(-5px) scale(1.2);
  }
  50% {
    transform: rotate(5deg) translateX(5px) scale(1.1);
  }
  75% {
    transform: rotate(-5deg) translateX(0) scale(1);
  }
}

/* Inside the Orb (Eye) */
.eye-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 5;
}

.eye-svg {
  width: 120px;
  height: 60px;
  transition: transform 0.3s ease;
}

.orb:hover .eye-svg {
  transform: scale(1.05);
}

.reveal-text {
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

/* Floating Particles */
.orb-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brand-color);
  box-shadow: 0 0 8px var(--brand-color);
}

.p-1 {
  top: 20%;
  left: 15%;
  background-color: #00ffff;
  box-shadow: 0 0 8px #00ffff;
}
.p-2 {
  top: 30%;
  right: 10%;
  background-color: #ff00ff;
  box-shadow: 0 0 8px #ff00ff;
}
.p-3 {
  bottom: 25%;
  left: 20%;
}
.p-4 {
  bottom: 15%;
  right: 25%;
  background-color: #ffffff;
  box-shadow: 0 0 8px #ffffff;
}

/* Base Glow Under Orb */
.orb-glow-base {
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 2px;
  background-color: var(--brand-color);
  box-shadow:
    0 0 20px var(--brand-color),
    0 0 40px var(--brand-color);
  opacity: 0.3;
  border-radius: 50%;
}

/* Buttons and Links */
.future-btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  margin-bottom: 25px;
}

.future-btn i {
  font-size: 16px;
}

.sub-link-bottom {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.sub-link-bottom:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h-v-img {
  width: 100%;
  height: 100%;
  max-height: 80vh; /* Keeps it from blowing out on very tall screens */
  display: flex;
  justify-content: center;
  align-items: center;
}

.h-v-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Centers it perfectly without cutting it off */
}

.orb-section {
  width: 100%;
  background-color: radial;
  height: 100%;
}

/* section 3 */

/* --- About / In-House Team Section --- */
.about-section {
  background-color: #f4f5f0; /* Off-white / Cream background */
  color: #050505; /* Dark Text */
  padding: 150px 50px;
  position: relative;
  z-index: 5;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tagline {
  font-size: 11px;
  letter-spacing: 4px;
  color: #888888;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-title {
  font-size: 75px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.title-line {
  display: block;
  overflow: hidden; /* Ensures wavy text doesn't overflow before animating */
  padding-bottom: 5px; /* Prevent cutting off bottom of letters */
}

/* Wavy words wrapper */
.wavy-word {
  display: inline-block;
}

.blue-dot {
  color: #3b5bdb;
}
.highlight-yellow {
  color: #d4e000;
} /* Adjusted yellow slightly for light background visibility */

.outline-text-dark {
  font-family: var(--font-serif);
  color: transparent;
  -webkit-text-stroke: 1.5px #050505; /* Black outline */
  font-style: normal;
}

.about-description {
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.about-cta-group {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.btn-dark {
  background-color: #050505;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: none; /* Custom cursor handling */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.link-dark {
  color: #050505;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #050505;
  padding-bottom: 4px;
  transition: opacity 0.3s;
  cursor: none;
}

.link-dark:hover {
  opacity: 0.6;
}

/* --- Space Dog Element --- */
.dog-container {
  position: relative;
  display: inline-block;
  margin-left: 50px;
}

.speech-bubble {
  background-color: #050505;
  color: var(--brand-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #050505 transparent transparent transparent;
}

.dog-img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.dog-container:hover .dog-img {
  transform: scale(1.1) rotate(5deg);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-title {
    font-size: 50px;
  }
  .about-section {
    padding: 80px 20px;
  }
}

/* planet */
/* Section Container */
.space-section {
  width: 100%;
  height: 900px; /* Aap apne hisab se height adjust kar sakte hain */
  /* background-color: #050508; */
  position: relative;
  /* overflow: hidden; */
  font-family: "Arial", sans-serif;
}

.space-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Planet Base Wrapper */
.planet-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* Planet Coordinates (Image ke composition ke hisab se approximate pixels) */
.planet-1 {
  top: 0%;
  left: 60%;
  width: 250px;
}
.planet-2 {
  top: 15%;
  left: 23%;
  width: 240px;
}
.planet-4 {
  top: 45%;
  left: 60%;
  width: 260px;
}
.planet-5 {
  top: 60%;
  left: 10%;
  width: 280px;
}
.planet-6 {
  top: 75%;
  left: 38%;
  width: 210px;
}

/* Planet Body Container */
.planet-body {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.planet-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

/* Hover Glow Effect using CSS Variable */
.planet-wrapper:hover .planet-img {
  filter: drop-shadow(0 0 25px var(--glow-color))
    drop-shadow(0 0 50px var(--glow-color));
  transform: scale(1.05);
}
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* White dot ki default position */
.white-dot {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff;
  /* Vertically center align karne ke liye */
  margin-top: -4px;
}

/* Adjust orbit radius for smaller/larger planets */
.wd-1 {
  left: 210px;
}
.wd-2 {
  left: 205px;
}
.wd-4 {
  left: 220px;
}
.wd-5 {
  left: 230px;
}
.wd-6 {
  left: 190px;
}

/* Hover Text */
.hover-text {
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    text-shadow 0.4s ease;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

/* Show text on hover with planet color matching shadow */
.planet-wrapper:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 10px var(--glow-color);
}

.trust-section {
  width: 100%;
  height: 15rem;
  background-color: var(--brand-color);
  color: rgba(0, 0, 0, 0.837);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.line {
  width: 0;
  border: 0.02rem solid rgba(128, 128, 128, 0.589);
  height: 4.1rem;
  backdrop-filter: blur(5px);
  border-radius: 100%;
}
.t-heading {
  font-weight: 700;
  font-size: 4rem;
}
.trust-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.t-para {
  font-width: 600;
  font-size: 0.8rem;
}
.services {
  width: 100%;
  padding-block: 7rem;
}
.services-cont {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.services-top h2 {
  font-size: 0.75rem;
  letter-spacing: 0.4rem;
  color: var(--brand-color);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1rem;
}
.services-top {
  margin-bottom: 30px;
}
.s-heading {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  color: white;
  white-space: nowrap;
}
.word-container {
  white-space: nowrap;
  display: inline-block;
}
.word {
  display: inline-block;
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s all;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 8rem;
}
.service-card {
  color: #000;
  width: 100%;
  height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.service-card:hover .wrapper-div {
  transform: rotateY(180deg);
}
.service-card .wrapper-a {
  width: 100%;
  height: 100%;
  color: black;
  text-decoration: none;
}
.wrapper-a p {
  font-weight: 700;
}

.wrapper-div {
  width: 100%;
  height: 100%;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to bottom right,
    white,
    white,
    rgb(92, 92, 92) 99%
  );
  gap: 4rem;
  transition: linear all 0.3s;
  perspective: 1000px;
}
.c-img {
  max-width: 3rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #e9e1f7;
  overflow: hidden;
}
.c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#purple-div {
  border-top: #7d3bed solid 0.3rem;
}
#purple-div .wrapper-a p {
  color: #7d3bed;
}
#purple-div .wrapper-a .arrow-right i {
  background-color: #7d3bed;
}
#pink-div {
  border-top: #eb4a9a solid 0.3rem;
}
#pink-div .wrapper-a p {
  color: #eb4a9a;
}
#pink-div .wrapper-a .arrow-right i {
  background-color: #eb4a9a;
}
#orange-div {
  border-top: #f87418 solid 0.3rem;
}
#orange-div .wrapper-a p {
  color: #f87418;
}
#orange-div .wrapper-a .arrow-right i {
  background-color: #f87418;
}
#blue-div {
  border-top: #11a6e8 solid 0.3rem;
}
#blue-div .wrapper-a p {
  color: #11a6e8;
}
#blue-div .wrapper-a .arrow-right i {
  background-color: #11a6e8;
}
#green-div {
  border-top: #11b981 solid 0.3rem;
}
#green-div .wrapper-a p {
  color: #11b981;
}
#green-div .wrapper-a .arrow-right i {
  background-color: #11b981;
}
#red-div {
  border-top: #ee4545 solid 0.3rem;
}
#red-div .wrapper-a p {
  color: #ee4545;
}
#red-div .wrapper-a .arrow-right i {
  background-color: #ee4545;
}
.arrow-right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.arrow-right i {
  padding: 0.75rem;
  border-radius: 50%;
  font-size: 0.75rem;
}
.purple {
  background: #3b5bdb;
  transition: all linear 0.3s;
}

/* aeroplane check point */
.launch-sequence-section {
  background-color: #050505;
  color: #ffffff;
  padding: 8rem 2rem;
  font-family: sans-serif;
  overflow: hidden;
}

.sequence-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sequence-header {
  text-align: center;
  margin-bottom: 6rem;
}

.sequence-header .subtitle {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #a3e635;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sequence-header .main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.sequence-header .main-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}

.timeline-wrapper {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-50%);
}

/* Updated Progress wrapper to hold the traveling rocket */
.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #a3e635, #2dd4bf, #38bdf8);
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
  position: relative; /* Crucial for absolute rocket binding */
}

/* Dynamic moving rocket container */
.rocket-node {
  position: absolute;
  bottom: 0; /* Always locks to the leading tip of the growing line */
  left: 50%;
  transform: translate(
    -50%,
    50%
  ); /* Centers the rocket perfectly on the track */
  width: 35px;
  height: 50px;
  z-index: 10;
}

.rocket-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px #38bdf8);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 5rem;
  display: flex;
  opacity: 0;
}

.timeline-item.left {
  left: 0;
  justify-content: flex-end;
  padding-right: 4rem;
}

.timeline-item.right {
  left: 50%;
  justify-content: flex-start;
  padding-left: 4rem;
}

/* Checkpoint static background nodes */
.timeline-dot {
  position: absolute;
  left: 100%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #111;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  z-index: 5;
}

.timeline-item.right .timeline-dot {
  left: 0;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-width: 3px;
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 420px;
  width: 100%;
  transform: translateY(30px);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.card-header {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.timeline-card p {
  color: #88888c;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 3.5rem !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
  .timeline-dot {
    left: 20px !important;
  }
}
