* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f8f9fb;
  color: #222;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background: #0f172a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center; /* NEW */
  z-index: 1000;
}

.logo {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Remove list styling */
.nav-links {
  list-style: none;     /* NEW */
  display: flex;        /* NEW */
  gap: 1.5rem;          /* NEW */
}

.nav-links li {
  margin: 0;            /* NEW */
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #38bdf8;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #38bdf8;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto; 
}



.section.alt {
  background: white;
}

.cards {
  display: flex;
  gap: 20px;
}
.card {
  padding: 20px;
  background: #f4f4f4;
  text-decoration: none;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
}
.card:hover {
  background: #dbeafe;
}

.footer {
  background: #1f2933;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.fa-linkedin {

  color: white;
}

.fa-instagram {
  
  color: white;
}

.bi-envelope{
  color: white;
}
.social-links{
  display: flex;
  justify-content: center;
  
}
.timeline {
  padding-left: 0;
  margin: auto;
}
