body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #333;
  background: url("assets/images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}

header {
  background: #004aad;
  color: white;
  padding: 1em 2em;
}

nav a {
  color: white;
  margin-right: 1em;
  text-decoration: none;
}

.navbar {
  transition: background-color 0.5s ease, box-shadow 0.3s ease;
}

.navbar-toggler {
  border: none;
  background: transparent;
}


.navbar-toggler-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='orange' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Optional: add background when user scrolls */
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* App showcase section */
#app-showcase {
  background: linear-gradient(to bottom right, #000000 0%, #ff7b00 100%);
  min-height: 100vh;
  padding: 120px 20px;
  min-height: 100vh; /* full height */
  position: relative;
  color: #fff;
  padding: 100px 20px;
}

/* Optional: overlay for readability */
#app-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Ensure text stays above overlay */
#app-showcase .container {
  position: relative;
  z-index: 1;
}

.custom-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.custom-btn:hover {
  background: white;
  color: black;
  border-color: white;
}

/* App showcase section */
#app-download {
  /* background: #000000; */
  background: linear-gradient(to top left, #000000 0%, #ff7b00 100%);
  min-height: 100vh;
  padding: 120px 20px;
  min-height: 100vh; /* full height */
  position: relative;
  color: #fff;
  padding: 100px 20px;
}


/* Ensure text stays above overlay */
#app-download .container {
  position: relative;
  z-index: 1;
}

.download-btn {
    width: 100%;
    max-width: 300px; /* limit width if you want */
    margin-top: 20px;
  }