/* Global Reset & Base */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Inter, sans-serif;
  background: linear-gradient(135deg, #0a0e17, #10162b);
  color: #e9f0ff;
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
}

/* Banner Header (stacked vertically) */
.banner {
  width: 100%;
  background-color: #0a0e17;
}
.top-banner {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;
  gap: 12px;
  padding: 20px;
}

/* Logo */
.webappy-logo {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.webappy-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px #00e5ff);
}

/* Banner Image */
.banner-img {
  max-width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 229, 255, 0.3);
}

/* Checkout Button */
.checkout-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
}
.checkout-btn:hover {
  transform: scale(1.05);
  background-color: #fff;
  color: #0a0e17;
}
.cart-count {
  background: #e53935;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  margin-left: 4px;
}

/* Services Grid (centered in middle of page) */
.services {
  display: flex;
  flex-direction: column; /* stack cards vertically */
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Card Design */
.card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  max-width: 260px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,229,255,0.25);
}
.card h3 {
  margin: 8px 0;
  font-size: 1rem;
  color: #00e5ff;
}
.card p {
  font-size: 0.8rem;
  color: #9badc7;
}
.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

/* Contact Section (centered under cards) */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.contact-logo {
  width: 80px;
  height: auto;
}
.contact h2 {
  font-size: 0.9rem;
  margin: 0;
  color: #026c63;
  font-weight: 400;
}
.produced {
  color: #a260e0;
  font-weight: 500;
}
.contact-qrcode {
  width: 80px;
  height: auto;
}
