

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #FFEB3B;
  color: #006400;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header, footer {
  background-color: #006400;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  margin: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.nav-logo {
  width: 45px !important;
  height: auto !important;
  margin: 0 10px 0 0;
  display: inline-block;
  vertical-align: middle;
}

.logo {
  max-width: 140px;
  height: auto;
  margin: 10px auto;
  display: block;
}

section {
  padding: 40px 20px;
  text-align: center;
}

h1, h2, h3 {
  color: #006400;
  font-weight: bold;
}

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

.icon-item {
  background-color: white;
  border: 2px solid #006400;
  border-radius: 12px;
  padding: 20px;
  width: 180px;
  transition: all 0.3s ease-in-out;
}

.icon-item:hover {
  background-color: #e8f5e9;
  transform: scale(1.05);
}

.icon-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

footer .footer-logo {
  display: block;
  max-width: 100px;
  margin: 10px auto;
}

footer .footer-bottom {
  font-size: 12px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .icon-grid {
    flex-direction: column;
    align-items: center;
  }
}

.counter-static,
.counter-static.counter-manual,
.counter-static.counter-manual strong {
  font-size: 2.2rem;
  font-weight: bold;
  color: white;
}

.button:hover {
  box-shadow: 0 0 10px #006400, 0 0 20px #006400;
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float::after {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-float:hover::after {
  opacity: 1;
}

/* HERO SECTION */
#hero {
  position: relative;
  z-index: 4;
  background-color: #FFEB3B;
  padding: 150px 20px;
  text-align: center;
  overflow: hidden;
}

/* Watermark Layer */
#hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background:
    linear-gradient(rgba(144, 238, 144, 0.3), rgba(144, 238, 144, 0.3)),
    url('assets/images/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* CONTACT PAGE STYLES */
.contact-container {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 100, 0, 0.15);
  max-width: 600px;
  margin: 40px auto;
  padding: 40px 30px;
  text-align: left;
  font-size: 16px;
}

.contact-container h2 {
  color: #006400;
  text-align: center;
  margin-bottom: 25px;
}

.contact-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #006400;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
}

.contact-container input:focus,
.contact-container textarea:focus {
  outline: none;
  border-color: #006400;
  box-shadow: 0 0 5px rgba(0, 100, 0, 0.3);
}

.contact-container button {
  background-color: #006400;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.contact-container button:hover {
  background-color: #004d00;
}

/* GALLERY GRID */
.gallery-wrap {
  padding: 24px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tile {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(14px);
}

.tile img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.tile:hover img {
  transform: scale(1.03);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll.in-view .tile {
  animation: fadeUp 0.55s ease-out forwards;
}

.reveal-on-scroll.in-view .tile {
  animation-delay: calc((var(--i) - 1) * 0.05s);
}
@media (prefers-reduced-motion: reduce) {
  .tile,
  .reveal-on-scroll.in-view .tile {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


.about-card {
    text-align: center;
  } /* Left-align text in about cards */

.about-card h3 {
    text-align: center; /* Headings also left-aligned */
    font-weight: bold;
}

.about-card p,
.about-card li {
    text-align: center; /* Paragraphs and lists left-aligned */
}

/* ==== About page overrides ==== */
body[data-page="about.html"] .about-hero p { text-align:center; } /* keep intro centered */

body[data-page="about.html"] .about-grid,
body[data-page="about.html"] .card,
body[data-page="about.html"] .card * {
  text-align: left !important;   /* force left alignment for all text in the cards */
}

body[data-page="about.html"] .card h3 {
  font-weight: 800 !important;   /* bolder section headings */
}

/* About page text alignment override */
body[data-page="about.html"] .card,
body[data-page="about.html"] .card p,
body[data-page="about.html"] .card li,
body[data-page="about.html"] .card h3 {
  text-align: left !important;
}

/* Page Navigation Buttons */
.page-navigation {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 0 10px;
}

.nav-button {
    display: inline-block;
    background-color: #0b6623;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background-color: #094d1a;
}

/* Mobile-friendly layout */
@media (max-width: 600px) {
    .page-navigation {
        flex-direction: column;
        align-items: center;
    }
    .nav-button {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Page Navigation Buttons */
.pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.nav-button {
  display: inline-block;
  background-color: #0b6623;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-button:hover {
  background-color: #094d1a;
  transform: translateY(-2px);
}

.nav-button.home {
  background-color: #fcd12a;
  color: #0b6623;
}

.nav-button.home:hover {
  background-color: #d4b10a;
}

/* Mobile-friendly layout */
@media (max-width: 600px) {
  .pager {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-button {
    text-align: center;
    width: 100%;
  }
} 

background: url("assets/images/logo.png?v=3") no-repeat center center;

/* container */
#hero{
  position: relative;
  background-color: #FFEB3B;
  padding: 60px 20px;
  overflow: hidden;
}

/* keep content above the watermark */
#hero > *{
  position: relative;
  z-index: 1;
}

/* watermark */
#hero::before{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;

  /* Put the IMAGE first so it's on top of the gradient */
  background:
    url('assets/images/logo.png') no-repeat center center,
    linear-gradient(rgba(144,238,144,.3), rgba(144,238,144,.3));

  /* Size each layer: image = contain, gradient = cover  */
  background-size: contain, 100% 100%;

  opacity: .18;          /* make it visibly present */
  z-index: 0;
  pointer-events: none;
}

.social-icons img {
  filter: brightness(0) invert(1); /* makes dark icons white */
  vertical-align: middle;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

/* === Footer fixes: force Quick Links & Contact Info to white === */
footer h3 { color: #fff !important; }                 /* headings */
footer .quick-links a,
footer .contact-info a { color: #fff !important; }     /* links */
footer .contact-info p { color: #fff !important; }     /* text lines */

/* keep social icons visible on green */
footer .social-icons img {
  filter: brightness(0) invert(1);
}

footer p,
footer div {
  color: #fff !important;
}

footer p:hover,
footer div:hover {
  color: #fff !important;
}

@media (max-width:799px){
  .site-nav{
    right:10px; top:56px;
    display:none;
    width:min(80vw, 320px);
    padding:10px 12px;
    background:#fff;
    border:1px solid #eee; border-radius:10px;
    box-shadow:0 12px 28px rgba(0,0,0,.15);
  }
  .site-nav ul{flex-direction:column; gap:6px; padding:0; margin:0;}
  .site-nav a{padding:10px 12px; border-radius:8px;}
  .site-nav a:hover{background:#f6f6f6;}
  .site-nav.open{display:block;}
}