/* Reset and Base */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #f4f4f4;
  background-color: #282828;
  scroll-behavior: smooth;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background-color: #242424;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffcc00;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(to right, #111, #222);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-heading {
  font-size: 4rem;
  font-weight: bold;
  color: white;
}

.highlight {
  color: #ffc800;
}

.tagline {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #ccc;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.timeline-item {
  background-color: #222;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
}

.timeline-item h3 {
  color: #ffc800;
  margin-bottom: 5px;
}

/* Project */
.project-card {
  background-color: #222;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.1);
}

.project-title {
  font-size: 2rem;
  color: #ffc800;
  margin-bottom: 15px;
}

.project-images {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-images img {
  width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.project-images img:hover {
  transform: scale(1.05);
}

/* Contact */
a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
