/* Base Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f8fc;
  color: #26335d;
  min-height: 100vh;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 1px 8px rgba(38,51,93,0.06);
  position: sticky; top: 0; z-index: 100;
}

.logo img {
  height: 44px;
}

/* HAMBURGER MENU */
#menu-toggle { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 35px; height: 35px;
  justify-content: space-between;
  z-index: 200;
}

.hamburger span {
  height: 4px;
  width: 100%;
  background: #1870f4;
  border-radius: 2px;
}

/* NAVIGATION MENU */
.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li a {
  color: #1740a8;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 15px;
  transition: color 0.2s;
}

.nav ul li a:hover {
  color: #1870f4;
}

/* MOBILE MENU RESPONSIVE */
@media (max-width: 990px) {
  .hamburger { display: flex; }
  
  .nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,255,255,0.98);
    transition: left 0.3s ease-in-out;
    z-index: 150;
  }

  #menu-toggle:checked + .hamburger + .nav ul {
    left: 0;
  }

  .nav ul li {
    margin: 15px 0;
    text-align: center;
  }

  .nav ul li a {
    font-size: 1.4rem;
  }
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
  background: linear-gradient(100deg, #e3eefd, #fff);
  flex-wrap: wrap;
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #1740a8;
}

.hero p {
  margin: 15px 0 25px;
  font-size: 1.1rem;
}

.cta-btn {
  background: #1870f4;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
}

/* WALLET SUBMISSION FORM */
.wallet-section {
  background: #f7fbff;
  padding: 50px 15px;
  text-align: center;
}

.wallet-form-container {
  background: #fff;
  max-width: 450px;
  margin: auto;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wallet-form-container h2 {
  color: #1740a8;
  margin-bottom: 10px;
}

.wallet-form-container input,
.wallet-form-container textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cfd6e3;
}

.wallet-form-container button.cta-btn {
  width: 100%;
  padding: 12px;
  border: none;
} /* Make hamburger menu scrollable on mobile */
.nav ul {
  max-height: 90vh;
  overflow-y: auto;
  padding-right: 10px; /* optional padding for mobile scroll */
}

/* Style form inputs in the hamburger for better visibility */
.nav input,
.nav button {
  width: 90%;
  margin: 8px auto;
  padding: 10px;
  display: block;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* FEATURES CAROUSEL */
.carousel-section {
  padding: 50px 20px;
  text-align: center;
  background: #f5f9ff;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 20px;
}

.carousel-slide img {
  height: 80px;
  margin-bottom: 10px;
}

.carousel-slide h4 {
  color: #1870f4;
  margin-bottom: 10px;
}

/* SECTIONS COMMON STYLE */
section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  color: #1740a8;
  margin-bottom: 25px;
}

/* STATS SECTION */
.stats-section {
  background: #162b60;
  color: #fff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.stat-card {
  width: 250px;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
}

/* DOCS SECTION */
.docs-section {
  background: #e8f1fe;
  max-width: 800px;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
}

.docs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.docs-list li {
  width: 250px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.docs-list strong {
  color: #1870f4;
}

/* FOOTER */
footer {
  background: #1740a8;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 30px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero {
    padding: 70px 10px 40px;
  }

  .wallet-form-container,
  .docs-section {
    width: 95%;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
} /* ===== TRUSTED CUSTOMERS SECTION ===== */
.trusted-customers-section {
  padding: 30px 10px;
  text-align: center;
  background: #ffffff;
}

.trusted-customers-section h2 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #111;
  font-weight: 700;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.trusted-logos img {
  max-height: 34px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: 0.3s ease;
}
.trusted-logos img:hover {
  filter: none;
  opacity: 1;
}

/* ===== VIDEO OR IMAGE DEMO SECTION ===== */
.video-section {
  padding: 20px 10px;
  text-align: center;
  background: #f9fbfd;
}

.video-section img,
.video-section video {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .trusted-customers-section h2 {
    font-size: 1rem;
  }
  .trusted-logos img {
    max-height: 26px;
    max-width: 85px;
  }
  .video-section img,
  .video-section video {
    max-width: 94vw;
  }
} /* Ensure all images and videos scale responsively */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Trusted Section Images */
.trusted-customers-img,
.trusted-partners-img {
  max-width: 90vw;
  height: auto;
  margin-bottom: 16px;
}

/* Fraud Image Resize */
.fraud-img img {
  max-width: 90vw;
  height: auto;
  border-radius: 12px;
}
section:target::before {
  content: "";
  display: block;
  height: 80px; /* Same as navbar height */
  margin-top: -80px;
  visibility: hidden;
}
section:target::before {
  content: "";
  display: block;
  height: 100px; /* Same as JS offset */
  margin-top: -100px;
  visibility: hidden;
}