*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
body {
  font-size: 'Poppins';
}

.navbar {
  position: absolute;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.navbar a {
  color: rgb(255, 255, 255);

}
.logo {
  margin-left: 10; /* Push the logo to the right */
  
}

.logo img {
  width: 100px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}
.navbar .nav-links ul{
  display: flex;
}
.navbar .nav-links ul li{
  margin: 0 25px;
}
.navbar .nav-links ul li.active a {
  color: #ed3c57;
  font-weight: 600;
}
.navbar .menu-hamburger {
  display: none;
  position: absolute;
  right: 50px;
  top: 50px;
  width: 35px;
}

@media screen and (max-width: 500px){
  .navbar{
    padding: 0;
  }
  .logo img {
   position: absolute;
   top: 40px;
   left: 30px;
  }
  .navbar .menu-hamburger{
    display: block;
  }
  .nav-links{
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -100%;
    transition: all 0.5s ease;
  }

  .nav-links.mobile-menu{
    margin-left: 0;
  }
  .nav-links ul{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav-links ul li{
    margin: 25px 0;
    font-size: 1.2em;
  }
}


/* Popup Styles */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1000;
  width: 80%;
  max-width: 300px;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}

.download-btn:hover {
  background: #45a049;
}

.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
}
