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

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.7;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  background: #000;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo {
  height: 45px;
}

nav a {
  color: #FFD84D;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

/* SECTIONS */
.section {
  padding: 80px 40px;
  animation: fadeUp 1s ease;
}

.section img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
}

.hero {
  text-align: center;
}

.dark {
  background: #111;
}

.highlight {
  background: linear-gradient(135deg, purple, #000);
}

/* TEXT */
h1, h2 {
  color: #FFD84D;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
}

.tagline {
  font-size: 1.2rem;
  color: #ccc;
}

ul {
  margin-left: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #FFD84D;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.apply-btn {
  background: #fff;
  color: #000;
}

.linkedin {
  background: #0A66C2;
  color: #fff;
}

/* FOOTER */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  nav a {
    margin: 10px;
  }

  h1 {
    font-size: 2.2rem;
  }
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
