/* UI Font Options */
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");

/* Emoji Fonts — self-host or use Twemoji (no @import support) */

body {
  background: linear-gradient(135deg, #f9f6ef 0%, #f3e7c7 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
/* Responsive Navigation Styles */
.nsv {
  background: #fffbe6;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 1rem;
  margin: 1rem auto;
  max-width: 1200px;
}

.nsv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nsv-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #7c6f57;
  text-decoration: none;
  gap: 0.5rem; /* space between icon and text */
  margin-right: auto; /* Pushes the logo to the left */
}

@media (max-width: 768px) {
  .nsv-logo {
    justify-content: space-between;
    width: 100%;
  }
}
.logo-image {
  height: 1.9rem;
  width: auto;
  max-width: 100%;
  display: block;
}
.main-logo {
  height: 3.1rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .logo-image {
    height: 1.6rem;
  }
  .main-logo {
    height: 2.6rem;
    margin-bottom: 0.5rem;
  }
}
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #7c6f57;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.2rem;
  }
}
.logo-flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nsv-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nsv-li {
  display: flex;
  align-items: center;
}

.navbar-icon {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.25rem;
  color: #bfa76a;
  margin-left: 0.5rem;
  margin-right: 0;
  transition: color 0.2s;
  vertical-align: top;
}
.burger-image {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 60px;
  height: auto;
  max-width: 18vw;
  min-width: 40px;
  transition: width 0.2s;
  display: none; /* Hidden by default on large screens */
}

@media (max-width: 768px) {
  .burger-image {
    top: 2rem;
    right: 2rem;
    width: 40px;
    max-width: 22vw;
    min-width: 28px;
    display: block;
    position: absolute;
  }
}

@media (max-width: 768px) {
  .navbar-icon {
    display: block;
    cursor: pointer;
  }

  .nsv-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on your nav height */
    right: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #f3e7c7;
  }

  .nsv-menu.active {
    display: flex;
    max-height: 500px; /* Large enough to show the full menu */
    transition: max-height 0.4s ease-in;
  }
}

.nsv-menu li a {
  color: #7c6f57;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.nsv-menu li a:hover,
.nsv-menu li a:focus {
  color: #bfa76a;
}

.nsv-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #7c6f57;
  cursor: pointer;
}

.nsv-menu li:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  .nsv {
    padding: 1rem;
  }
  .nsv-container {
    flex-direction: column;
    align-items: stretch;
  }
  .nsv-menu {
    flex-direction: column;
    gap: 1rem;
    display: none;
    margin-top: 1rem;
    width: 100%;
  }
  .nsv-menu.active {
    display: flex;
  }
  .nsv-menu li a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    display: block;
  }
  .nsv-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 0.5rem;
  }
  .shop-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    height: auto;
  }
}
.nsv-menu-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* nsv-menu-item class styles */
.nsv-menu-item {
  display: flex;
  align-items: center;
}

.nsv-menu-item:hover,
.nsv-menu-item:focus-within {
  background: #f3e7c7;
}

.shop-btn {
  text-decoration: none;
  background-color: #29a847;
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(41, 168, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  /* height removed for better flexibility */
}

.shop-btn:hover,
.shop-btn:focus {
  background-color: #218a39;
  color: #f3e7c7 !important;
}

.mt-5 {
  margin-top: 35vh; /* 50% of the viewport height */
  transform: translateY(-50%); /* Adjust for the element's own height */
  position: relative; /* Or absolute, depending on layout */
}

.big-font {
  font-size: 3.75rem; /* Default size for larger screens */
}

.font-green {
  color: #218a39;
}

@media (max-width: 1024px) {
  .big-font {
    font-size: 3rem; /* Adjust for medium screens */
  }
}

@media (max-width: 768px) {
  .big-font {
    font-size: 2.8rem; /* Adjust for tablets */
    text-align: center;
  }
}

.home-container {
  display: flex;
  flex-direction: row; /* Default to row for larger screens */
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
}
.product-container,
.product-container {
  display: flex;
  flex-direction: column; /* Default to row for larger screens */
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 2rem;
}

.btn-container {
  display: flex;
  flex-direction: row; /* Default to row for larger screens */
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
}

@media (max-width: 768px) {
  .home-container,
  .btn-container {
    flex-direction: column; /* Stack vertically on small screens */
    padding: 1rem;
    gap: 1rem;
  }
}

.img-container {
  flex-shrink: 0; /* Prevent image container from shrinking */
  width: 50%; /* Adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.img-container-animation {
  max-width: 100%;
  max-height: 100%;
  animation: bounce 3s infinite; /* Apply bounce animation */
  border-radius: 2rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .img-container {
    width: 100%; /* Full width on small screens */
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-18px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.mt-0 {
  margin-top: 0px;
}

.mb--2 {
  margin-bottom: -2%;
}

.mb--1 {
  margin-bottom: -1%;
}

@media (max-width: 768px) {
  .mb--2 {
    margin-bottom: 0%;
  }
  .mb--1 {
    margin-bottom: 0%;
  }
}
.mb-0 {
  margin-bottom: 0%;
}

.top-right-sticker {
  position: absolute;
  top: -3vh;
  right: -1.4vw;
}

.bottom-right-sticker {
  position: absolute;
  bottom: -2rem;
}

.bottom-left-sticker {
  position: absolute;
  bottom: -3vh;
  left: -1vw;
}

.bg-brown {
  background-color: #d0b77c;
}

.bg-green {
  background-color: #29a847;
}

.circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8vw; /* Scales with viewport */
  font-weight: bold;
  color: #000;
  margin: auto; /* Optional: center in parent */
}

@media (max-width: 768px) {
  .circle {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.3rem; /* Scales with viewport */
    font-weight: bold;
    color: #000;
    margin: auto; /* Optional: center in parent */
  }
}

.description {
  font-size: 1.3rem;
  color: #677e73;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .description {
    text-align: center;
    font-size: 1rem;
  }
}

.shop-btn {
  background: #29a847;
  padding: 1rem;
  border-radius: 1rem;
  color: #fff;
  width: 100%;
  text-align: center;
}

.demo-btn {
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.demo-btn:hover {
  background-color: #f3f3f3;
}

.text-center {
  text-align: center;
}

.product-size-container {
  display: flex;
  flex-direction: row; /* Default to row for larger screens */
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
}

@media (max-width: 768px) {
  .product-size-container {
    flex-direction: column; /* Stack vertically on small screens */
    padding: 1rem;
    gap: 1rem;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-in-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-fade-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-fade-bottom.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cards {
  display: flex;
  flex-direction: row; /* Default to row for larger screens */
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
}
.fx-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column; /* Stack vertically on small screens */
    padding: 1rem;
    gap: 1rem;
  }
  .fx-row {
    display: flex;
    flex-direction: column;
  }
  h1 {
    font-size: 1.6rem;
  }
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: #fff;
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image {
  transform: scale(1.1);
}

.card-content {
  padding: 3rem;
}
.p-2 {
  padding: 1rem !important;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.card-description {
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
}
.card-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #29a847;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card-btn:hover,
.card-btn:focus {
  background-color: #218a39;
  transform: translateY(-2px);
}
.badge-container {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background-color: #29a847; /* Green badge */
  border-radius: 999px; /* Makes it pill-shaped */
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}

.promise-icons {
  width: 4rem;
  height: 4rem;
  margin-top: 1.5rem;
}

.glow-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.glow-hover:hover {
  box-shadow: 0 0 15px 4px rgba(41, 168, 71, 0.6); /* Green glow */
  transform: translateY(-3px); /* Optional: adds subtle lift */
}
.fc-white {
  color: #f3f3f3;
}
.fw-0 {
  font-weight: normal;
}
.p-5 {
  padding: 2rem 10rem;
}
.br-2 {
  border-radius: 2rem;
}
.w-70 {
  width: 70%;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  .p-5 {
    padding: 2rem 3rem;
  }
}
.table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left !important;
  margin-bottom: 0.5rem;
  border: 1px solid #29a847;
  border-collapse: separate; /* Required for border-radius to work */
  border-spacing: 0;
  border-radius: 1rem;
  overflow: hidden; /* Clips overflowing child borders */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
}
.table th {
  background-color: #29a847;
  color: #fff;
  padding: 1rem;
  border: 0.1rem solid #6666663b;
}
.table td {
  padding: 1rem;
  background: #f3f3f3;
  border: 0.1rem solid #6666663b;
}
.contact-info {
  border-radius: 2rem;
  padding: 1rem;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.footer {
  padding: 3rem 1rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-logo p {
  max-width: 250px;
  font-size: 0.9rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 1rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.social-icons a {
  margin-right: 1rem;
  display: inline-block;
  transition: opacity 0.3s;
}

.social-icons a img {
  width: 24px;
  height: 24px;
}

.social-icons a:hover {
  opacity: 0.75;
}

.footer-bottom {
  margin-top: 1rem;
  margin-bottom: -2em;
  text-align: center;
  /* padding-top: 1rem; */
  font-size: 0.85rem;
  color: #aaa;
}

.marker-icon {
  width: 1.4rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .marker-icon {
    width: 1rem;
  }
}
.text-dec-none {
  text-decoration: none;
  color: #000;
}
.form-style {
  width: 100%;
  height: 110vh;
}
