/*
Theme Name: SabjiBagicha
Theme URI: https://sabjibagicha.com
Author: Rahul Vyavhare
Author URI: https://sabjibagicha.com
Description: Custom theme for terrace organic vegetable farming.
Version: 1.3
License: GNU GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sabjibagicha
*/

/* =========================================================
   Base + Variables
========================================================= */
:root{
  --green-900:#015c28;
  --green-800:#145731;
  --green-600:#1bbf75;
  --green-300:#3ec97b;
  --mint-200:#a1f7e5;
  --mint-100:#d9fff3;
  --text:#145731;
  --bg:#ffffff;
  --shadow:0 8px 18px rgba(0,0,0,0.08);
  --radius:15px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Poppins", Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.container{
  width:100%;
  max-width:1100px;
  margin-inline:auto;
  padding-inline:16px;
}

/* Spacing helpers */
.section{padding:48px 0}
.mt-0{margin-top:0!important}
.mb-0{margin-bottom:0!important}

/* Buttons base (used by hero + service) */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, color .2s ease;
  cursor:pointer;
}
.btn:focus-visible{outline:3px solid #99e6c6; outline-offset:2px}





:root {
  --green-900: #015c28;
  --green-800: #145731;
  --green-600: #1bbf75;
  --green-300: #3ec97b;
}





/* =============================== Header ================================ */
header {
  background: linear-gradient(90deg, rgba(217, 250, 250, 1) 5%, rgba(220, 252, 252, 1) 25%);
  padding: 10px 0; /* Compact height */
  position: sticky;
  top: 0;
  z-index: 1200;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* =============================== Logo (Image + Text) ================================ */
.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  max-height: 50px; /* Control logo size */
  width: auto;
  display: block;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
background: linear-gradient(90deg,rgba(4, 87, 70, 1) 8%, rgba(60, 145, 134, 1) 24%, rgba(21, 105, 97, 1) 44%, rgba(11, 112, 107, 1) 63%, rgba(37, 122, 122, 1) 78%, rgba(49, 143, 133, 1) 100%);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s linear infinite;
}

/* Animation for gradient movement */
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}


/* =============================== Desktop Menu ================================ */
.primary-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.primary-menu li a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}

/* =============================== Hamburger Button (Mobile) ================================ */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1201;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--green-800);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================== Overlay ================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =============================== Mobile Navigation ================================ */
@media (max-width: 768px) {
  header .container {
    justify-content: flex-start;
    gap: 12px;
  }

  .hamburger {
    display: flex;
    order: 1;
  }

  .logo {
    order: 2;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .logo img {
    max-height: 42px;
  }

  .primary-menu {
    order: 3;
    flex-direction: column;
    gap: 15px;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 260px;
    background: transparent !important;
    padding: 80px 20px 20px;
    z-index: 1101;
    transition: left 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: none;
  }

  .primary-menu.active {
    left: 0;
    opacity: 1;
  }

  .primary-menu li a {
    color: #034234 !important; /* White text better lagega dark background pe */
    background: linear-gradient(90deg,rgba(222, 255, 250, 1) 8%, rgba(219, 255, 252, 1) 50%, rgba(217, 255, 251, 1) 100%) !important;
    padding: 14px 18px;
    font-size: 18px;
    border-radius: 14px;
    border: 2px solid #51C4C4;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 600;
    transition: transform 0.28s ease, background 0.45s ease, box-shadow 0.28s ease;
}




  .primary-menu li a:hover {
    background: linear-gradient(90deg, rgba(227, 252, 252, 1) 48%, rgba(230, 250, 255, 1) 73%) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(2, 79, 36, 0.25);
    border-color: #045e55;
  }
}

/* =============================== Prevent scroll when mobile menu open ================================ */
body.no-scroll {
  overflow: hidden;
}








/* =========================================================
   Home Banner (Header ke neeche)
========================================================= */
.home-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  height: auto; /* Let content define height */
  position: relative; /* Ensure overlay or inner elements are positioned correctly */
}

/* Banner Image */
.home-banner img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  object-fit: cover; /* Cover works better if height is set */
  max-height: 80vh; /* Optional: prevent image from being too tall on mobile */
}

/* Optional: overlay text */
.banner-text {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-banner {
    height: auto; /* Ensure banner height adjusts to content */
  }
  .home-banner img {
    max-height: 60vh; /* Adjust banner height for tablets/mobile */
  }
}

@media (max-width: 480px) {
  .home-banner img {
    max-height: 50vh; /* Adjust for small mobile screens */
  }
}


/* =========================
   Services Grid
========================= */
.services-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  justify-content: center;
  justify-items: center;
}

/* Only desktop me 4th & 5th card adjust hoga */
@media (min-width: 993px) {
  .services-grid .service-card:nth-child(4) {
    grid-column: 2 / 3;
  }
  .services-grid .service-card:nth-child(5) {
    grid-column: 3 / 4;
  }
}

/* Service Card */
.services-grid .service-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(145deg, #e6fff4, #d4f6e3);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08),
              0 12px 24px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.services-grid .service-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(27,191,117,0.12) 0%, transparent 70%);
  transform: rotate(25deg);
  z-index: 0;
}

/* Hover */
.services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12),
              0 18px 36px rgba(27,191,117,0.3);
}


 


/* Content */
.services-grid .service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #015c28;
  position: relative;
  z-index: 1;
}

.services-grid .service-card p {
  font-size: 1rem;
  color: #015c28;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* More Info Button */
.more-info-btn {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  background: linear-gradient(90deg,#054b4f 7%,#055559 25%,#094d4f 73%,#064a47 92%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.more-info-btn:hover {
  background: linear-gradient(90deg, #0c9170, #015c28);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* =========================
   Pricing Section
========================= */
.pricing-section {
  margin-top: 80px;
  text-align: center;
}




/* Only target Our Services heading */
.page-title {
  font-size: 2rem;
  color: #034234; /* Text dark green for contrast */
  background: linear-gradient(
    90deg,
    rgba(215, 247, 242, 1) 0%,
    rgba(235, 250, 250, 1) 50%,
    rgba(215, 247, 242, 1) 100%
  );
  padding: 16px 0; /* top-bottom padding */
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-image: linear-gradient(
    90deg,
    rgba(14, 105, 91, 1) 8%,
    rgba(42, 145, 132, 1) 27%,
    rgba(46, 143, 131, 1) 54%,
    rgba(42, 145, 132, 1) 81%,
    rgba(14, 105, 91, 1) 100%
  ) 1;
  border-left: none;
  border-right: none;
  text-align: center;
  width: 100%; /* full width */
  display: block;
  margin: 0 auto 30px auto; /* spacing below heading */
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
  box-sizing: border-box; /* ensures padding fits screen */
}




.pricing-section h2 {
  font-size: 2rem;
  color: #034234; /* Text dark green for contrast */
background: linear-gradient(90deg,rgba(215, 247, 242, 1) 0%, rgba(235, 250, 250, 1) 50%, rgba(215, 247, 242, 1) 100%);
  padding: 16px 0; /* top-bottom padding, left-right auto because full width */
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-image: linear-gradient(
    90deg,
    rgba(14, 105, 91, 1) 8%,
    rgba(42, 145, 132, 1) 27%,
    rgba(46, 143, 131, 1) 54%,
    rgba(42, 145, 132, 1) 81%,
    rgba(14, 105, 91, 1) 100%
  ) 1;
  border-left: none;
  border-right: none;
  text-align: center;
  width: 100%; /* full width */
  display: block;
  margin: 0 auto 30px auto; /* spacing below heading */
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
  box-sizing: border-box; /* ensures padding fits screen */
}



.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.pricing-card {
  background: linear-gradient(145deg, #e0f6eb, #c9f4df);
  border-radius: 18px;
  padding: 32px 26px;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.pricing-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 28px rgba(27,191,117,0.3);
}

.pricing-card h3 {
  color: #015c28;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.pricing-card p {
  color: #015c28;
  font-size: 1rem;
}

/* Popup Overlay Fix */
#popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popup-overlay.active {
  display: flex; /* ✅ class add hote hi active ho jayega */
}

#popup-overlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  object-fit: contain;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}


/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr; /* Mobile: 1 column */
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}




/* ===============================
   Reviews Cards with Images
=============================== */
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.review-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--green-600);
}
.review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}
.review-card span {
  font-weight: 700;
  color: var(--green-800);
}

/* ===============================
   Featured Testimonial Section
=============================== */
.testimonial-section {
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #e0f6eb, #bdfff1);
  border-radius: 25px;
  text-align: center;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-600);
}
.testimonial-author span {
  font-weight: 700;
  color: var(--green-900);
}



/* Responsive for Review/Testimonial */
@media(max-width: 768px){
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    width: 90%;
  }
}




/* =========================================================
   Image Modal
========================================================= */
.image-modal{
  display:none;position:fixed;z-index:2000;inset:0;
  background:rgba(0,0,0,.7);justify-content:center;align-items:center;padding:20px
}
.image-modal.active{display:flex}
.image-modal img{
  max-width:90%;max-height:80%;border-radius:10px;box-shadow:0 8px 20px rgba(0,0,0,.5)
}
.image-modal .close-btn{
  position:absolute;top:20px;right:30px;font-size:18px;color:#fff;
  background:#c21d36;padding:8px 14px;border-radius:30px;cursor:pointer;font-weight:600;transition:all .3s;z-index:2100;line-height:1
}
.image-modal .close-btn:hover{background:var(--green-600)}


/* =========================================================
   Footer
========================================================= */
footer {
  background: linear-gradient(90deg,rgba(5, 97, 97, 1) 5%, rgba(0, 92, 92, 1) 25%);

  padding: 20px;
  text-align: center;
  color: #ffffff; /* Default text color */
  font-family: 'Poppins', sans-serif;
}

/* Footer ke andar sabhi headings aur paragraphs */
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p,
footer span,
footer div {
  color: #ffffff !important;
  margin: 5px 0;
}

/* Footer links */
footer a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #ffeb3b; /* hover par yellow */
}

/* Agar list use ho rahi hai footer me */
footer ul,
footer ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer li {
  color: #ffffff;
  margin: 5px 0;
}



/* =========================================================
   WordPress Core helpers (alignment, images)
========================================================= */
.alignwide{max-width:min(1200px, 92%);margin-inline:auto}
.alignfull{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}
.wp-caption{text-align:center}
.wp-caption-text{font-size:.9rem;color:#666}
figure{margin:0}
img[class*="wp-image-"]{height:auto}

/* =========================================================
   Tables, Lists (optional polish)
========================================================= */
table{width:100%;border-collapse:collapse;margin:16px 0;font-size:15px}
th,td{border:1px solid #e7f6ee;padding:10px;text-align:left}
th{background:#f4fffa}

/* =========================================================
   Responsive
========================================================= */

/* Tablets and down */
@media (max-width: 1024px){
  .banner-text h1{font-size:2.1rem}
  .hero{padding:48px 16px}
}

/* <= 768px */
@media (max-width: 768px){
  header .container{flex-direction:row;justify-content:space-between}
  .menu-toggle{display:block;order:-1;z-index:1005}
  .logo{flex:1;text-align:center}

  /* ✅ collapsed nav (fixed) */
  .primary-menu{
    display:none;
    flex-direction:column;
    gap:12px;
    position:absolute;
    top:60px;
    left:0;
    right:0;
    width:100%;
    padding:12px 16px;
    background: transparent;
    z-index:1101;
  }
  .primary-menu li a{background:#78e3bf;color:#fff}

  .primary-menu.active{display:flex}

  /* grids stack */
  .services-grid,.reviews-grid{grid-template-columns:1fr}

  /* contact width */
  .contact-form{width:92%}

  /* hero */
  .hero{padding:40px 15px}
  .hero h2{font-size:1.8rem}
  .hero p{font-size:1rem}
  .hero .btn{font-size:16px;padding:12px 18px}
}

/* <= 480px (small phones) */
@media (max-width: 480px){
  .logo a{font-size:26px}
  .banner-text h1{font-size:1.7rem}
  .banner-text p{font-size:1rem}
  .page-title{font-size:1.5rem;margin-top:36px;margin-bottom:22px}
  .service-card-image{padding:18px 14px}
  .primary-menu li a{padding:10px;font-size:16px}
  .service-card,.review-card{padding:15px;font-size:15px}
  .contact-form input,.contact-form textarea{font-size:14px;padding:10px}
  .contact-form button{font-size:15px;padding:10px}
}

/* <= 360px (very small devices) */
@media (max-width: 360px){
  .hero h2{font-size:1.6rem}
  .hero .btn{width:100%;text-align:center}
}

/* =========================================================
   Utilities (optional but handy)
========================================================= */
.hide{display:none!important}
.text-center{text-align:center}
.max-w-prose{max-width:720px;margin-inline:auto}






/* =========================================================
   Team Section
========================================================= */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 60px;
  justify-content: center;
}

.team-card {
  background: rgba(255, 255, 255, 0.9); /* Glassy effect */
  backdrop-filter: blur(10px);
  border-radius: 25px;
  text-align: center;
  padding: 35px 25px;
  width: 280px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #3ec97b, #145731);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.team-card:hover::before {
  opacity: 0.15; /* subtle decorative glow */
}

.team-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.team-img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.team-img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #3ec97b;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  border-color: #145731;
}

.team-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #145731;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.team-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Optional: social icons under team member */
.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #3ec97b;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #145731;
  transform: scale(1.2);
}

/* =========================================================
   Mobile Responsive
========================================================= */
@media (max-width: 768px) {
  .team-card {
    width: 90%;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}




/* Locations Section */
.locations-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #e0f6eb, #bdfff1);
  border-radius: 20px;
  margin-top: 60px;
}

.locations-section .subtitle {
  font-size: 1.1rem;
  color: #145731;
  margin-bottom: 40px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  justify-items: center;
}

.location-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #145731;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.location-card:hover::before {
  opacity: 0.1;
}

.location-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.location-card span {
  position: relative;
  z-index: 1;
}


/* About Section */
.about-section {
  padding: 80px 20px;
  background: #f0fff8;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-image {
  flex: 1 1 400px;
  text-align: center;
}
.about-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.about-image img:hover {transform: scale(1.05);}
.about-content {
  flex: 1 1 500px;
}
.about-content h2 {font-size: 2.2rem; margin-bottom: 20px; font-weight: 700;}
.about-content h3 {font-size: 1.4rem; color: #3ec97b; margin-top: 20px; margin-bottom: 10px; font-weight: 600;}
.about-content p {font-size: 1rem; color: #333; line-height: 1.7; margin-bottom: 12px;}
/* Responsive */
@media(max-width: 768px){
  .about-container {flex-direction: column;}
  .about-image, .about-content {flex: 1 1 100%;}
  .about-content h2 {font-size: 1.8rem;}
}
/* Locations Grid */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.location-card {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.location-card:hover {
  background: #2bb36c;
}

/* Tooltip */
#tooltip {
  position: absolute;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
  pointer-events: none;
  z-index: 1000;
}

/* =========================================================
   Premium Continuous Animation for Location Cards
========================================================= */
@keyframes float-scale {
  0%   { transform: translateY(0px) scale(1); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
  50%  { transform: translateY(-12px) scale(1.03); box-shadow: 0 18px 35px rgba(0,0,0,0.15); }
  100% { transform: translateY(0px) scale(1); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
}

.location-card {
  animation: float-scale 4s ease-in-out infinite;
  transition: background 0.3s, color 0.3s;
}

/* Stagger animation delay for natural movement */
.location-card:nth-child(1) { animation-delay: 0s; }
.location-card:nth-child(2) { animation-delay: 0.5s; }
.location-card:nth-child(3) { animation-delay: 1s; }
.location-card:nth-child(4) { animation-delay: 1.5s; }
.location-card:nth-child(5) { animation-delay: 2s; }
.location-card:nth-child(6) { animation-delay: 2.5s; }
.location-card:nth-child(7) { animation-delay: 3s; }

/* Hover effect stays on top of animation */
.location-card:hover {
  transform: translateY(-15px) scale(1.05) !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25) !important;
  background: linear-gradient(45deg, #3ec97b, #145731);
}








/* ==== Hero Section ==== */
.reviews-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #e0f6eb, #bdfff1);
  color: white;
  border-radius: 12px;
  margin-bottom: 40px;
}
.reviews-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ==== Rating Summary ==== */
.rating-summary {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 200px;
  max-width: 280px;
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
}

/* ==== Reviews Grid (Static + Dynamic Plugin) ==== */
.reviews-grid {
  margin: 40px 0;
}
.reviews-grid h2 {
  font-size: 2rem;
  color: #034234; /* Text dark green for contrast */
background: linear-gradient(90deg,rgba(215, 247, 242, 1) 0%, rgba(235, 250, 250, 1) 50%, rgba(215, 247, 242, 1) 100%);
  padding: 16px 0; /* top-bottom padding, left-right auto because full width */
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-image: linear-gradient(
    90deg,
    rgba(14, 105, 91, 1) 8%,
    rgba(42, 145, 132, 1) 27%,
    rgba(46, 143, 131, 1) 54%,
    rgba(42, 145, 132, 1) 81%,
    rgba(14, 105, 91, 1) 100%
  ) 1;
  border-left: none;
  border-right: none;
  text-align: center;
  width: 100%; /* full width */
  display: block;
  margin: 0 auto 30px auto; /* spacing below heading */
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
  box-sizing: border-box; /* ensures padding fits screen */
}

.reviews-grid .review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.review-card,
.glsr-review {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.review-card:hover,
.glsr-review:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px auto; /* Center image */
  display: block;          /* Force block for centering */
}

/* ==== Stars (Static + Plugin) ==== */
.review-stars,
.glsr-review .glsr-stars {
  color: #FFD700;
  font-size: 18px;
  margin: 10px 0;
}
.review-card span,
.glsr-review .glsr-review-author {
  display: block;
  font-weight: bold;
  color: #2a2a2a;
  font-size: 14px;
  margin-top: 8px;
}

/* ==== Review Form ==== */
.review-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 700px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.review-form h2 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #1a1a1a;
  text-align: center;
}
.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}
.review-form button {
  background: linear-gradient(135deg, #0c9170, #06c26e);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  margin: auto;
}
.review-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ==== Before & After Gallery ==== */
.before-after .gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.before-after .gallery-item {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.before-after img {
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  max-width: 100%;
}

/* ==== Video Testimonials ==== */
.video-testimonials {
  text-align: center;
  margin: 60px 0;
}
.video-wrapper iframe {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ==== Customer Story ==== */
.customer-story .story-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}
.customer-story img {
  width: 200px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
}

/* ==== FAQ Section ==== */
.faq-section .faq {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* ==== Final CTA ==== */
.final-cta {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0c9170, #06c26e);
  color: white;
  border-radius: 12px;
  margin-top: 60px;
}
.final-cta .cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.final-cta .cta-btn:hover {
  background: #f1f1f1;
}





/* ==============================
   Contact Page Styles
   ============================== */

/* Base */
.contact-page {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f9fdf9;
}

.section-padding {
  padding: 60px 20px;
}

h1, h2 {
  text-align: center;
  color: #2f6d31;
  margin-bottom: 20px;
}

p {
  font-size: 1rem;
  color: #555;
}

/* =========================
   Hero Section
   ========================= */
.contact-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f6eb, #bdfff1);
  color: #fff;
  border-radius: 10px;
  margin: 20px;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.contact-hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
}

/* ===============================
   Social Media + Contact Boxes
================================ */
.social-box {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 900px;
}

.social-box h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--green-900, #2f6d31);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 200px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.social-item:hover {
  transform: translateY(-5px);
}

.social-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* =========================
   Brand Buttons
   ========================= */
.btn-facebook {
  background: #1877f2;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s;
  display: inline-block;
}
.btn-facebook:hover { background: #145dbf; }

.btn-instagram {
  background: linear-gradient(45deg,#f58529,#f56040,#d62976,#962fbf,#4f5bd5);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .3s;
  display: inline-block;
}
.btn-instagram:hover { opacity: 0.85; }

.btn-youtube {
  background: #ff0000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s;
  display: inline-block;
}
.btn-youtube:hover { background: #cc0000; }

/* New Call Button */
.btn-call {
  background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  ); 
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s;
  display: inline-block;
}
.btn-call:hover { background: #1e7e34; }

/* New Email Button */
.btn-email {
  background: #17a2b8;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s;
  display: inline-block;
}
.btn-email:hover { background: #117a8b; }

/* =========================
   Form Section
   ========================= */
.contact-form-section {
  background: #fff;
  border-radius: 10px;
  margin: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-form {
  max-width: 700px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .form-group.full {
  grid-column: 1 / 3;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form button {
  grid-column: 1 / 3;
  padding: 14px;
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #2f6d31;
}

/* =========================
   Map Section
   ========================= */
.map-section iframe {
  border-radius: 10px;
  margin-top: 20px;
}

/* =========================
   CTA Section
   ========================= */
.cta-section {
  text-align: center;
  padding: 60px 20px;
background: linear-gradient(90deg,rgba(195, 247, 237, 1) 8%, rgba(198, 245, 245, 1) 78%, rgba(188, 235, 230, 1) 100%);
  color:#01330c;
  border-radius: 10px;
  margin: 30px 20px;
}
.cta-section h2 {
  margin-bottom: 20px;
  color: #01330c;
}
.cta-section .cta-btn {
  background: #fff;
}
.cta-section .cta-btn:hover {
  background: #5da86e;
}

/* =========================
   Responsive Design Fix
   ========================= */
@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
  .social-icons {
    gap: 20px;
  }
  .social-item {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .form-group.full {
    grid-column: 1;
  }
  .social-item {
    width: 100%;
    padding: 15px;
  }
  .social-item img {
    width: 50px;
    height: 50px;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 50px 15px;
  }
  .social-box h2 {
    font-size: 22px;
  }
  .social-item {
    width: 100%;
    gap: 8px;
  }
  .cta-btn, 
  .btn-facebook, 
  .btn-instagram, 
  .btn-youtube,
  .btn-call,
  .btn-email {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}

/* Dual Contact Box */
.dual-contact {
  width: 100%;
  max-width: 500px;
}

.dual-contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.dual-contact-inner .contact-left,
.dual-contact-inner .contact-right {
  flex: 1;
  text-align: center;
}

.dual-contact-inner img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 12px;
}

/* Call Button */
.btn-call {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s;
  display: inline-block;
}
.btn-call:hover { background: #1e7e34; }

/* Email Button */
.btn-email {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s;
  display: inline-block;
}
.btn-email:hover { background: #0056b3; }

/* Responsive */
@media (max-width: 600px) {
  .dual-contact-inner {
    flex-direction: column;
    gap: 15px;
  }
}

.review-form button {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
  border: 0;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-form button:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  margin: 60px 0;
}
.faq {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.faq h3 {
  font-size: 1.1rem;
  color: var(--green-900);
  margin-bottom: 8px;
}
.faq p {
  font-size: 0.95rem;
  color: #444;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #e0f6eb, #bdfff1);
  color: #fff;
  border-radius: 12px;
  margin: 60px 0 20px;
}
.final-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.final-cta .cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--green-900);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.final-cta .cta-btn:hover {
  background: var(--green-300);
  color: #fff;
}

/* ===============================
   Responsive Review Page
=============================== */
@media (max-width: 768px) {
  .rating-summary {
    flex-direction: column;
    gap: 20px;
  }
  .before-after .gallery {
    flex-direction: column;
  }
  .customer-story .story-card {
    flex-direction: column;
    text-align: center;
  }
  .customer-story img {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .reviews-hero h1 {
    font-size: 1.5rem;
  }
  .stat-card {
    font-size: 1rem;
    padding: 15px;
  }
  .review-form input, 
  .review-form select, 
  .review-form textarea {
    font-size: 14px;
    padding: 8px;
  }
  .review-form button {
    font-size: 15px;
    padding: 10px;
  }
}
.reviews-hero,
.rating-summary,
.before-after,
.testimonials,
.customer-story,
.review-form,
.faq-section,
.final-cta {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}


/* ================================
   WHY US PAGE - PROFESSIONAL STYLE
================================ */

.whyus-page {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.7;
}

/* Hero Section */
.whyus-hero {
  text-align: center;
   margin-top: 2px;

  margin-bottom: 60px;
}
.whyus-hero h1 {
  margin-top: 2px;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #07edde, #228b5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.whyus-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  animation: fadeIn 1.2s ease;
}

/* Section Headings */

.whyus-page h2 {
  font-size: 2rem;
  color: #034234; /* Text dark green for contrast */
background: linear-gradient(90deg,rgba(215, 247, 242, 1) 0%, rgba(235, 250, 250, 1) 50%, rgba(215, 247, 242, 1) 100%);
  padding: 16px 0; /* top-bottom padding, left-right auto because full width */
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-image: linear-gradient(
    90deg,
    rgba(14, 105, 91, 1) 8%,
    rgba(42, 145, 132, 1) 27%,
    rgba(46, 143, 131, 1) 54%,
    rgba(42, 145, 132, 1) 81%,
    rgba(14, 105, 91, 1) 100%
  ) 1;
  border-left: none;
  border-right: none;
  text-align: center;
  width: 100%; /* full width */
  display: block;
  margin: 0 auto 30px auto; /* spacing below heading */
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
  box-sizing: border-box; /* ensures padding fits screen */
}



/* Strength Grid */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.strength-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.strength-card:nth-child(1) { animation-delay: 0.2s; }
.strength-card:nth-child(2) { animation-delay: 0.4s; }
.strength-card:nth-child(3) { animation-delay: 0.6s; }
.strength-card:nth-child(4) { animation-delay: 0.8s; }
.strength-card:nth-child(5) { animation-delay: 1s; }

.strength-card h3 {
  margin-top: 15px;
  color: #1c6e4c;
  font-size: 1.3rem;
}
.strength-card p {
  font-size: 0.95rem;
  color: #555;
}
.strength-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Benefits */
.whyus-benefits ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto;
}
.whyus-benefits li {
  font-size: 1.1rem;
  margin: 12px 0;
  padding: 14px 20px;
  background: #f0fffa;
  border-left: 6px solid #07edde;
  border-radius: 10px;
  position: relative;
  animation: slideIn 0.8s ease;
}
.whyus-benefits li::before {
  content: "✔️";
  margin-right: 8px;
}

/* Difference */
.whyus-difference .difference-list p {
  background: #ffffff;
  padding: 15px 20px;
  border-left: 5px solid #228b5c;
  margin: 14px 0;
  border-radius: 10px;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.whyus-difference p:hover {
  background: #e9fff3;
  transform: translateX(5px);
}

/* Savings Highlight */
.whyus-savings {
  background: linear-gradient(135deg, #d9fff2, #b6f9e6);
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  animation: zoomIn 1s ease;
}
.whyus-savings h2 {
  color: #0a7352;
}

/* Testimonials */
.whyus-testimonials p {
  margin: 20px auto;
  padding: 20px;
  background: #fafafa;
  border-left: 5px solid #07edde;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: fadeIn 1.2s ease;
}

/* CTA */
.whyus-cta {
  background: linear-gradient(135deg, #d9fff2, #b6f9e6);
  color: #f5fffc;
  text-align: center;
  padding: 60px 30px;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  animation: fadeUp 1.2s ease;
}
.whyus-cta h2 {
  color: #0a7352;
  
}
.whyus-cta p {
  color: #000000;
}


.whyus-cta a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 26px;
background: linear-gradient(0deg,rgba(8, 56, 51, 1) 0%, rgba(0, 89, 82, 1) 50%, rgba(19, 99, 91, 1) 87%, rgba(3, 87, 78, 1) 100%);
  color: #F5FFFA;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whyus-cta a:hover {
  background: #07edde;
  color: #fff;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* ================================
   RESPONSIVE FIXES
================================ */
@media (max-width: 768px) {
  .whyus-hero h1 { font-size: 2rem; }
  .whyus-page h2 { font-size: 1.6rem; }
  .strength-card h3 { font-size: 1.1rem; }
  .whyus-cta { padding: 40px 20px; }
  .whyus-cta a { padding: 10px 20px; }
}
@media (max-width: 480px) {
  .whyus-hero h1 { font-size: 1.7rem; }
  .whyus-hero p { font-size: 1rem; }
  .strength-card { padding: 20px; }
  .whyus-benefits li { font-size: 1rem; }
}




/* =========================================================
   HOME PAGE STYLING (SabjiBagicha)
========================================================= */

/* Banner Section */
.home-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.home-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Section (Slider ke niche) */
.hero {
  text-align: center;
  padding: 60px 20px 50px;
  background: #fff;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #1b5e20;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 25px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Reusable Button Styles */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  margin-top: 25px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn-primary {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
}
.btn-primary:hover {
background: linear-gradient(90deg,rgba(19, 117, 103, 1) 8%, rgba(42, 145, 132, 1) 27%, rgba(64, 145, 136, 1) 81%, rgba(5, 92, 83, 1) 100%);
}
.btn-whatsapp {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
}
.btn-whatsapp:hover {
  background: #20ba57;
}
.btn-call {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
}
.btn-call:hover {
background: linear-gradient(90deg,rgba(19, 117, 103, 1) 8%, rgba(42, 145, 132, 1) 27%, rgba(64, 145, 136, 1) 81%, rgba(5, 92, 83, 1) 100%);
}

/* Section Defaults */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
section {
  margin: 60px 0;
  text-align: center;
}
section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1b5e20;
}
section p {
  font-size: 1rem;
  color: #444;
}

/* About Section */
.about-home {
  background: #f9f9f9;
  padding: 40px 20px;
  border-radius: 12px;
}

/* Services & Why Choose Us - Cards */
.service-cards,
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.card h4 {
  margin-bottom: 10px;
  color: #2e7d32;
}
.card p {
  color: #555;
}

/* Reviews Section */
.reviews-home blockquote {
  background: #f1f8e9;
  padding: 20px;
  border-left: 5px solid #2e7d32;
  margin: 20px auto;
  max-width: 700px;
  font-style: italic;
  border-radius: 8px;
}
.reviews-home cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
}

/* CTA Section */
.cta-home {
  background: linear-gradient(135deg, #e0f6eb, #bdfff1);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 16px;
}
.cta-home h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-home p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta-home h2 {
    font-size: 1.6rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}


/* ==========================
   Fix for content behind mobile menu overlay
========================== */
main {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}



/* =========================================================
   Banner (front page)
========================================================= */
.home-banner {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
  text-align: center;
}

.home-banner img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;   /* force auto height on all devices */
  display: block !important;
  object-fit: contain !important;   /* pura image dikhane ke liye */
}

/* ================================
   Mobile Fix
================================ */
@media (max-width:768px){
  .home-banner {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100px !important;  /* ensure section visible */
    overflow: visible !important;
  }

  .home-banner img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }
}




/* Contact Form Section */
.contact-form-section {
  display: flex;
  justify-content: center;   /* Horizontally center */
  align-items: center;       /* Vertically center (if needed) */
  flex-direction: column;
  text-align: center;
  padding: 50px 20px;
}

/* WPForms Wrapper */
.contact-form-section .wpforms-container {
  max-width: 600px;  /* Form ki width */
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Form Fields */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
  border-color: #0c9170;   /* green highlight */
  box-shadow: 0 0 5px rgba(12,145,112,0.3);
  outline: none;
}

/* Submit Button */
.wpforms-submit {
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wpforms-submit:hover {
  background: linear-gradient(90deg, #1da193, #0c9170);
}






/* ==== Service Card Premium Style ==== */
.service-card-image {
  background: rgba(255, 255, 255, 0.95); /* Light glass effect */
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Premium Shadow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12),
              0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.service-card-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(27, 191, 117, 0.15), transparent 70%);
  transform: rotate(25deg);
  z-index: 0;
}

.service-card-image:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18),
              0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Image Style */
.service-card-image img {
  width: 90px;
  height: auto;
  margin-bottom: 18px;
  z-index: 1;
  transition: transform 0.35s ease;
}

.service-card-image:hover img {
  transform: scale(1.15) rotate(2deg);
}

/* Title */
.service-card-image h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #015c28;
  z-index: 1;
}

/* Description */
.service-card-image p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
  z-index: 1;
}

/* Button */
.service-card-image .btn {
  margin-top: auto;
  padding: 12px 28px;
background: linear-gradient(
    90deg,
    rgba(5, 75, 79, 1) 7%,
    rgba(5, 85, 89, 1) 25%,
    rgba(9, 77, 79, 1) 73%,
    rgba(6, 74, 71, 1) 92%
  );   color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;

  box-shadow: 0 6px 15px rgba(27, 191, 117, 0.3);
  transition: all 0.3s ease;
}

.service-card-image .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.service-card-image .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(1, 92, 40, 0.4);
}

.service-card-image .btn:hover::after {
  left: 100%;
}


/* Gap below Services section */
.services-grid {
  margin-bottom: 80px; /* services ke neeche space */
}

/* Agar aur clean look chahiye to heading bhi adjust karein */
.locations-section {
  padding-top: 20px;  /* upar se halki padding */
}




/* =========================
   Achievements Section
========================= */
.achievements-section {
  margin-top: 80px;
  text-align: center;
  padding: 20px;
}

.achievements-section .page-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #015c28;
  font-weight: 600;
}

.achievements-section .subtitle {
  color: #444;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.achievement-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.achievement-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

.achievement-item:hover img {
  transform: scale(1.05);
}

/* Modal */
.achievement-modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0; /* top, right, bottom, left 0 */
  background: rgba(0,0,0,0.85);
  z-index: 9999; /* ensure above all elements */
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.achievement-modal-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  display: block;
  margin: auto;
}

.achievement-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
  z-index: 10000;
}

.achievement-modal .close-btn:hover {
  color: #ff4d4d;
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 1024px) {
  .achievements-section {
    padding: 15px;
  }
  .achievements-section .page-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .achievements-section .page-title {
    font-size: 1.6rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .achievement-modal-content {
    max-width: 95%;
    max-height: 80%;
  }

  .achievement-modal .close-btn {
    font-size: 2rem;
    top: 15px;
    right: 15px;
  }
}

/* Optional: small transition for mobile touch */
.achievement-item:active img {
  transform: scale(1.03);
}






/* Sticky WhatsApp & Call Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.sticky-btn {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn img {
  width: 28px;
  height: 28px;
}

.sticky-btn.call {
  background: #0C9170; /* Your brand green */
}

.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}




/* =========================================
   Global Styles for Reviews Page
========================================= */
.reviews-page {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ===============================
   Hero Section
================================ */
.reviews-hero {
  background: linear-gradient(90deg, #007b5e, #00a97f);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}
.reviews-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.reviews-hero p {
  font-size: 1.1rem;
}

/* ===============================
   Rating Summary
================================ */
.rating-summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.stat-card {
  flex: 1;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ===============================
   Customer Reviews
================================ */
.reviews-grid {
  margin: 50px 0;
}
.reviews-grid h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}
.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.review-card p {
  font-style: italic;
  margin-bottom: 10px;
}
.review-stars {
  color: #f4b400;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* ===============================
   Review Form
================================ */
.review-form {
  text-align: center;
  margin: 50px auto;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.review-form h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* ===============================
   Video Testimonials
================================ */
.video-testimonials {
  padding: 50px 20px;
  background: #f4fdf9;
}
.video-testimonials h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
.video-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.video-box {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
}
.video-box video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.video-box h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #007b5e;
}
.video-box p {
  font-size: 0.95rem;
}

/* ===============================
   Customer Story
================================ */
.customer-story {
  margin: 60px 0;
}
.customer-story h2 {
  text-align: center;
  margin-bottom: 25px;
}
.story-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.story-card img {
  max-width: 250px;
  border-radius: 12px;
}
.story-card h3 {
  margin-bottom: 10px;
  color: #007b5e;
}

/* ===============================
   FAQ Section
================================ */
.faq-section {
  margin: 60px 0;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faq {
  background: #f9f9f9;
  margin: 10px 0;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq h3 {
  margin-bottom: 5px;
  color: #007b5e;
}

/* ===============================
   Final Call-to-Action
================================ */
.final-cta {
  background: linear-gradient(90deg, #007b5e, #00a97f);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 50px 0;
}
.final-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.final-cta .cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #007b5e;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.final-cta .cta-btn:hover {
  background: #f4f4f4;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 991px) {
  .rating-summary {
    flex-direction: column;
    align-items: center;
  }
  .story-card {
    flex-direction: column;
    text-align: center;
  }
  .story-card img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .reviews-hero h1 {
    font-size: 1.6rem;
  }
  .reviews-hero p {
    font-size: 1rem;
  }
  .stat-card {
    font-size: 0.95rem;
  }
  .video-grid {
    flex-direction: column;
    align-items: center;
  }
}
