* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #111;
  color: #fff;
  padding-top: 70px;
}
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #000;
  padding: 1rem 1.5rem;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f39c12;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo-imgs {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.logo a:hover {
  text-decoration: none;
  color: #e67e22;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.nav-links li a:hover {
  color: #f39c12;
}
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.btn {
  background: #f39c12;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #e67e22;
  text-decoration: none;
}
.section {
  padding: 3rem 1.5rem;
  text-align: center;
}
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}
.card {
  background: #222;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
footer {
  background: #000;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.burger {
  display: none;
  font-size: 1.8rem;
  color: #f39c12;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: auto; /* push to right */
}
/* Highlight burger button on hover */
.burger:hover {
  color: #e67e22;
  text-decoration: none;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    background: #000;
    padding: 1rem;
    margin-top: 1rem;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.2rem;
  }
}