/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
  gap: 10px;
}

.logo img {
  height: 38px;
  width: 38px;
  object-fit: cover;
  border-radius: 50%;
}

/* NAVBAR (DESKTOP) */
.navbar {
  display: flex;
  gap: 25px;
  align-items: center;
}

/* MENU LINKS */
.navbar a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  font-size: 15px;
  border-radius: 6px;
  transition: 0.3s;
}

/* HOVER EFFECT (important 🔥) */
.navbar a:hover {
  background: #ffcc00;
  color: #000;
}

/* ACTIVE LINK */
.navbar a.active {
  background: #ffcc00;
  color: #000;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HERO */
.hero {
  text-align: center;
  padding: 20px;
  background: #fff;
}

.hero img {
  max-width: 220px;
}

/* BUTTONS */
.buttons {
  text-align: center;
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

.btn.download {
  background: #ffcc00;
  color: #000;
}

/* CONTENT */
.content {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  /* IMPORTANT FIX 🔥 */
  .navbar {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
  }

  .navbar a {
    padding: 15px;
    border-top: 1px solid #222;
    width: 100%;
  }

  .navbar.active {
    display: flex;
  }

  /* LOGO TEXT छोटा */
  .logo span {
    font-size: 14px;
  }
}