:root {
  --primary: #1f6b36;
  --primary-dark: #164f28;
  --accent: #f58634;
  --accent-dark: #d76f15;
  --text: #243238;
  --muted: #5f6b72;
  --surface: #f7f5ee;
  --white: #ffffff;
  --border: rgba(31, 107, 54, 0.14);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfbf7 0%, var(--surface) 100%);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
}

.topbar {
  background: #18261d;
  color: #f3efe8;
  font-size: 0.95rem;
  padding: 0.7rem 0;
}

.topbar .contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 1rem;
}

.topbar .contact-pill a {
  color: #f3efe8;
}

header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.navbar-brand img {
  height: 56px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  padding: 0.7rem 0.95rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link.active {
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--accent);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  border: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(245, 134, 52, 0.2);
}

.btn-outline-light {
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-section {
  padding: 3.2rem 0 2rem;
}

.hero-card {
  background: linear-gradient(135deg, rgba(31, 107, 54, 0.95), rgba(78, 128, 66, 0.9));
  color: var(--white);
  border-radius: 1.75rem;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  right: -3rem;
  top: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-title {
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-copy {
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
}

.hero-figure {
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 260px;
}

.hero-figure img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro {
  padding: 1.2rem 0 0;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary);
}

.section-block {
  padding: 1.6rem 0 1.2rem;
}

.section-heading {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.45rem;
}

.content-card,
.story-card,
.contact-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.story-card {
  height: 100%;
}

.image-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-stack img,
.gallery .image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1rem;
}

.image-with-text1,
.image-with-text2,
.image-with-text135,
.image-with-text24 {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  padding: 1.3rem;
  margin-bottom: 1.2rem;
}

.image-with-text1 img,
.image-with-text2 img,
.image-with-text135 img,
.image-with-text24 img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 1rem;
}

.feature-list {
  padding-left: 1rem;
  margin: 0;
}

.feature-list li {
  margin-bottom: 0.6rem;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery .image {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery .image:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.gallery .image img {
  transition: transform 0.25s ease;
}

.gallery .image:hover img {
  transform: scale(1.04);
}

.gallery-section {
  margin-bottom: 1.6rem;
}

.map {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.2rem;
}

.form-control {
  border: 1px solid rgba(31, 107, 54, 0.2);
  border-radius: 0.8rem;
  padding: 0.8rem 0.95rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 134, 52, 0.2);
  border-color: var(--accent);
}

.form-label {
  font-weight: 600;
  color: var(--primary);
}

footer {
  background: #18261d;
  color: #f3efe8;
  padding: 2.7rem 0 1rem;
  margin-top: 2.4rem;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 0.9rem;
}

.footer-link {
  color: #dfe8de;
  display: block;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.2rem;
  padding-top: 1rem;
  font-size: 0.95rem;
}

.scroll-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#myModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#myModal .modal-content {
  max-width: min(92vw, 900px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
}

#myModal .close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

#sym2,
#co-us {
  color: var(--primary);
}

.para1 p,
.text-i p,
#p3,
#p2 {
  color: var(--muted);
}