/* RESET OLD NAVBAR BEHAVIOUR */
.navbar a {
  display: inline-block;
}

/* ======================
   GLOBAL STYLES
====================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}


/* ======================
   HEADER / HERO
====================== */
header {
  background: #0b7a5c;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 38px;
}

header p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.95;
}

/* ======================
   LAYOUT
====================== */
section {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* ======================
   CARD
====================== */
.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ======================
   BUTTONS
====================== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #25D366;
  color: #ffffff;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
}

.btn:hover {
  background: #095c45;
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* ======================
   LISTS
====================== */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* ======================
   QR SECTION
====================== */
.qr-box {
  text-align: center;
}

.qr-box img {
  max-width: 200px;
}

/* ======================
   FOOTER
====================== */
footer {
  text-align: center;
  padding: 20px;
  background: #e9e9e9;
  font-size: 14px;
}

footer p {
  font-size: 12px;
  margin-top: 8px;
  color: #555;
}

/* ======================
   MOBILE RESPONSIVE
====================== */
@media (max-width: 600px) {
  header h1 {
    font-size: 30px;
  }

  header p {
    font-size: 16px;
  }
}

/* ======================
   SCREENSHOT STRIP (CHROME SAFE)
====================== */

.screenshot-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
}

.screenshot-strip img {
  height: 220px;        /* FIXED HEIGHT */
  width: auto;          /* AUTO WIDTH */
  flex-shrink: 0;       /* 🔥 CHROME FIX */
  border-radius: 10px;
  cursor: pointer;
  object-fit: contain;
  background: #f4f4f4;
}

.screenshot-strip img:hover {
  transform: scale(1.05);
}

/* ======================
   IMAGE VIEWER (MODAL)
====================== */

.viewer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.viewer img {
  max-width: 70%;
  max-height: 80%;
  border-radius: 12px;
  background: white;
  padding: 10px;
}

/* arrows */
.viewer .nav {
  position: absolute;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.viewer .prev { left: 5%; }
.viewer .next { right: 5%; }

/* mobile adjustment */
@media (max-width: 600px) {
  .viewer img {
    max-width: 90%;
  }
}

/* ======================
   RESPONSIVE NAVBAR
====================== */

.nav-inner {
  max-width: 960px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  font-weight: bold;
}

/* ===== MOBILE SIDE DRAWER ===== */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -260px;            /* hidden initially */
    width: 260px;             /* 👈 drawer width */
    height: 100vh;
    background: #0a5f47;
    flex-direction: column;
    padding-top: 70px;
    transition: right 0.3s ease;
    z-index: 2000;
  }

  .nav-links.show {
    right: 0;                 /* slide in */
  }

  .nav-links li {
    padding: 10px 18px;       /* 👈 spacing SMALL */
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .nav-links li a {
    font-size: 15px;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ======================
   SIMPLE NAVBAR (STABLE)
====================== */
.navbar {
  background: #0b7a5c;
  padding: 12px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  color: #ffffff;
  margin: 0 10px;
  font-weight: bold;
  font-size: 15px;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Sticky CTA for Mobile */
.sticky-cta {
  position: fixed;
  bottom: 64px;                /* ⬅ button thoda upar */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);    /* ⬅ left-right se chhota */
  max-width: 360px;            /* ⬅ compact look */
  z-index: 9999;
  display: none;
}

.sticky-cta a {
  display: block;
  background: #0b7a5c;
  color: #fff;
  text-align: center;
  padding: 12px 14px;          /* ⬅ height thodi kam */
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

/* Only mobile */
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

/* Language Toggle Button */
.lang-btn {
  background: #ffffff;
  color: #0b7a5c;
  border: 1px solid #0b7a5c;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.lang-btn:hover {
  background: #0b7a5c;
  color: #ffffff;
}

/* Mobile language button */
.mobile-lang {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .mobile-lang {
    display: inline-block;
  }
}

body.menu-open .sticky-cta {
  display: none;
}

/* Drawer background overlay (only side area) */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 260px);
  height: 100vh;
  background: rgba(0,0,0,0.35);
  z-index: 1500;
  display: none;
}

body.menu-open .drawer-overlay {
  display: block;
}

/* Desktop language toggle fix */
@media (min-width: 769px) {
  .mobile-lang {
    display: inline-block;
  }
}

@media (min-width: 769px) {
  .nav-right {
    margin-left: auto;
  }
}


