
/* School green color palette and base variables */
html, body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  box-sizing: border-box;
}



*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #e8f5e9 0%, #fff 100%);
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  background: #2e7d32;
  box-shadow: 0 2px 8px rgba(46,125,50,0.10);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.nav-brand {
  font-weight: bold;
  font-size: 1.5em;
  color: #fff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  margin-left: 10px;
  z-index: 31;
}

/* ...existing code... */
.nav-brand img,
.school-logo,
.logo-area img {
  width: 40px;
  height: 40px;
  min-width: 32px;
  min-height: 32px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  transition: width 0.2s, height 0.2s;
}

@media (max-width: 700px) {
  .nav-brand img,
  .school-logo,
  .logo-area img {
    width: 32px;
    height: 32px;
    min-width: 28px;
    min-height: 28px;
    max-width: 36px;
    max-height: 36px;
  }
}

@media (max-width: 400px) {
  .nav-brand img,
  .school-logo,
  .logo-area img {
    width: 26px;
    height: 26px;
    min-width: 22px;
    min-height: 22px;
    max-width: 30px;
    max-height: 30px;
  }
}
/* ...existing code... */

.hamburger {
  width: 28px;
  height: 3.5px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #fff;
  color: #2e7d32;
}


.hero-carousel {
  position: relative;
  width: 100vw;
  min-height: 380px;
  height: 60vh;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.hero-slide-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: background-image 1s cubic-bezier(.77,0,.18,1), filter 0.7s;
  filter: brightness(0.7);
  will-change: background-image;
  /* Add a much darker linear gradient overlay directly in the background-image */
  /* The JS will set the image, so we add the gradient in JS too */
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8vw;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  animation: fadeInHero 1s;
}
@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.hero-slide-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  animation: fadeInHero 1s;
}
.hero-slide-desc {
  font-size: 1.25em;
  margin-bottom: 28px;
  line-height: 1.5;
  animation: fadeInHero 1s 0.2s;
}
.hero-slide-cta {
  display: inline-block;
  background:  #2e7d32 ;
  color: #fff;
  font-weight: 600;
  font-size: 1.13em;
  padding: 14px 38px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  animation: fadeInHero 1s 0.4s;
}
.hero-slide-cta:hover {
  background:#2c9831 ;
  box-shadow: 0 4px 16px rgba(25,118,210,0.13);
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.hero-dot {
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #fff;
  transition: background 0.2s, border 0.2s;
}
.hero-dot.active {
  background: #1b5e20;
  border: 2px solid #2e7d32;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255,255,255,0.7);
  color: #1b5e20;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  opacity: 0.85;
}
.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }
.hero-arrow:hover {
  background: green;
  color: #fff;
}
@media (max-width: 900px) {
  .hero-slide-content {
    padding: 0 4vw;
    min-height: 220px;
  }
  .hero-slide-title {
    font-size: 1.5em;
  }
  .hero-slide-desc {
    font-size: 1em;
  }
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3em;
  }
}
@media (max-width: 600px) {
  .hero-carousel {
    min-height: 220px;
    height: 100vh;
    max-height: 340px;
  }
  .hero-slide-content {
    padding: 0 2vw;
    min-height: 120px;
  }
  .hero-arrow {
    display: none;
  }
  .hero-dots {
    bottom: 12px;
    gap: 8px;
  }
}


.about-section {
  background: linear-gradient(120deg, #f5f7fa 70%, #e9f5ee 100%);
  padding: 64px 0 48px 0;
  font-family: 'Poppins', 'Segoe UI', 'Open Sans', Arial, sans-serif;
  /* min-height: 420px; */
  overflow-x: hidden;
}

.about-heading-wrap {
  text-align: center;
  margin-bottom: 28px;
  animation: fadeInHeading 1s;
}
@keyframes fadeInHeading {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: none;}
}
.about-heading {
  color: #1b5e20;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.about-subheading {
  color: #388e3c;
  font-size: 1.13em;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.2px;
}

.about-flex {
display: flex;
  opacity: 0;
  transform: translateY(40px);
  animation: aboutFadeIn 1.2s 0.2s forwards;
}
@keyframes aboutFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.about-img {
  width: 320px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(25,118,210,0.10);
  background: #fff;
  display: block;
  object-fit: cover;
  animation: imgPopIn 1.2s 0.3s cubic-bezier(.77,0,.18,1) backwards;
}
@keyframes imgPopIn {
  from { opacity: 0; transform: scale(0.92);}
  to { opacity: 1; transform: scale(1);}
}
.about-note {
  flex: 1 1 340px;
  min-width: 240px;
  /* background: rgba(255,255,255,0.96); */
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.06);
  padding: 32px 28px 24px 28px;
  animation: noteFadeIn 1.3s 0.4s backwards;
}
@keyframes noteFadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: none;}
}
.about-note h2 {
  color: butternugget;
  font-size: 2em;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.about-tagline {
  color: #388e3c;
  font-size: 1.13em;
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 0.2px;
}
.about-note p {
  color: #205c2e;
  font-size: 1.08em;
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04em;
  color: #2e7d32;
  background: #e9f5ee;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(67,206,162,0.08);
  min-width: 170px;
  animation: fadeInFeature 1.1s;
}
@keyframes fadeInFeature {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: none;}
}
.about-icon {
  font-size: 1.2em;
  color: green;
}
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 28px;
    padding: 0 4vw;
  }
  .about-img {
    width: 98vw;
    max-width: 400px;
    margin: 0 auto;
  }
  .about-note {
    padding: 22px 10vw 18px 10vw;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 32px 0 18px 0;
  }
  .about-flex {
    gap: 16px;
    padding: 0 2vw;
  }
  .about-img {
    width: 96vw;
    max-width: 98vw;
    height: 250px;
  }

    .about-heading {
    font-size: 1.18em;
    margin-bottom: 6px;
  }
  .about-subheading {
    font-size: 1em;
    margin-bottom: 10px;
  }

  .about-note {
    padding: 16px 2vw 12px 2vw;
    min-width: 0;
  }
  .about-note h2 {
    font-size: 1.18em;
    margin-bottom: 6px;
  }
  .about-tagline {
    font-size: 1em;
    margin-bottom: 10px;
  }
  .about-note p {
    font-size: 0.98em;
    margin-bottom: 10px;
  }
  .about-highlights {
    gap: 8px 0;
    flex-direction: column;
  }
  .about-highlights li {
    min-width: 0;
    font-size: 0.98em;
    padding: 7px 10px;
  }
}


.stats-section-outer {
  width: 100vw;
  background: linear-gradient(120deg, rgba(25,118,210,0.10) 0%, rgba(67,206,162,0.09) 100%);
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
.stats-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 0 36px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-heading {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: #205c2e;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.stats-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 900px;
  background: rgba(255,255,255,0.82);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(46,125,50,0.10);
  overflow: hidden;
  flex-wrap: wrap;
}
.stat-box {
  flex: 1 1 180px;
  min-width: 160px;
  background: rgba(255,255,255,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 18px 32px 18px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.stat-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #205c2e;
  margin-bottom: 8px;
  letter-spacing: 1px;
  transition: color 0.2s;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 2px 12px rgba(25,118,210,0.08);
}
.stat-label {
  font-size: 1.08em;
  color: #205c2e;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-top: 2px;
}
.stat-divider {
  width: 2px;
  background: rgba(255,255,255,0.95);
  margin: 0;
  border-radius: 2px;
  align-self: stretch;
  display: block;
}
@media (max-width: 900px) {
  .stats-section-inner {
    padding: 36px 0 24px 0;
  }
  .stats-container {
    flex-direction: column;
    max-width: 99vw;
    border-radius: 12px;
  }
  .stat-box {
    padding: 28px 8vw 22px 8vw;
    min-width: 0;
  }
  .stat-divider {
    width: 100%;
    height: 2px;
    min-height: 2px;
    margin: 0;
    background: #fff;
    align-self: stretch;
  }
}
@media (max-width: 600px) {
  .stats-section-inner {
    padding: 24px 0 12px 0;
  }
  .stats-heading {
    font-size: 1.2em;
    margin-bottom: 18px;
  }
  .stat-box {
    padding: 16px 2vw 12px 2vw;
  }
  .stat-number {
    font-size: 2em;
  }
  .stat-label {
    font-size: 1em;
  }
}


/* NOTIFICATION BANNER */
.notification-banner {
  background: #e6ffed;
  color: #1b5e20;
  padding: 14px 0;
  text-align: center;
  font-size: 1.08em;
  font-weight: 500;
  margin-top: 70px;
  border-bottom: 1px solid #b9f6ca;
  letter-spacing: 0.5px;
}



/* MAIN */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 80vh;
  width: 100%;
}

/* ABOUT & FEATURES */
.about-section, .features-section {
  background: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 900px;
  margin: 0 auto 32px auto;
  padding: 36px 24px 24px 24px;
  text-align: center;
}

.about-section h2, .features-section h2 {
  color: #2e7d32;
  margin-bottom: 18px;
  font-size: 1.5em;
  font-weight: 700;
}

.about-section p {
  color: #4e6e5d;
  font-size: 1.13em;
  line-height: 1.7;
  margin-bottom: 0;
}

.features-section-3d {
  background: linear-gradient(120deg, #eaf7f0 0%, #e0f2f1 100%);
  padding: 80px 0 60px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  max-width: 1300px;
  margin: 0 auto 64px auto;
  border-radius: 32px;
  box-shadow: 0 12px 48px 0 rgba(67,206,162,0.13), 0 1.5px 0 #2e7d32;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}
.features-section-3d::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2e7d32 0%, transparent 70%);
  opacity: 0.14;
  z-index: 0;
}
.features-3d-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.features-3d-label {
  display: inline-block;
  color: #2e7d32;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.features-3d-title {
  color: #2e7d32;
  font-size: 2.7em;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  text-shadow: 0 4px 24px #2e7d32a0;
}
.features-3d-underline {
  width: 64px;
  height: 5px;
  background: linear-gradient(90deg,#2e7d32,#2e7d32);
  border-radius: 3px;
  margin: 0 auto 0 auto;
}
.features-3d-subtitle {
  color: #388e3c;
  font-size: 1.18em;
  margin-top: 18px;
  font-style: italic;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px #fff;
}
.features-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.feature-3d-card {
  background: rgba(255,255,255,0.22);
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(67,206,162,0.13), 0 1.5px 0 #2e7d32;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  border: none;
  padding: 0 0 24px 0;
  transform-style: preserve-3d;
  transition: box-shadow 0.32s, transform 0.32s, background 0.22s;
  will-change: transform, box-shadow;
  animation: fadeInFeature3D 1.1s cubic-bezier(.46,.03,.52,.96);
}
.feature-3d-card:hover, .feature-3d-card:focus {
  box-shadow: 0 24px 64px 0 #2e7d32a0, 0 1.5px 0 #2e7d32;
  transform: translateY(-12px) scale(1.04) rotateY(8deg) rotateX(2deg);
  background: rgba(255,255,255,0.28);
  z-index: 2;
}
.feature-3d-glass {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: linear-gradient(120deg,rgba(255,255,255,0.38) 0%,rgba(255,255,255,0.08) 100%);
  box-shadow: 0 2px 24px 0 rgba(67,206,162,0.09);
  pointer-events: none;
  z-index: 1;
  filter: blur(0.5px);
}
.feature-3d-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6em;
  color: #fff;
  margin: 38px 0 0 0;
  box-shadow: 0 2px 18px rgba(67,206,162,0.13);
  border: 4px solid #fff;
  z-index: 2;
  transition: box-shadow 0.22s, background 0.22s, color 0.22s;
  position: relative;
}
.feature-3d-card:hover .feature-3d-icon {
  box-shadow: 0 8px 32px #2e7d32a0;
  background: linear-gradient(135deg,#2e7d32,#2e7d32);
  color: #fff;
}
.feature-3d-info {
  flex: 1 1 0;
  padding: 28px 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  z-index: 2;
}
.feature-3d-mini-title {
  color: #2e7d32;
  font-size: 1.08em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  text-shadow: 0 2px 8px #2e7d32a0;
}
.feature-3d-desc {
  color: #232b2b;
  font-size: 1.13em;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 2px 8px #fff;
}
@keyframes fadeInFeature3D {
  from { opacity: 0; transform: translateY(60px) scale(0.95) rotateY(-12deg);}
  to { opacity: 1; transform: none;}
}
@media (max-width: 1100px) {
  .features-3d-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 4vw;
  }
  .feature-3d-info {
    padding: 18px 12px 0 12px;
  }
}
@media (max-width: 700px) {
  .features-section-3d {
    padding: 24px 0 10px 0;
    border-radius: 18px;
  }
  .features-3d-header {
    margin-bottom: 18px;
  }
  .features-3d-title {
    font-size: 1.18em;
    margin-bottom: 4px;
  }
  .features-3d-underline {
    width: 34px;
    height: 3px;
  }
  .features-3d-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 2vw;
  }
  .feature-3d-card {
    min-height: 0;
    border-radius: 14px;
    padding: 0 0 14px 0;
  }
  .feature-3d-icon {
    min-width: 54px;
    min-height: 54px;
    margin: 18px 0 0 0;
    font-size: 1.5em;
  }
  .feature-3d-info {
    padding: 12px 6px 0 6px;
  }
}

/* FOOTER */
footer {
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 18px 10px 10px 10px;
  font-size: 1.08em;
  letter-spacing: 0.5px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-top: 32px;
}
.footer-links {
  margin-bottom: 6px;
}
.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #b9f6ca;
  text-decoration: underline;
}
.footer-social {
  margin: 8px 0;
}
.footer-social a {
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
}
.footer-social img {
  width: 22px;
  height: 22px;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: none;
}
.footer-copy {
  font-size: 0.98em;
  color: #e3f0fa;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .about-section, .features-section {
    padding: 18px 6px 14px 6px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
    align-items: flex-start;
  }
  .nav-links {
    gap: 8px;
    margin-top: 6px;
  }
  .welcome-section {
    margin-top: 10px;
    margin-bottom: 10px;
    min-height: 220px;
  }
  .welcome-content {
    padding: 12px 2vw 18px 2vw;
  }
  .roles-row {
    gap: 18px;
  }
  h1 {
    font-size: 1.35em;
  }
  .feature-card {
    min-width: 140px;
    max-width: 100%;
    padding: 14px 6px;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 32;
  }
  .navbar-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    align-items: flex-start;
    padding: 48px 0 0 0;
    box-shadow: 0 4px 32px rgba(46,125,50,0.13);
    border-radius: 0;
    display: none;
    z-index: 25;
    transition: right 0.3s;
  }
  .nav-links.nav-open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
    display: block;
  }
  .nav-links a {
    width: 100%;
    display: block;
    padding: 22px 36px;
    border-radius: 0;
    color: #2e7d32;
    font-size: 1.18em;
    border-bottom: 1px solid #e8f5e9;
    background: none;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.5px;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: #e8f5e9;
    color: #1b5e20;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* Hamburger animation and color when open */
.nav-toggle[aria-expanded="true"] .hamburger {
  background: #fff;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.blog-section {
  max-width: 1200px;
  margin: 56px auto 0 auto;
  padding: 0 24px 48px 24px;
  background: linear-gradient(120deg, #f5f7fa 70%, #e9f5ee 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(25,118,210,0.08);
  position: relative;
}
.blog-title {
  color: #205c2e;
  font-size: 2.3em;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-subtitle {
  color: #388e3c;
  font-size: 1.18em;
  margin-bottom: 38px;
  text-align: center;
  font-style: italic;
  letter-spacing: 0.2px;
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  justify-content: center;
  align-items: stretch;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(46,125,50,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
  min-width: 0;
  animation: fadeInBlog 1s;
}
.blog-card:hover {
  box-shadow: 0 12px 36px rgba(25,118,210,0.18);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}
.blog-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #e8f5e9;
  border-bottom: 1px solid #b9f6ca;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), filter 0.3s;
  display: block;
}
.blog-card:hover .blog-img {
  transform: scale(1.06);
  filter: brightness(0.92);
}
.blog-content {
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.blog-card-title {
  font-size: 1.18em;
  color: #205c2e;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.blog-card-desc {
  color: #205c2e;
  font-size: 1.05em;
  margin-bottom: 18px;
  flex: 1 1 auto;
  line-height: 1.6;
}
.blog-readmore {
  color: #2e7d32;
  font-weight: 700;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
  margin-top: auto;
  display: inline-block;
  letter-spacing: 0.2px;
}
.blog-readmore:hover {
  color: #1976d2;
  text-decoration: underline;
}
@keyframes fadeInBlog {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
@media (max-width: 1100px) {
  .blog-cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .blog-section {
    padding: 0 2vw 18px 2vw;
    border-radius: 12px;
  }
  .blog-title {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
  .blog-subtitle {
    font-size: 1em;
    margin-bottom: 18px;
  }
  .blog-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-card {
    border-radius: 10px;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    flex: none;
  }
  .blog-img {
    height: 120px;
  }
  .blog-content {
    padding: 14px 8px 12px 8px;
  }
}


.testimonial-section {
  background: #f9f9f9;
  max-width: 100vw;
  margin: 0 auto;
  padding: 56px 0 40px 0;
  font-family: 'Poppins', 'Segoe UI', 'Open Sans', Arial, sans-serif;
}
.testimonial-title {
  color: #2e7d32;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.testimonial-cards-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  min-height: 260px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
}
.testimonial-cards {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  width: 100%;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(46,125,50,0.10), 0 1.5px 6px rgba(46,125,50,0.06);
  overflow: hidden;
  max-width: 680px;
  min-width: 0;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  user-select: none;
  cursor: grab;
  padding: 44px 40px 32px 40px;
  text-align: center;
  box-sizing: border-box;
}
.testimonial-card:active {
  cursor: grabbing;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(46,125,50,0.18), 0 2px 8px rgba(46,125,50,0.10);
  transform: translateY(-4px) scale(1.02);
}
.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2e7d32;
  background: #e8f5e9;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(46,125,50,0.08);
}
.testimonial-name {
  font-weight: 700;
  color: #2e7d32;
  font-size: 1.25em;
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}
.testimonial-role {
  color: #388e3c;
  font-size: 1.08em;
  margin-bottom: 14px;
  font-weight: 500;
}
.testimonial-message {
  font-size: 1.18em;
  color: #333;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.7;
}
.testimonial-nav {
  background: #e8f5e9;
  border: none;
  color: #2e7d32;
  font-size: 2em;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 0 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46,125,50,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.testimonial-nav:hover {
  background: #2e7d32;
  color: #fff;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.testimonial-dot {
  width: 16px;
  height: 16px;
  background: #e8f5e9;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #b9f6ca;
  transition: background 0.2s, border 0.2s;
}
.testimonial-dot.active {
  background: #2e7d32;
  border: 2px solid #2e7d32;
}

/* Responsive improvements */
@media (max-width: 900px) {
  .testimonial-cards-wrapper {
    max-width: 98vw;
    min-height: 220px;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: 0;
    width: 98vw;
    margin: 0 4vw;
    padding: 32px 6vw 18px 6vw;
  }
}
@media (max-width: 700px) {
  .testimonial-section {
    padding: 0 2vw 18px 2vw;
    max-width: 100vw;
  }
  .testimonial-title {
    font-size: 1.25em;
    margin-bottom: 18px;
  }
  .testimonial-cards-wrapper {
    width: 100vw;
    min-height: 180px;
    max-width: 100vw;
    padding: 0;
  }
  .testimonial-card {
    border-radius: 10px;
    padding: 16px 2vw 12px 2vw;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    margin: 0;
  }
  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }
  .testimonial-nav {
    width: 34px;
    height: 34px;
    font-size: 1.3em;
  }
  .testimonial-dots {
    gap: 8px;
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .testimonial-section {
    padding: 0 1vw 12px 1vw;
  }
  .testimonial-cards-wrapper,
  .testimonial-card {
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    margin: 0;
  }
}

.stats-section-outer {
  background: linear-gradient(120deg, #e8f5e9 0%, #b9f6ca 100%);
  width: 100vw;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
.stats-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 0 36px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-heading {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: #205c2e;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.stats-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 900px;
  background: rgba(255,255,255,0.82);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(46,125,50,0.10);
  overflow: hidden;
  flex-wrap: wrap;
}
.stat-box {
  flex: 1 1 180px;
  min-width: 160px;
  background: rgba(255,255,255,0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 18px 32px 18px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.stat-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 8px;
  letter-spacing: 1px;
  transition: color 0.2s;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.stat-label {
  font-size: 1.08em;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-top: 2px;
}
.stat-divider {
  width: 2px;
  background: #fff;
  margin: 0;
  border-radius: 2px;
  align-self: stretch;
  display: block;
}
@media (max-width: 900px) {
  .stats-section-inner {
    padding: 36px 0 24px 0;
  }
  .stats-container {
    flex-direction: column;
    max-width: 99vw;
    border-radius: 12px;
  }
  .stat-box {
    padding: 28px 8vw 22px 8vw;
    min-width: 0;
  }
  .stat-divider {
    width: 100%;
    height: 2px;
    min-height: 2px;
    margin: 0;
    background: #fff;
    align-self: stretch;
  }
}
@media (max-width: 600px) {
  .stats-section-inner {
    padding: 24px 0 12px 0;
  }
  .stats-heading {
    font-size: 1.2em;
    margin-bottom: 18px;
  }
  .stat-box {
    padding: 16px 2vw 12px 2vw;
  }
  .stat-number {
    font-size: 2em;
  }
  .stat-label {
    font-size: 1em;
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 1000;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2em;
  box-shadow: 0 4px 18px rgba(46,125,50,0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}
#scrollTopBtn:hover {
  background: #2e7d32;
  color: #fff;
}


.map-section {
  background: #f5f7fa;
  padding: 48px 0 40px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.map-heading {
  text-align: center;
  color: green;
  font-size: 2em;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.map-embed-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(25,118,210,0.10);
  background: #fff;
}
.map-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: none;
}
@media (max-width: 700px) {
  .map-section {
    padding: 28px 0 18px 0;
  }
  .map-heading {
    font-size: 1.2em;
    margin-bottom: 16px;
  }
  .map-embed-wrap {
    border-radius: 8px;
  }
  .map-embed-wrap iframe {
    min-height: 180px;
  }
}

.team-section {
  background: linear-gradient(120deg, #f5f7fa 70%, #e9f5ee 100%);
  padding: 56px 0 36px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.team-heading {
  text-align: center;
  color: green;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.team-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  min-height: 320px;
}
.team-cards-wrapper {
  overflow: hidden;
  width: 720px;
  max-width: 98vw;
  position: relative;
  z-index: 1;
}
.team-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  width: 100%;
  box-sizing: border-box;
}
.team-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(25,118,210,0.10);
  padding: 28px 18px 18px 18px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
  min-width: 180px;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  flex: 1 1 0;
}
.team-nav {
  background: green;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5em;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
}
.team-prev {
  left: -24px;
}
.team-next {
  right: -24px;
}
.team-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive: Place nav buttons at card center on mobile */
@media (max-width: 900px) {
  .team-cards-wrapper {
    width: 98vw;
    max-width: 98vw;
  }
  .team-cards {
    gap: 18px;
  }
  .team-card {
    max-width: 320px;
    width: 60vw;
    margin: 0 auto 18px auto;
    flex: 1 1 0;
  }
  .team-prev {
    left: -10px;
  }
  .team-next {
    right: -10px;
  }
}
@media (max-width: 600px) {
  .team-carousel {
    max-width: 100vw;
    padding: 0 0;
    min-height: 0;
  }
  .team-cards-wrapper {
    width: 100vw;
    max-width: 100vw;
  }
  .team-cards {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .team-card {
    max-width: 98vw;
    min-width: 90vw;
    width: 96vw;
    margin: 0 auto 18px auto;
    padding: 14px 2vw 10px 2vw;
    flex: none;
  }
  .team-nav {
    width: 38px;
    height: 38px;
    font-size: 1.2em;
    top: 50%;
    left: 12px;
    right: 12px;
  }
  .team-prev {
    left: 8px;
    right: auto;
  }
  .team-next {
    right: 8px;
    left: auto;
  }
}
.team-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #2e7d32;
  background: #e0f7fa;
  transition: border-color 0.2s;
}
.team-name {
  font-weight: 700;
  color: #2e7d32;
  font-size: 1.13em;
  margin-bottom: 4px;
}
.team-role {
  color: #388e3c;
  font-size: 1em;
  font-weight: 500;
}
.team-nav {
  background: green;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5em;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 2;
  /* No hover animation */
}
.team-prev {
  left: -24px;
}
.team-next {
  right: -24px;
}
.team-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Modal Styles */
.team-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 350px;
  width: 92vw;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  text-align: center;
  position: relative;
  /* Remove bottom animation */
}
.team-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2em;
  color: #1976d2;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.team-modal-close:hover {
  color: #d32f2f;
}
.team-modal-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #2e7d32;
  background: #e0f7fa;
}
#modalName {
  font-weight: 700;
  color: #2e7d32;
  font-size: 1.18em;
  margin-bottom: 4px;
}
.team-modal-role {
  color: #388e3c;
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 12px;
}
#modalBio {
  color: #205c2e;
  font-size: 1em;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .team-cards-wrapper {
    width: 98vw;
    max-width: 98vw;
  }
  .team-cards {
    gap: 18px;
  }
  .team-card {
    max-width: 320px;
    width: 60vw;
    margin: 0 auto 18px auto;
    flex: 1 1 0;
  }
  .team-prev {
    left: -10px;
  }
  .team-next {
    right: -10px;
  }
}
@media (max-width: 600px) {
  .team-carousel {
    max-width: 100vw;
    padding: 0 0;
  }
  .team-cards-wrapper {
    width: 100vw;
    max-width: 100vw;
  }
  .team-cards {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .team-card {
    max-width: 98vw;
    min-width: 90vw;
    width: 96vw;
    margin: 0 auto 18px auto;
    padding: 14px 2vw 10px 2vw;
    flex: none;
  }
  .team-modal-content {
    padding: 14px 2vw 10px 2vw;
    max-width: 98vw;
    width: 98vw;
    border-radius: 12px;
  }
  .team-modal-img {
    width: 60px;
    height: 60px;
  }
  .team-heading {
    font-size: 1.2em;
    margin-bottom: 18px;
  }
  .team-prev {
    left: 2px;
    right: auto;
  }
  .team-next {
    right: 2px;
    left: auto;
  }
  .team-modal-close {
    top: 6px;
    right: 10px;
    font-size: 1.5em;
  }
}


.events-section {
  background: #e8f5e9;
  padding: 56px 0 44px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.events-heading {
  text-align: center;
  color: #2e7d32;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.events-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.events-tab {
  background: #fff;
  color: #2e7d32;
  font-weight: 700;
  font-size: 1.08em;
  padding: 12px 32px;
  border: none;
  border-radius: 9px 9px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46,125,50,0.08);
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.events-tab.active, .events-tab:focus {
  background: #2e7d32;
  color: #fff;
}
.events-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.event-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(46,125,50,0.10);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 180px;
  overflow-wrap: break-word;
  word-break: break-word;
  transition: box-shadow 0.22s, transform 0.22s;
  animation: fadeInEvent 1s;
}
.event-card:hover {
  box-shadow: 0 12px 32px rgba(46,125,50,0.18);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.event-title {
  font-size: 1.18em;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-meta {
  font-size: 0.98em;
  color: #388e3c;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.event-date, .event-time, .event-location {
  background: #e8f5e9;
  border-radius: 8px;
  padding: 3px 12px;
  font-weight: 600;
  color: #388e3c;
}
.event-desc {
  color: #205c2e;
  font-size: 1.05em;
  margin-bottom: 0;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: left;
}
@keyframes fadeInEvent {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
@media (max-width: 900px) {
  .events-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 2vw;
  }
  .event-card {
    padding: 18px 10px 14px 10px;
    min-height: 120px;
  }
}
@media (max-width: 600px) {
  .events-section {
    padding: 28px 0 18px 0;
  }
  .events-heading {
    font-size: 1.15em;
    margin-bottom: 18px;
  }
  .events-tabs {
    gap: 8px;
    margin-bottom: 12px;
  }
  .events-tab {
    font-size: 1em;
    padding: 8px 12px;
    border-radius: 7px 7px 0 0;
  }
  .events-content {
    padding: 10px 2vw 6px 2vw;
    border-radius: 0 0 10px 10px;
  }
  .event-card {
    padding: 12px 8px 10px 8px;
    min-height: 90px;
  }
}


.gallery-section {
  background: #f5f7fa;
  padding: 56px 0 40px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  text-align: center;
}
.gallery-title {
  color: #388e3c;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.gallery-subtext {
  color: #388e3c;
  font-size: 1.13em;
  margin-bottom: 32px;
  font-style: italic;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 32px auto;
  padding: 0 16px;
}
.gallery-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(25,118,210,0.10);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
  animation: fadeInGallery 1s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.16);
  transform: scale(1.045);
  z-index: 2;
}
.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), filter 0.3s;
  display: block;
  border-radius: 14px 14px 0 0;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
  filter: brightness(0.92);
}
.gallery-img-caption {
  padding: 10px 0 8px 0;
  font-size: 1.08em;
  color: #2e7d32;
  font-weight: 600;
  background: none;
  width: 100%;
  text-align: center;
  border-radius: 0 0 14px 14px;
  letter-spacing: 0.2px;
}
@keyframes fadeInGallery {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.gallery-viewall-btn {
  display: inline-block;
  margin-top: 12px;
  background: #2e7d32;
  color: #fff;
  font-weight: 600;
  font-size: 1.13em;
  padding: 12px 38px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.gallery-viewall-btn:hover {
  background:#2e7d32;
  box-shadow: 0 4px 16px rgba(25,118,210,0.13);
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  .gallery-img {
    height: 120px;
  }
}
@media (max-width: 600px) {
  .gallery-section {
    padding: 28px 0 18px 0;
  }
  .gallery-title {
    font-size: 1.15em;
    margin-bottom: 6px;
  }
  .gallery-subtext {
    font-size: 1em;
    margin-bottom: 14px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 2vw;
  }
  .gallery-img {
    height: 80px;
  }
  .gallery-img-caption {
    font-size: 0.98em;
    padding: 7px 0 6px 0;
  }
  .gallery-viewall-btn {
    font-size: 1em;
    padding: 10px 18px;
    margin-top: 8px;
  }
}


.facilities-section {
  background: #fff;
  padding: 56px 0 40px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  max-width: 1150px;
  margin: 0 auto 56px auto;
}
.facilities-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
  padding: 0 18px;
}
.facilities-label {
  display: inline-block;
  color: #388e3c;
  font-size: 0.98em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.facilities-title {
  color: #222;
  font-size: 2.3em;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
.facilities-underline {
  width: 54px;
  height: 4px;
  background: #388e3c;
  border-radius: 2px;
  margin-bottom: 0;
}
.facilities-viewall-btn {
  margin-left: auto;
  background: #fff;
  color: #388e3c;
  border: 2px solid #388e3c;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(56,142,60,0.04);
  cursor: pointer;
  align-self: flex-start;
}
.facilities-viewall-btn:hover {
  background: #388e3c;
  color: #fff;
  box-shadow: 0 4px 16px rgba(56,142,60,0.13);
}
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 18px;
}
.facility-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(56,142,60,0.08);
  display: flex;
  align-items: stretch;
  min-height: 200px;
  transition: box-shadow 0.22s, transform 0.22s;
  overflow: hidden;
  position: relative;
}
.facility-card:hover {
  box-shadow: 0 12px 32px rgba(56,142,60,0.16);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.facility-img {
  width: 180px;
  min-width: 120px;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 0 0 18px;
  background: #f5f7fa;
  display: block;
}
.facility-info {
  flex: 1 1 0;
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.facility-mini-title {
  color: #388e3c;
  font-size: 0.98em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}
.facility-desc {
  color: #222;
  font-size: 1.08em;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
}
@media (max-width: 1000px) {
  .facilities-section {
    padding: 36px 0 24px 0;
  }
  .facilities-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 4vw;
  }
  .facilities-title {
    font-size: 1.4em;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 4vw;
  }
  .facility-info {
    padding: 18px 18px 14px 18px;
  }
  .facility-img {
    width: 100%;
    max-width: 100vw;
    height: 180px;
    border-radius: 18px 18px 0 0;
  }
  .facility-card {
    flex-direction: column;
    min-height: 0;
    border-radius: 14px;
  }
}
@media (max-width: 600px) {
  .facilities-section {
    padding: 18px 0 10px 0;
  }
  .facilities-header-row {
    padding: 0 2vw;
    margin-bottom: 18px;
  }
  .facilities-title {
    font-size: 1.08em;
    margin-bottom: 4px;
  }
  .facilities-underline {
    width: 34px;
    height: 3px;
  }
  .facilities-grid {
    gap: 12px;
    padding: 0 2vw;
  }
  .facility-card {
    flex-direction: column;
    min-height: 0;
    border-radius: 12px;
  }
  .facility-img {
    width: 100%;
    height: 140px;
    border-radius: 12px 12px 0 0;
  }
  .facility-info {
    padding: 12px 10px 10px 10px;
  }
}


.faq-section {
  max-width: 900px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(60, 90, 120, 0.07);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.faq-header {
  text-align: center;
  margin-bottom: 36px;
}
.faq-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3a8d5d;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
.faq-subtitle {
  font-size: 1.1rem;
  color: #31513f;
  margin-bottom: 2.1em;
}
.faq-search {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.faq-search input {
  width: 100%;
  max-width: 400px;
  padding: 0.7em 1em;
  border: 1.5px solid #c0d6e4;
  border-radius: 14px;
  background: #e7f0fa;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.faq-search input:focus {
  border-color: #31513f;
}
.faq-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.2em;
}
.faq-item {
  background: #eaf7f0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(100,140,130,0.07);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s, transform 0.5s;
  will-change: opacity, transform;
}
.faq-item.visible {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.faq-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1em 1.2em;
  font-size: 1.14rem;
  font-weight: 500;
  color: #3a8d5d;
  background: none;
  outline: none;
  border: none;
  width: 100%;
  transition: background .18s;
  letter-spacing: 0.01em;
}
.faq-question:focus-visible {
  background: #d1e9d9;
}
.faq-icon {
  font-size: 1.5em;
  margin-left: 1em;
  transition: transform 0.3s cubic-bezier(.46,.03,.52,.96), color 0.3s;
  color: #31513f;
  transform: rotate(0deg);
  flex-shrink: 0;
  user-select: none;
  will-change: transform;
}
.faq-item.open .faq-icon {
  transform: rotate(90deg);
  color: #3a8d5d;
}
.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  background: #f5fcf8;
  transition: max-height 0.3s cubic-bezier(.46,.03,.52,.96), padding 0.3s cubic-bezier(.46,.03,.52,.96);
  padding: 0 1.4em;
}
.faq-item.open .faq-answer-wrap {
  padding: 0.9em 1.4em 1em 1.4em;
  max-height: 400px;
}
.faq-answer {
  color: #31513f;
  font-size: 1.04rem;
  line-height: 1.65;
  margin: 0;
  user-select: text;
}
.faq-bottom-msg {
  text-align: center;
  font-size: 1.07rem;
  color: #506870;
  padding-top: 1.1em;
  border-top: 1px solid #e4eaea;
}
.faq-bottom-msg a {
  color: #4176d4;
  text-decoration: underline;
  word-break: break-all;
}
.faq-question:focus {
  outline: 2px solid #4176d4;
  z-index: 2;
  position: relative;
}
@media (max-width: 600px) {
  .faq-section {
    padding: 1.3rem 0.2rem 1.2rem 0.2rem;
  }
  .faq-title {
    font-size: 1.45rem;
  }
  .faq-answer {
    font-size: 0.99rem;
  }
}



.features-section-3d {
  background: linear-gradient(120deg, #eaf7f0 0%, #e0f2f1 100%);
  padding: 80px 0 60px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  max-width: 1300px;
  margin: 0 auto 64px auto;
  border-radius: 32px;
  box-shadow: 0 12px 48px 0 rgba(67,206,162,0.13), 0 1.5px 0 #2e7d32;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}
.features-section-3d::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2e7d32 0%, transparent 70%);
  opacity: 0.14;
  z-index: 0;
}
.features-3d-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.features-3d-label {
  display: inline-block;
  color: #2e7d32;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.features-3d-title {
  color: #2e7d32;
  font-size: 2.7em;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  text-shadow: 0 4px 24px #2e7d32a0;
}
.features-3d-underline {
  width: 64px;
  height: 5px;
  background: linear-gradient(90deg,#2e7d32,#2e7d32);
  border-radius: 3px;
  margin: 0 auto 0 auto;
}
.features-3d-subtitle {
  color: #388e3c;
  font-size: 1.18em;
  margin-top: 18px;
  font-style: italic;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px #fff;
}
.features-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.feature-3d-card {
  background: rgba(255,255,255,0.22);
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(67,206,162,0.13), 0 1.5px 0 #2e7d32;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  border: none;
  padding: 0 0 24px 0;
  transform-style: preserve-3d;
  transition: box-shadow 0.32s, transform 0.32s, background 0.22s;
  will-change: transform, box-shadow;
  animation: fadeInFeature3D 1.1s cubic-bezier(.46,.03,.52,.96);
}
.feature-3d-card:hover, .feature-3d-card:focus {
  box-shadow: 0 24px 64px 0 #2e7d32a0, 0 1.5px 0 #2e7d32;
  transform: translateY(-12px) scale(1.04) rotateY(8deg) rotateX(2deg);
  background: rgba(255,255,255,0.28);
  z-index: 2;
}
.feature-3d-glass {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: linear-gradient(120deg,rgba(255,255,255,0.38) 0%,rgba(255,255,255,0.08) 100%);
  box-shadow: 0 2px 24px 0 rgba(67,206,162,0.09);
  pointer-events: none;
  z-index: 1;
  filter: blur(0.5px);
}
.feature-3d-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6em;
  color: #fff;
  margin: 38px 0 0 0;
  box-shadow: 0 2px 18px rgba(67,206,162,0.13);
  border: 4px solid #fff;
  z-index: 2;
  transition: box-shadow 0.22s, background 0.22s, color 0.22s;
  position: relative;
}
.feature-3d-card:hover .feature-3d-icon {
  box-shadow: 0 8px 32px #2e7d32a0;
  background: linear-gradient(135deg,#2e7d32,#2e7d32);
  color: #fff;
}
.feature-3d-info {
  flex: 1 1 0;
  padding: 28px 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  z-index: 2;
}
.feature-3d-mini-title {
  color: #2e7d32;
  font-size: 1.08em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  text-shadow: 0 2px 8px #2e7d32a0;
}
.feature-3d-desc {
  color: #232b2b;
  font-size: 1.13em;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 2px 8px #fff;
}
@keyframes fadeInFeature3D {
  from { opacity: 0; transform: translateY(60px) scale(0.95) rotateY(-12deg);}
  to { opacity: 1; transform: none;}
}
@media (max-width: 1100px) {
  .features-3d-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 4vw;
  }
  .feature-3d-info {
    padding: 18px 12px 0 12px;
  }
}
@media (max-width: 700px) {
  .features-section-3d {
    padding: 24px 0 10px 0;
    border-radius: 18px;
  }
  .features-3d-header {
    margin-bottom: 18px;
  }
  .features-3d-title {
    font-size: 1.18em;
    margin-bottom: 4px;
  }
  .features-3d-underline {
    width: 34px;
    height: 3px;
  }
  .features-3d-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 2vw;
  }
  .feature-3d-card {
    min-height: 0;
    border-radius: 14px;
    padding: 0 0 14px 0;
  }
  .feature-3d-icon {
    min-width: 54px;
    min-height: 54px;
    margin: 18px 0 0 0;
    font-size: 1.5em;
  }
  .feature-3d-info {
    padding: 12px 6px 0 6px;
  }
}



.features-section-3d {
  background: linear-gradient(120deg, #eaf7f0 0%, #e0f2f1 100%);
  padding: 80px 0 60px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  max-width: 1300px;
  margin: 0 auto 64px auto;
  border-radius: 32px;
  box-shadow: 0 12px 48px 0 rgba(67,206,162,0.13), 0 1.5px 0 #2e7d32;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}
.features-section-3d::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2e7d32 0%, transparent 70%);
  opacity: 0.14;
  z-index: 0;
}
.features-3d-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.features-3d-label {
  display: inline-block;
  color: #2e7d32;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.features-3d-title {
  color: #2e7d32;
  font-size: 2.7em;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  text-shadow: 0 4px 24px #2e7d32a0;
}
.features-3d-underline {
  width: 64px;
  height: 5px;
  background: linear-gradient(90deg,#2e7d32,#2e7d32);
  border-radius: 3px;
  margin: 0 auto 0 auto;
}
.features-3d-subtitle {
  color: #388e3c;
  font-size: 1.18em;
  margin-top: 18px;
  font-style: italic;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px #fff;
}
.features-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.feature-3d-card {
  background: rgba(255,255,255,0.22);
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(67,206,162,0.13), 0 1.5px 0 #2e7d32;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  border: none;
  padding: 0 0 24px 0;
  transform-style: preserve-3d;
  transition: box-shadow 0.32s, transform 0.32s, background 0.22s;
  will-change: transform, box-shadow;
  animation: fadeInFeature3D 1.1s cubic-bezier(.46,.03,.52,.96);
}
.feature-3d-card:hover, .feature-3d-card:focus {
  box-shadow: 0 24px 64px 0 #2e7d32a0, 0 1.5px 0 #2e7d32;
  transform: translateY(-12px) scale(1.04) rotateY(8deg) rotateX(2deg);
  background: rgba(255,255,255,0.28);
  z-index: 2;
}
.feature-3d-glass {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: linear-gradient(120deg,rgba(255,255,255,0.38) 0%,rgba(255,255,255,0.08) 100%);
  box-shadow: 0 2px 24px 0 rgba(67,206,162,0.09);
  pointer-events: none;
  z-index: 1;
  filter: blur(0.5px);
}
.feature-3d-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6em;
  color: #fff;
  margin: 38px 0 0 0;
  box-shadow: 0 2px 18px rgba(67,206,162,0.13);
  border: 4px solid #fff;
  z-index: 2;
  transition: box-shadow 0.22s, background 0.22s, color 0.22s;
  position: relative;
}
.feature-3d-card:hover .feature-3d-icon {
  box-shadow: 0 8px 32px #2e7d32a0;
  background: linear-gradient(135deg,#2e7d32,#2e7d32);
  color: #fff;
}
.feature-3d-info {
  flex: 1 1 0;
  padding: 28px 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  z-index: 2;
}
.feature-3d-mini-title {
  color: #2e7d32;
  font-size: 1.08em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  text-shadow: 0 2px 8px #2e7d32a0;
}
.feature-3d-desc {
  color: #232b2b;
  font-size: 1.13em;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 2px 8px #fff;
}
@keyframes fadeInFeature3D {
  from { opacity: 0; transform: translateY(60px) scale(0.95) rotateY(-12deg);}
  to { opacity: 1; transform: none;}
}
@media (max-width: 1100px) {
  .features-3d-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 4vw;
  }
  .feature-3d-info {
    padding: 18px 12px 0 12px;
  }
}
@media (max-width: 700px) {
  .features-section-3d {
    padding: 24px 0 10px 0;
    border-radius: 18px;
  }
  .features-3d-header {
    margin-bottom: 18px;
  }
  .features-3d-title {
    font-size: 1.18em;
    margin-bottom: 4px;
  }
  .features-3d-underline {
    width: 34px;
    height: 3px;
  }
  .features-3d-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 2vw;
  }
  .feature-3d-card {
    min-height: 0;
    border-radius: 14px;
    padding: 0 0 14px 0;
  }
  .feature-3d-icon {
    min-width: 54px;
    min-height: 54px;
    margin: 18px 0 0 0;
    font-size: 1.5em;
  }
  .feature-3d-info {
    padding: 12px 6px 0 6px;
  }
}



.gallery-section {
  background: #f5f7fa;
  padding: 56px 0 40px 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  text-align: center;
}
.gallery-title {
  color: #388e3c;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.gallery-subtext {
  color: #388e3c;
  font-size: 1.13em;
  margin-bottom: 32px;
  font-style: italic;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 32px auto;
  padding: 0 16px;
}
.gallery-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(25,118,210,0.10);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
  animation: fadeInGallery 1s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.16);
  transform: scale(1.045);
  z-index: 2;
}
.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), filter 0.3s;
  display: block;
  border-radius: 14px 14px 0 0;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
  filter: brightness(0.92);
}
.gallery-img-caption {
  padding: 10px 0 8px 0;
  font-size: 1.08em;
  color: #2e7d32;
  font-weight: 600;
  background: none;
  width: 100%;
  text-align: center;
  border-radius: 0 0 14px 14px;
  letter-spacing: 0.2px;
}
@keyframes fadeInGallery {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.gallery-viewall-btn {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(90deg, #1976d2 0%, #2e7d32 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.13em;
  padding: 12px 38px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.gallery-viewall-btn:hover {
  background: linear-gradient(90deg, #1565c0 0%, #2e7d32 100%);
  box-shadow: 0 4px 16px rgba(25,118,210,0.13);
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  .gallery-img {
    height: 120px;
  }
}
@media (max-width: 600px) {
  .gallery-section {
    padding: 28px 0 18px 0;
  }
  .gallery-title {
    font-size: 1.15em;
    margin-bottom: 6px;
  }
  .gallery-subtext {
    font-size: 1em;
    margin-bottom: 14px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 2vw;
  }
  .gallery-img {
    height: 80px;
  }
  .gallery-img-caption {
    font-size: 0.98em;
    padding: 7px 0 6px 0;
  }
  .gallery-viewall-btn {
    font-size: 1em;
    padding: 10px 18px;
    margin-top: 8px;
  }
}


.faq-section {
  max-width: 900px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(60, 90, 120, 0.07);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.faq-header {
  text-align: center;
  margin-bottom: 36px;
}
.faq-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
.faq-subtitle {
  font-size: 1.1rem;
  color: #388e3c;
  margin-bottom: 2.1em;
}
.faq-search {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.faq-search input {
  width: 100%;
  max-width: 400px;
  padding: 0.7em 1em;
  border: 1.5px solid #b9f6ca;
  border-radius: 14px;
  background: #e7f0fa;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.faq-search input:focus {
  border-color: #2e7d32;
}
.faq-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.2em;
}
.faq-item {
  background: #eaf7f0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(67,206,162,0.07);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s, transform 0.5s;
  will-change: opacity, transform;
}
.faq-item.visible {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.faq-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1em 1.2em;
  font-size: 1.14rem;
  font-weight: 500;
  color: #2e7d32;
  background: none;
  outline: none;
  border: none;
  width: 100%;
  transition: background .18s;
  letter-spacing: 0.01em;
}
.faq-question:focus-visible {
  background: #d1e9d9;
}
.faq-icon {
  font-size: 1.5em;
  margin-left: 1em;
  transition: transform 0.3s cubic-bezier(.46,.03,.52,.96), color 0.3s;
  color: #388e3c;
  transform: rotate(0deg);
  flex-shrink: 0;
  user-select: none;
  will-change: transform;
}
.faq-item.open .faq-icon {
  transform: rotate(90deg);
  color: #2e7d32;
}
.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  background: #f5fcf8;
  transition: max-height 0.3s cubic-bezier(.46,.03,.52,.96), padding 0.3s cubic-bezier(.46,.03,.52,.96);
  padding: 0 1.4em;
}
.faq-item.open .faq-answer-wrap {
  padding: 0.9em 1.4em 1em 1.4em;
  max-height: 400px;
}
.faq-answer {
  color: #205c2e;
  font-size: 1.04rem;
  line-height: 1.65;
  margin: 0;
  user-select: text;
}
.faq-bottom-msg {
  text-align: center;
  font-size: 1.07rem;
  color: #388e3c;
  padding-top: 1.1em;
  border-top: 1px solid #e4eaea;
}
.faq-bottom-msg a {
  color: #2e7d32;
  text-decoration: underline;
  word-break: break-all;
}
.faq-question:focus {
  outline: 2px solid #2e7d32;
  z-index: 2;
  position: relative;
}
@media (max-width: 600px) {
  .faq-section {
    padding: 1.3rem 0.2rem 1.2rem 0.2rem;
  }
  .faq-title {
    font-size: 1.45rem;
  }
  .faq-answer {
    font-size: 0.99rem;
  }
}


