body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #FFF5F2;
  color: #064232;
}

/* Navbar & Footer: deep green */
.navbar,
footer, #footer, .bg-dark {
  background-color: #064232 !important;
  color: #fff !important;
}

/* Navbar brand: accent rose */
.navbar-brand {
  color: #f5babb !important;
  font-weight: bold;
  letter-spacing: 1px;
}
.navbar-brand:hover {
  color: #568f87 !important;
}

/* Nav links: white by default, accent rose on hover/active */
.nav-link {
  color: #fff !important;
  transition: color 0.2s;
}
.nav-link.active, .nav-link:focus, .nav-link:hover {
  color: #f5babb !important;
}

/* Buttons: muted teal */
.btn-primary, .btn-primary:focus, .btn-primary:hover {
  background-color: #568f87 !important;
  border-color: #568f87 !important;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Section background: almost white */
.bg-light {
  background-color: #FFF5F2 !important;
}

/* Chat box border: accent rose, subtle shadow */
#chat-box {
  border-color: #f5babb !important;
  box-shadow: 0 2px 8px rgba(86,143,135,0.08);
}

/* Footer text alignment and padding */
footer, #footer {
  padding: 1.5rem 0;
  text-align: center;
}

/* Optional: rounded corners for cards and chat box */
.card, #chat-box {
  border-radius: 1rem !important;
}

.lang-toggle .lang-option {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.lang-toggle .lang-option.active,
.lang-toggle .lang-option:focus {
  background: #f5babb;
  color: #064232 !important;
}
.lang-toggle .lang-option:hover {
  background: #568f87;
  color: #fff !important;
}
nav .lang-toggle .lang-option.active {
  background: #f5babb !important;
  color: #064232 !important;
}




/* Timeline container */
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 700px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 4px;
  height: 100%;
  background: #568f87; /* muted teal for timeline line */
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}
.timeline-dot {
  position: absolute;
  left: 12px;
  background: #fff; 
  border: 4px solid #064232; /* deep green border */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.timeline-content {
  margin-left: 60px;
  background: #fff; 
  color: #064232; /* deep green text */
  padding: 15px 20px;
  border-radius: 1rem; /* match card style */
  box-shadow: 0 3px 10px rgba(86,143,135,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-content:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px #f5babb;
}
.timeline-content h5 {
  margin-top: 0;
  color: #064232; /* deep green */
}

.timeline-content h6 {
  display: flex;
  justify-content: center; /* center the whole row */
  align-items: center;
  gap: 0.5rem; /* space between company, stripe, and location */
  font-weight: 500;
  color: #064232;
}

.timeline-content h6 .stripe {
  display: inline-block;
  width: 4px;
  height: 16px;
  background-color: #f5babb;
  border-radius: 2px;
}



.timeline-content p {
  margin-bottom: 0;
  color: #064232;
}
.toggle-btn {
  margin-top: 10px;
  background: #568f87; /* muted teal button */
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}
.toggle-btn:hover {
  background: #064232; /* deep green on hover */
  color: #f5babb; /* accent rose text */
}
.italic {
  font-style: italic;
}