@import url('https://fonts.googleapis.com/css?family=Google+Sans:400,500,700&display=swap');

html, body {
  overflow-x: hidden;
  font-family: 'Google Sans', sans-serif !important;
  margin: 0;
  padding: 0;
}

/* Fonts */
body {
  font-family: 'Google Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Container */
.site-header {
  background: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Navigation Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #035e34;
}

/* Language Button */
.language-selector {
  margin-left: 20px;
}

.lang-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eee;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 15px 0;
  }

  .nav-menu ul li {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
  }

  .language-selector {
    display: none;
  }
}


.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0f9d58, #25d366);
  color: #fff;
  padding: 45px 20px;
  overflow: hidden;
}

.background-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  background-color: #035e34;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  flex: 1 1 500px;
}

.hero-left h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.version {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.btn-download {
  display: inline-block;
  background: #ffffff;
  color: #035e34;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
}

.btn-download:hover {
  background-color: #f0f0f0;
}

.verified h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.verified-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.verified-logos img {
  height: 32px;
}

.secure-text {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
}

.hero-right {
  flex: 1 1 400px;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  max-height: 500px; /* ✅ Limit image height on desktop */
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 25px 15px; /* ✅ reduce padding on small screens */
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
  }

  .hero-left h1 {
    font-size: 2rem; /* ✅ smaller heading */
  }

  .version {
    font-size: 1rem;
  }

  .btn-download {
    margin: 0 auto;
  }

  .hero-right img {
    max-width: 80%;
    max-height: 300px; /* ✅ smaller image on mobile */
    margin-top: 20px;
  }

  .verified-logos {
    justify-content: center;
  }
}



/* Intro Section */
.intro-section {
  padding: 20px 20px 20px; /* Reduced bottom padding */
  margin-bottom: 0;
}

.intro-section p {
  margin-bottom: 10px; /* Tightened up paragraph */
}

.features-section {
  padding-top: 10px;
  margin-top: 0; /* Eliminate any top space */
}

.features-section h2 {
  margin-top: 0; /* This is crucial */
}



.btn-main {
  display: inline-block;
  background-color: #035e34;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.btn-main:hover {
  background-color: #169e44;
}

.features-section {
  padding: 20px 20px 50px; /* top padding reduced from 50px to 20px */
  background-color: #fff;
  margin-top: 0; /* just in case */
}

.features-section h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  width: 130px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    gap: 20px;
  }

  .feature-box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .feature-box {
    width: 100%;
  }
}

.feature-highlight {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.highlight-box {
  background: linear-gradient(135deg, #0b8f52, #25d366);
  border-radius: 15px;
  padding: 40px 20px;
  width: 100%;
  max-width: 800px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.highlight-box:hover {
  transform: translateY(-4px);
}

.highlight-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.highlight-box img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-box {
    padding: 30px 15px;
  }

  .highlight-box h2 {
    font-size: 1.5rem;
  }

  .highlight-box img {
    max-width: 90%;
  }
}

.article-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Google Sans', sans-serif !important;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
}

.article-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #035e34;
}

.article-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #035e34;
}

.article-content h3 {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #333;
}

.article-content p {
  margin-bottom: 15px;
}

.article-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border: 1px solid #ddd;
}

.article-content table th,
.article-content table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  font-size: 0.95rem;
}

.article-content table th {
  background-color: #e6ffe6;
  font-weight: bold;
}

@media (max-width: 768px) {
  .article-content {
    padding: 20px 15px;
  }

  .article-content h1 {
    font-size: 1.8rem;
  }

  .article-content h2 {
    font-size: 1.4rem;
  }
}

.site-footer {
  background: #121212;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.site-footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #2c2c2c;
}

.footer-logo img {
  max-height: 50px;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
}

.footer-menu li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #035e34;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #999;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
}

#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #035e34;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #169e44;
  transform: scale(1.1);
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  padding: 60px 20px;
  background: #ffffff;
}

.download-section h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #035e34;
  text-align: center;
}

.download-intro {
  font-size: 1.1rem;
  color: #333;
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

/* Download Box */
.download-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.download-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.download-box li {
  font-size: 1rem;
  color: #111;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.download-box li:last-child {
  border-bottom: none;
}

/* Download Button */
.download-btn {
  display: inline-block;
  background: #035e34;
  color: #fff;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.download-btn:hover {
  background: #169e44;
}

/* Install Note */
.note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 15px;
  background: #fff5e6;
  padding: 12px 16px;
  border-left: 4px solid #ffc107;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .download-section {
    padding: 40px 15px;
  }

  .download-box {
    padding: 20px;
  }

  .download-btn {
    width: auto;
    text-align: center;
  }
}

.error-404 {
  padding: 80px 20px;
  text-align: center;
  background: #fdfdfd;
}

.error-404 h1 {
  font-size: 2.4rem;
  color: #035e34;
  margin-bottom: 20px;
}

.error-404 p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.back-home-btn,
.back-btn {
  background-color: #035e34;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.back-home-btn:hover,
.back-btn:hover {
  background-color: #169e44;
}

.page-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-section h1 {
  text-align: center;
  font-size: 2rem;
  color: #035e34;
  margin-bottom: 25px;
}

.page-section h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #035e34;
  margin-bottom: 25px;
}

.page-section h3 {
  text-align: center;
  font-size: 1rem;
  color: #035e34;
  margin-bottom: 25px;
}

.page-section p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.page-section ul {
  max-width: 800px;
  margin: 20px auto;
  padding-left: 20px;
  color: #444;
  line-height: 1.7;
}

.page-section ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.faq-section h2 {
  font-size: 2rem;
  text-align: center;
  color: #035e34;
  margin-bottom: 40px;
}

.faq-item {
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.faq-answer p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}
