body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Base Navbar Styling */
.navbar {
  background: #1e1e2f;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #ff6b6b;
}

/* Hamburger Menu Styles */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e2f;
    width: 100%;
    padding: 1rem 0;
    display: none;
  }

  .nav-links li {
    text-align: center;
    padding: 0.8rem 0;
  }

  .menu-toggle:checked + .hamburger + nav .nav-links {
    display: flex;
  }
}


.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: white;
  animation: fadeIn 2s ease;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #ff3b3b;
}

.content {
  padding: 3rem 2rem;
  animation: slideIn 1.2s ease;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
  margin-top: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}


.screenshot-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.screenshot {
  max-width: 220px;
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.screenshot img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.screenshot p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #fff;
}


.content ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.5;
}


.content ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.6;
}

.social-contact {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: white;
}

.social-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}
footer .socials a {
  color: #00bcd4;
  text-decoration: none;
  margin: 0 0.3rem;
}

.download-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background: #f7f7f7;
}

.download-text {
  flex: 1;
  max-width: 500px;
}

.download-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
}

.download-buttons .btn {
  padding: 14px 20px;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn.android {
  background: #3ddc84;
}

.btn.ios {
  background: #000;
}

.btn:hover {
  opacity: 0.85;
}

.download-image {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.download-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
