@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }
}

/* =========================
   FLOATING SOCIAL BUTTON
========================= */
.floating-social {
  position: fixed;
  bottom: 17%;
  right: 2%;
  z-index: 9999;
}

.social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.social-link {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

/* Mobile responsive for floating icons */
@media (max-width: 480px) {
  .floating-social {
    bottom: 15%;
    right: 3%;
  }
  .social-link {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* =========================
   SCROLL TO TOP BUTTON
========================= */
.scrollToTop {
  position: fixed;
  bottom: 5%;
  right: 3%;
  background: #2F622C;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.scrollToTop:hover {
  background: #4CAF50;
}

/* =========================
   SERVICE CARD
========================= */
.service-card {
  background: white;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background-color: #F5F9F5;
  padding: 15px;
  border-bottom: 2px solid #AFC9AD;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 1.2rem;
  color: #2F622C;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-content p {
  color: #333;
  font-size: 0.95rem;
  margin: 0;
}

/* =========================
   HEADER SECTION
========================= */
.vs-header {
  width: 100%;
  background-color: #fff;
  position: fixed;
}

.header-top {
  background-color: #2F622C;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.header-top a {
  color: white;
  text-decoration: none;
}

.header-top .fa {
  margin-right: 6px;
}

/* Header Links alignment */
.header-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-links ul li {
  margin-right: 20px;
}

.header-links a:hover {
  text-decoration: underline;
}

/* Sticky Header */
.sticky-wrap {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-logo img {
  height: 100px;
  width: auto;
  transition: all 0.3s ease;
}

/* Menu */
.main-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-menu a {
  color: #2F622C;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: #194d19;
}

/* Mobile menu */
.vs-menu-toggle {
  background: none;
  border: none;
  font-size: 26px;
  color: #2F622C;
  cursor: pointer;
}

.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 12px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 10000;
}

.vs-menu-wrapper.active {
  left: 0;
}

.vs-menu-area {
  padding: 20px;
}

.vs-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vs-mobile-menu li {
  border-bottom: 1px solid #eee;
}

.vs-mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #2F622C;
  text-decoration: none;
  font-weight: 500;
}

.vs-mobile-menu a:hover {
  color: #1a4b18;
}

/* Header Responsive */
@media (max-width: 992px) {
  .main-menu {
    display: none;
  }
  .vs-menu-toggle {
    display: block;
  }
  .header-logo img {
    height: 90px;
  }
  .header-top .header-links {
    text-align: center;
    margin-right:5%;
  }
  .header-links ul {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .header-top { font-size: 13px; }
  .header-logo img { height: 80px; }
}

/* =========================
   LAYERSLIDER FIXED STYLES
========================= */
.my-slider {
  position: relative;
  overflow: hidden;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(47, 98, 44, 0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 26px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s ease;
}

.slide-btn.left { left: 20px; }
.slide-btn.right { right: 20px; }

.slide-btn:hover { background-color: #2F622C; }

.slide-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #7ED957;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  line-height: 1.2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.slide-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: #7ED957;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.slide-btn-cta {
  display: inline-block;
  position: absolute;
  top: 500px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2F622C;
  color: #fff;
  padding: 12px 35px;
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  z-index: 10;
  transition: 0.3s;
}

.slide-btn-cta:hover { background-color: #4CAF50; }

/* Slide positions */
.slide1-title1, .slide2-title1, .slide3-title1 { top: 250px; font-size: 60px; }
.slide1-title2, .slide2-title2, .slide3-title2 { top: 330px; font-size: 60px; }
.slide1-desc, .slide2-desc, .slide3-desc { top: 410px; font-size: 18px; }

/* Responsive for Tablets */
@media (max-width: 991px) {
  .slide-title { font-size: 45px !important; }
  .slide-desc { font-size: 16px !important; }
  .slide-btn-cta { top: 450px; padding: 10px 25px; font-size: 16px; }
}

/* Responsive for Mobile */
@media (max-width: 575px) {
  .slide-title { font-size: 30px !important; top: 200px !important; }
  .slide-desc { font-size: 14px !important; top: 280px !important; }
  .slide-btn-cta { top: 350px; padding: 8px 20px; font-size: 14px; }
}

/* === Visibility Fix === */
/*.ls-slide, .ls-wrapper, .vs-hero-carousel {*/
/*  position: relative !important;*/
/*}*/

.ls-slide img.ls-bg {
  position: relative !important;
  z-index: 1 !important;
  width: 100%;
  height: auto;
}

.ls-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.slide-title, .slide-desc, .slide-btn-cta {
  position: relative !important;
  z-index: 5 !important;
}

/* Mobile overlay darker for visibility */
@media (max-width: 575px) {
  .ls-slide::before {
    background: rgba(0, 0, 0, 0.4);
  }
}

/* =========================
   FOOTER SECTION
========================= */
.footer-wrapper {
  background-color: #2F622C;
  color: white;
  font-family: "Poppins", sans-serif;
}

.footer-widget h3, .widget_title {
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 20px;
}

.footer-text, .footer-info, .map-link {
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

.footer-widget img {
  display: block;
  margin: 0 auto 15px;
}

.footer-widget h3.mt-n2 {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.menu li { margin-bottom: 6px; }

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.menu li a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Footer social icons */
.footer-social { text-align: center; }

.social-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background-color: #AFC9AD;
  color: #2F622C;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon-box span {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2F622C;
  transition: color 0.3s ease;
}

.social-icon-box:hover {
  background-color: #2F622C;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.social-icon-box:hover span { color: #fff; }

/* Copyright */
.copyright-wrap {
  background-color: #2F622C;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.copyright-wrap p {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.copyright-wrap a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

/* Footer responsive */
@media (max-width: 991px) {
  .footer-widget img { height: 120px; margin: 0 auto 10px; }
  .menu { text-align: center; }
  .menu li { display: inline-block; margin: 5px 10px; }
  .menu li a { font-size: 14px; }
}

@media (max-width: 576px) {
  .social-icon-box { width: 65px; height: 65px; font-size: 18px; }
  .social-icon-box span { font-size: 11px; }
  .footer-widget img { height: 100px; }
  .footer-wrapper { padding-bottom: 30px; }
}
