/* styles.css */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

header {
  background: rgb(21, 77, 120);
  color: #fff;
  padding: 2rem;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 0.5rem 0;
  }
}

main {
  display: block;
}

.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.hero {
  background: #f1f2f6;
  text-align: center;
}

.services,
.about,
.contact {
  background: #fff;
}

h2 {
  margin-top: 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service {
  flex: 1 1 45%;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.service:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 1rem;
  background: #2f3542;
  color: #fff;
  font-size: 0.9rem;
}

.inline-sub {
  font-size: 1rem;
  font-weight: normal;
  color: #ccc;
  margin-left: 0.5rem;
}

header.product-header {
  background:  rgb(21, 77, 120);
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


#products {
  background-color: #f7f9fb;
  padding: 2em;
  border-radius: 10px;
}

.product-card,
.product-coming-soon {
  background: #fff;
  padding: 1.5em 2em;
  margin-bottom: 1.5em;
  border-left: 5px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card h3 a {
  text-decoration: none;
  color: #007bff;
  font-weight: 600;
}

.product-card h3 a:hover {
  text-decoration: underline;
}
.product-homepage-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

ul li {
  margin-bottom: 0.5em;
}

.product-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.app-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.app-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Google Play Badge — scaled up slightly */
.google-badge {
  height: 73px;
  display: block;
}

/* Apple Badge — native height works well */
.apple-badge {
  height: 53px;
  display: block;
}

.product-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0.2rem 0 0 0;
}

