:root {
  --green: #0b5d3b;
  --green-2: #16754b;
  --leaf: #5d9f39;
  --deep: #063d29;
  --red: #b6292f;
  --cream: #fbfaf4;
  --white: #fff;
  --ink: #17231d;
  --muted: #65736b;
  --line: #e5ebe4;
  --shadow: 0 20px 55px rgba(4, 52, 32, .12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px
}

body {
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 93, 59, .08)
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px
}
.brand-logo-wrap{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:transparent;
  border:none;
  border-radius:0;
  overflow:visible;
  box-shadow:none;
}

.brand-logo-wrap img{
  width:72px;
  height:72px;
  object-fit:contain;
  display:block;
  border:none;
  border-radius:0;
  box-shadow:none;
  background:transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15
}

.brand-text strong {
  font-size: 20px;
  color: var(--green);
  font-weight: 800
}

.brand-text small {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: #748079;
  margin-top: 4px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Plus Jakarta Sans", "Noto Sans Devanagari", sans-serif;
  font-size: 14px;
  font-weight: 600
}

.nav-links>a {
  position: relative;
  padding: 8px 0;
  color: #314039
}

.nav-links>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--leaf);
  transition: .25s
}

.nav-links>a:hover:after {
  width: 100%
}

.nav-actions {
  display: flex;
  gap: 8px;
  margin-left: 2px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  font-size: 13px;
  transition: .25s;
  border: 1px solid transparent;
  cursor: pointer
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(182, 41, 47, .22)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(182, 41, 47, .28)
}

.btn-whatsapp {
  background: #168b51;
  color: #fff
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #117342
}

.btn-outline {
  border-color: #d8e0da;
  background: #fff;
  color: var(--green)
}

.btn-light {
  background: #fff;
  color: var(--green)
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  margin: 5px auto
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
  color: #fff
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 35, 23, .88) 0%, rgba(3, 35, 23, .65) 45%, rgba(3, 35, 23, .30) 100%);
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 82px
}

.hero-copy {
  max-width: 760px;
  padding: 80px 0
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-family: "Plus Jakarta Sans", "Noto Sans Devanagari", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 800;
  color: #d5f1de;
  margin-bottom: 14px
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px
}

.hero-tagline {
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 700;
  color: #f3dfb0;
  margin-top: 14px
}

.hero-description {
  font-size: 18px;
  color: #e7f1eb;
  max-width: 650px;
  margin-top: 16px
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: #e8f4ec;
  font-size: 13px
}

.hero-trust span {
  padding: 7px 0
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 30px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding-top: 8px
}

.scroll-indicator span {
  width: 5px;
  height: 9px;
  background: #fff;
  border-radius: 8px;
  animation: scroll 1.7s infinite
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  70% {
    transform: translateY(18px);
    opacity: .2
  }

  100% {
    transform: translateY(0);
    opacity: 1
  }
}

.section {
  padding: 105px 0
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-image {
  position: relative
}

.image-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid #fff
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.location-chip {
  position: absolute;
  bottom: -18px;
  right: 25px;
  background: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  font-size: 13px;
  font-weight: 700;
  color: var(--green)
}

.section-kicker {
  color: var(--green);
  margin-bottom: 10px
}

.about-copy h2,
.section-heading h2,
.highlight-box h2,
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px
}

.about-copy h2 em {
  font-style: normal;
  color: var(--red)
}

.about-copy p,
.section-heading p,
.contact-copy>p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px
}

.mini-points div {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px
}

.mini-points span {
  display: block;
  color: var(--leaf);
  font: 700 12px "Plus Jakarta Sans";
  margin-bottom: 5px
}

.mini-points strong {
  font-size: 13px;
  line-height: 1.4;
  display: block
}

.products-section {
  background: #fff
}

.section-heading {
  max-width: 700px;
  margin-bottom: 45px
}

.section-heading.center {
  text-align: center;
  margin-inline: auto
}

.section-heading.light .section-kicker {
  color: #a7d9b7
}

.section-heading.light h2 {
  color: #fff
}

.section-heading.light p {
  color: #d5e8dc
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.product-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
  transition: .3s;
  position: relative;
  overflow: hidden
}

.product-card:before {
  content: "";
  position: absolute;
  right: -35px;
  top: -35px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(93, 159, 57, .10)
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: #cdddcf
}

.product-icon {
  font-size: 34px;
  margin-bottom: 18px
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 9px
}

.product-card p {
  font-size: 14px;
  color: var(--muted);
  min-height: 66px
}

.product-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--green);
  font-weight: 800;
  font-size: 13px
}

.why-section {
  padding: 105px 0;
  background: linear-gradient(135deg, #063d29, #0b5d3b);
  color: #fff;
  position: relative;
  overflow: hidden
}

.why-section:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  right: -180px;
  top: -160px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2
}

.why-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .055);
  border-radius: 22px;
  backdrop-filter: blur(8px)
}

.why-card span {
  font: 800 12px "Plus Jakarta Sans";
  color: #a7d9b7
}

.why-card h3 {
  font-size: 19px;
  margin: 13px 0 7px
}

.why-card p {
  font-size: 13px;
  color: #d1e5d9
}

.highlight-section {
  background: #f1f5ec;
  padding-top: 75px;
  padding-bottom: 75px
}

.highlight-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 12px 40px rgba(5, 61, 41, .06)
}

.highlight-box h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px
}

.highlight-box p {
  color: var(--muted);
  max-width: 760px
}

.gallery-section {
  background: var(--cream)
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px
}

.gallery-item {
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 300px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08)
}

.gallery-item.large {
  grid-row: span 1
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.gallery-item:hover img {
  transform: scale(1.045)
}

.gallery-item span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  padding: 6px 11px;
  border-radius: 999px;
  font: 600 11px "Plus Jakarta Sans"
}

.contact-section {
  background: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfa
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e7f3e9;
  color: var(--green);
  font-size: 19px;
  flex: 0 0 auto
}

.contact-item small {
  display: block;
  color: #7b877f;
  font: 600 11px "Plus Jakarta Sans";
  margin-bottom: 3px
}

.contact-item strong {
  font-size: 14px;
  line-height: 1.55
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap
}

.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #eee;
  position: relative
}

.map-wrap iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block
}

.map-direction {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  padding: 11px 15px;
  border-radius: 999px;
  font: 700 12px "Plus Jakarta Sans";
  color: var(--green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.footer {
  background: #052e20;
  color: #d9e8de
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 60px;
  padding: 65px 0
}

.footer .brand-text strong {
  color: #fff
}

.footer .brand-text small {
  color: #a7c5b4
}

.footer-brand>p {
  margin-top: 15px;
  color: #a8c0b2
}

.footer h3 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 15px
}

.footer-grid>div>a {
  display: block;
  color: #b7cfc0;
  font-size: 13px;
  margin: 7px 0
}

.footer-grid>div>p {
  color: #a8c0b2;
  font-size: 13px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-bottom .container {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.footer-bottom p,
.footer-bottom a {
  font: 500 12px "Plus Jakarta Sans";
  color: #91aa9d
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #16a05a;
  color: #fff;
  font: 800 12px "Plus Jakarta Sans";
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
  border: 3px solid #fff
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 89;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  cursor: pointer
}

.back-top.show {
  opacity: 1;
  pointer-events: auto
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .86);
  z-index: 200;
  display: none;
  place-items: center;
  padding: 30px
}

.lightbox.open {
  display: grid
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: #fff;
  color: #111;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:1000px) {
  .nav-links {
    gap: 14px
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .two-col,
  .contact-grid {
    gap: 45px
  }
}

@media(max-width:820px) {
  .navbar {
    min-height: 74px
  }

  .menu-toggle {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    gap: 4px
  }

  .nav-links.open {
    display: flex
  }

  .nav-links>a {
    padding: 10px 8px
  }

  .nav-actions {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .hero {
    min-height: 720px
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 35, 23, .88), rgba(3, 35, 23, .58))
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-copy {
    order: -1
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-item {
    min-height: 250px
  }

  .gallery-item.large {
    grid-column: span 2
  }
}

@media(max-width:560px) {
  .container {
    width: min(calc(100% - 28px), var(--container))
  }

  .brand-logo-wrap {
    width: 50px;
    height: 50px
  }

  .brand-text strong {
    font-size: 16px
  }

  .brand-text small {
    font-size: 7px;
    letter-spacing: 1.5px
  }

  .hero {
    min-height: 680px
  }

  .hero-content {
    padding-top: 70px
  }

  .hero-copy {
    padding: 55px 0 70px
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -1px
  }

  .hero-tagline {
    font-size: 25px
  }

  .hero-description {
    font-size: 15px
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-trust {
    gap: 5px 14px;
    font-size: 11px
  }

  .section {
    padding: 75px 0
  }

  .about-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 32px
  }

  .mini-points {
    grid-template-columns: 1fr
  }

  .product-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

  .highlight-box {
    padding: 28px 22px;
    align-items: flex-start;
    flex-direction: column
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gallery-item.large {
    grid-column: auto
  }

  .gallery-item {
    min-height: 260px
  }

  .map-wrap iframe {
    height: 400px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0
  }

  .footer-bottom .container {
    min-height: 80px;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
    text-align: center
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px
  }

  .back-top {
    right: 16px;
    bottom: 80px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}