/* --- UNIVERSAL BRAND VARIABLES REGISTRY --- */
:root {
  --primary-earth-gold: #eea942;
  --secondary-forest: #4ba23f;
  --pitch-dark-soil: #1f2214;
  --cream-canvas: #f8f7f0;
  --muted-slate: #6c7265;
  --pure-white: #ffffff;
  --card-surface-tint: #272b1a;

  --font-header-family: "Manrope", sans-serif;
  --font-body-family: "Plus Jakarta Sans", sans-serif;
  --font-handwritten-family: "Covered By Your Grace", cursive;
}

/* --- OVERALL SYSTEM UTILITY RESETS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body-family);
  color: var(--muted-slate);
  background-color: var(--pure-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-header-family);
  color: var(--pitch-dark-soil);
  font-weight: 800;
}

.text-gold {
  color: var(--primary-earth-gold);
}
.text-green {
  color: var(--secondary-forest);
}

/* --- STRUCTURAL LAYOUT BLOCKS --- */
.site-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.split-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  .top-bar-strip .split-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  .top-bar-strip .meta-comms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .top-bar-strip .meta-comms .separator {
    margin: 0 6px;
  }
}
.grid-three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 30px;
}
.grid-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.grid-five-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.text-center {
  text-align: center;
}
.align-center {
  margin: 0 auto;
  text-align: center;
  max-width: 700px;
}
.spacing-top {
  margin-top: 50px;
}

/* --- BADGES & BUTTON INTERACTIVES --- */
.script-badge {
  font-family: var(--font-handwritten-family);
  font-size: 34px;
  color: var(--primary-earth-gold);
  display: inline-block;
  margin-bottom: 8px;
}
.script-badge.color-secondary {
color: #f8f7f0;
letter-spacing: 1px;
text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted-slate);
  margin-top: 5px;
}

.prime-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-header-family);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.prime-action {
  background-color: var(--secondary-forest);
  color: var(--pure-white);
}
.prime-action:hover {
  background-color: var(--pitch-dark-soil);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.ghost-action {
  background-color: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.ghost-action:hover {
  background-color: var(--primary-earth-gold);
  border-color: var(--primary-earth-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- CSS ANIMATIONS --- */
@keyframes customFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes backgroundGrow {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}

.dynamic-fade-up {
  opacity: 0;
  animation: customFadeUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.dynamic-fade-up.delay-1 {
  animation-delay: 0.2s;
}
.dynamic-fade-up.delay-2 {
  animation-delay: 0.4s;
}
.dynamic-fade-up.delay-3 {
  animation-delay: 0.6s;
}

/* --- SECTION 1 & 2: RESPONSIVE LOGO HEADER & NAVBAR --- */
.top-bar-strip {
  background-color: var(--pitch-dark-soil);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.meta-comms span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta-comm-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.meta-comm-link:hover {
  color: var(--primary-earth-gold);
}
.meta-comms .separator {
  margin: 0 15px;
  color: rgba(255, 255, 255, 0.2);
}
.meta-socials a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 16px;
  font-size: 14px;
  transition: color 0.25s ease;
}
.meta-socials a:hover {
  color: var(--primary-earth-gold);
}

.navigation-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(31, 34, 20, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.header-sticky-active-state {
  padding: 5px 0;
  background-color: var(--pure-white);
  box-shadow: 0 10px 35px rgba(31, 34, 20, 0.06);
}
.brand-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  color: #4ba23f;
}
@media (max-width: 480px) {
  .brand-logo {
    font-size: 20px;
  }
  .nav-logo-img {
    height: 50px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .brand-logo {
    font-size: 24px;
  }
  .nav-logo-img {
    height: 58px;
  }
}
.brand-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 4px;
  cursor: pointer;
}
.nav-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}
.header-sticky-active-state .nav-logo-img {
  height: 60px;
}

.navigation-links-deck ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.navigation-links-deck ul li {
  position: relative;
  padding: 10px 22px;
}
.navigation-links-deck ul li a {
  text-decoration: none;
  color: var(--pitch-dark-soil);
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-header-family);
  transition: color 0.25s ease;
  position: relative;
}
.navigation-links-deck ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-forest);
  transition: width 0.3s ease;
}
.navigation-links-deck ul li a:hover::after,
.navigation-links-deck ul li a.active-link-node::after {
  width: 100%;
}
.navigation-links-deck ul li a:hover,
.navigation-links-deck ul li a.active-link-node {
 }

.nav-cta-btn {
  background-color: var(--secondary-forest);
  color: var(--pure-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.nav-cta-btn:hover {
  background-color: var(--pitch-dark-soil);
  transform: translateY(-2px);
}

.menu-toggle-input,
.hamburger-icon-label {
  display: none;
}

/* --- SECTION 3: HERO CORE CANVAS --- */
.hero-area {
  background:
    linear-gradient(rgba(31, 34, 20, 0.65), rgba(31, 34, 20, 0.55)),
    url("../images/hero-bg.webp")
      no-repeat center center;
  background-size: cover;
  height: 75vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  color: var(--pure-white);
  animation: backgroundGrow 20s ease-in-out infinite alternate;
}
.hero-wrapper {
  max-width: 750px;
}
.hero-wrapper h1 {
  font-size: 56px;
  color: var(--pure-white);
  line-height: 1.2;
  margin: 8px 0 20px;
}
.hero-wrapper p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}
.hero-actions-row {
  display: flex;
  gap: 15px;
}

/* --- SECTION 4: ASYMMETRICAL ABOUT GRID --- */
.asymmetrical-about-area {
background:
linear-gradient(
135deg,
rgba(18,52,18,0.65) 0%,
rgba(52,120,52,0.35) 40%,
rgba(255,255,255,0.20) 100%
),
url('../images/about-background.webp');

background-size: cover;
background-position: center;
  color: var(--pure-white);
 
    background-size: cover;
  padding: 100px 0;
}

.about-headline{
color: #ffffff;
text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.asymmetrical-images-stack {
  position: relative;
  height: 480px;
}
.stack-primary-image {
  width: 80%;
  height: 90%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}
.stack-secondary-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  border-radius: 12px;
  border: 8px solid var(--pure-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
}
.pulsating-badge {
  position: absolute;
  top: 30px;
  right: 15%;
  background-color: var(--primary-earth-gold);
  color: var(--pure-white);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 140px;
  animation: pulseBadge 3s ease-in-out infinite;
}
.floating-data-experience-badge h2 {
  font-size: 32px;
  color: var(--pure-white);
}
.floating-data-experience-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

.asymmetrical-text-block h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-top: 5px;
}
.lead-paragraph {
  font-size: 18px;
  font-weight: 600;
 color: var( --secondary-forest);
 text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  margin: 15px 0;
}
.body-supporting-text {
  margin-bottom: 25px;
  color: #ffffff;
text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.stakeholders-badge {
  background-color: var(--cream-canvas);
  padding: 20px;
  border-left: 4px solid var(--secondary-forest);
  border-radius: 0 8px 8px 0;
}
.stakeholders-badge h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.stakeholders-badge p {
  font-size: 14px;
  font-weight: 600;
  color: var(--pitch-dark-soil);
}

/* --- SECTION 5: VISION & MISSION CARDS --- */
.vision-mission-area {
  padding: 80px 0;
  background-color: var(--cream-canvas);
}
.vm-card {
  background-color: var(--pure-white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s ease;
  
}
.vm-card:hover {
  transform: translateY(-8px);
}
.vm-icon {
  font-size: 40px;
  color: var(--secondary-forest);
  margin-bottom: 15px;
  display: inline-block;
}
.vm-card:hover .spinning-icon {
  transform: rotateY(360deg);
  transition: transform 0.8s ease;
}
.vm-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.mission-list {
  list-style: none;
}
.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  min-width: 0;
}
.mission-list li span,
.mission-list li {
  overflow-wrap: break-word;
  word-break: break-word;
}
.mission-list li i {
  color: var(--primary-earth-gold);
  margin-top: 5px;
  font-size: 14px;
}

/* --- SECTION 6: CORE SERVICES --- */
.services-matrix-area {
  padding: 100px 0;
}
.services-hex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 30px;
}
.service-matrix-card {
  background-color: var(--pure-white);
  border: 1px solid #efefef;
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-matrix-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-color: var(--cream-canvas);
}
.matrix-icon-floating {
  width: 56px;
  height: 56px;
  background-color: var(--cream-canvas);
  color: var(--secondary-forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-matrix-card:hover .matrix-icon-floating {
  background-color: var(--secondary-forest);
  color: var(--pure-white);
  transform: scale(1.1);
}
.service-matrix-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* --- SECTION 7: PROPOSITION ROW --- */
.value-cards-row {
  padding: 100px 0;
  background-color: var(--cream-canvas);
}
.text-center-override {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.value-block {
  background-color: var(--pure-white);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  transition: transform 0.3s;
}
.value-block:hover {
  transform: scale(1.03);
}
.value-icon {
  font-size: 30px;
  color: var(--secondary-forest);
}
.value-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.value-text p {
  font-size: 14px;
}

/* --- SECTION 8: IMPACT STRATEGY --- */
.impact-approach-area {
  padding: 100px 0;
}
.impact-points-list {
  list-style: none;
  margin-top: 25px;
}
.impact-points-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--pitch-dark-soil);
  font-size: 15px;
}
.impact-points-list li i {
  color: var(--primary-earth-gold);
}
.impact-graphic-side {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

/* --- SECTION 9: PRODUCT EXHIBITION --- */
.products-showcase-area {
  padding-bottom: 0px 0;
  background-color: var(--pure-white);
}
.product-item-card {
  background-color: var(--pure-white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product-icon-box {
  font-size: 40px;
  color: var(--secondary-forest);
  margin-bottom: 15px;
  display: inline-block;
}
.product-item-card:hover .floating-icon {
  animation: floatAnimation 2s ease-in-out infinite;
}
.product-item-card h3 {
  font-size: 22px;
}
.tagline-p {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-earth-gold);
  letter-spacing: 1px;
  margin: 4px 0 15px;
}

/* --- SECTION 10: NURSERY HUBS & NESTED COCO BOX --- */
.nursery-strength-area {
  padding: 100px 0;
}
.nursery-tag-card {
  background-color: var(--cream-canvas);
  padding: 25px 15px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #eae9e0;
  transition: all 0.3s ease;
}
.nursery-tag-card:hover {
  background-color: var(--secondary-forest);
  border-color: var(--secondary-forest);
}
.nursery-tag-card:hover h5 {
  color: var(--pure-white);
}
.nursery-tag-card h5 {
  font-size: 15px;
  color: var(--pitch-dark-soil);
  transition: color 0.3s;
}
.coco-media-nested-box {

     background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('../images/Coco-Based.webp');

  /* margin-top: 60px; */
  background-color: var(--pitch-dark-soil);
  color: var(--pure-white);
  padding: 50px;
  border-radius: 16px;
}
.coco-media-nested-box h3 {


  color: var(--pure-white);
  font-size: 28px;
  margin-bottom: 15px;
}
.coco-item {
  margin-top: 15px;
  font-size: 14px;
  color: #d0d2cc;
  border-left: 2px solid var(--primary-earth-gold);
  padding-left: 15px;
}
.coco-item strong {
  color: var(--pure-white);
}
.coco-image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: transform 0.5s ease;
}
.zoom-hover-img:hover {
  transform: scale(1.04);
}

/* --- SECTION 11: GEOLOCALIZED INFORMATION CARDS --- */
.localized-contact-area {
  padding: 100px 0;
  background-color: var(--pure-white);
  border-bottom: 1px solid #ebeae1;
}
.contact-info-card {
  background-color: var(--cream-canvas);
  padding: 40px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s;
}
.contact-info-card:hover {
  transform: translateY(-5px);
}
.c-icon {
  font-size: 32px;
  color: var(--secondary-forest);
  margin-bottom: 15px;
}
.contact-info-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.contact-info-card p {
  font-size: 14px;
  line-height: 1.6;
}
.contact-address-link {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-slate);
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-address-link:hover {
  color: var(--secondary-forest);
  text-decoration: underline;
}
.contact-inline-link {
  color: var(--muted-slate);
  text-decoration: none;
  transition: color 0.25s ease;
}
.contact-inline-link:hover {
  color: var(--secondary-forest);
  text-decoration: underline;
}

/* --- RE-ENGINEERED PREMIUM BOTTOM FOOTER SYSTEM --- */
.premium-footer-grid-system {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.45)),
    url('../images/footer-backgrount.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 30px;
  border-top: 4px solid var(--secondary-forest);
}
.footer-primary-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-column h4.footer-title {
  color: var(--pure-white);
  font-family: var(--font-header-family);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-column h4.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-earth-gold);
  border-radius: 2px;
}

.footer-logo-wrap {
  margin-bottom: 20px;
  display: block;
}
.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  background-color: var(--pure-white);
  padding: 8px;
  border-radius: 8px;
}
.bio-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.operational-hours span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-links-list {
  list-style: none;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}
.list-pointer {
  font-size: 10px;
  margin-right: 8px;
  color: var(--secondary-forest);
  transition: transform 0.25s;
}
.footer-links-list li a:hover {
  color: var(--primary-earth-gold);
}
.footer-links-list li a:hover .list-pointer {
  transform: translateX(5px);
  color: var(--primary-earth-gold);
}

.contact-meta-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.structural-icon {
  font-size: 20px;
  color: var(--secondary-forest);
  background-color: var(--card-surface-tint);
  padding: 12px;
  border-radius: 6px;
  line-height: 1;
}
.single-meta-item h5 {
  color: var(--pure-white);
  font-family: var(--font-header-family);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.single-meta-item p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.news-desc {
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.input-form-control-wrap {
  display: flex;
  position: relative;
  margin-bottom: 12px;
}
.footer-news-input {
  width: 100%;
  background-color: var(--card-surface-tint);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 60px 14px 18px;
  border-radius: 6px;
  color: var(--pure-white);
  font-size: 14px;
  transition: border-color 0.3s;
}
.footer-news-input:focus {
  outline: none;
  border-color: var(--secondary-forest);
}
.footer-news-submit-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background-color: var(--secondary-forest);
  border: none;
  color: var(--pure-white);
  padding: 0 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}
.footer-news-submit-btn:hover {
  background-color: var(--primary-earth-gold);
}
.terms-label-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.terms-label-check input {
  margin-top: 4px;
  accent-color: var(--secondary-forest);
}
.terms-label-check span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
}

.footer-baseline-bar {
  padding-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}
.baseline-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.baseline-links a:hover {
  color: var(--primary-earth-gold);
}
.bullet-dot {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.1);
}
.external-domain-node {
  font-weight: 700;
  color: var(--primary-earth-gold) !important;
}

/* --- INTUITIVE RESPONSIVE VIEWPORT BREAKPOINTS --- */
@media (max-width: 1100px) {
  .footer-primary-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .header-action-panel {
    display: none;
  }
  .hamburger-icon-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    position: relative;
    z-index: 1010;
  }
  .hamburger-icon-label span {
    width: 100%;
    height: 3px;
    background-color: var(--pitch-dark-soil);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .navigation-links-deck {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--pure-white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 40px;
    z-index: 1005;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .navigation-links-deck ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .navigation-links-deck ul li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0e8;
  }

  .menu-toggle-input:checked ~ .navigation-links-deck {
    right: 0;
  }
  .menu-toggle-input:checked ~ .hamburger-icon-label span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .menu-toggle-input:checked ~ .hamburger-icon-label span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle-input:checked ~ .hamburger-icon-label span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .grid-two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-five-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .asymmetrical-images-stack {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-wrapper h1 {
    font-size: 36px;
  }
  .grid-five-columns {
    grid-template-columns: 1fr;
  }
  .coco-image {
    display: none;
  }
  .footer-primary-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-baseline-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
/* bg for services card */
.service-matrix-card {
  background-color: var(--pure-white);
  border: 1px solid #efefef;
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  /* These cards have no click destination, so no pointer cursor
     (a pointer cursor without an action is misleading). */
  cursor: default;
}

.services-matrix-area .Our-Core-image-one:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-two:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-three:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-four:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-five:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-six:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-seven:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-eight:hover h3{
    color: #fff;
}
.services-matrix-area .Our-Core-image-nine:hover h3{
    color: #fff;
} 
.Our-Core-image-one:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-one.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}
.Our-Core-image-two:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-two.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}
.Our-Core-image-three:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-three.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}

.Our-Core-image-four:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-four.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}
.Our-Core-image-five:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-five.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}

.Our-Core-image-six:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-six.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}
.Our-Core-image-seven:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-seven.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}
.Our-Core-image-eight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-eight.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}
.Our-Core-image-nine:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-forest);
  background-image: linear-gradient(rgba(105, 159, 97, 0.60), rgba(75, 162, 63, 0.60)),
  url("../images/Our-Core-nine.webp");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
}f
 

/* bg for Our Nursery Facility Strength cards */
/* Base hover for all nursery cards */
.nursery-tag-card:hover {
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.nursery-tag-card:hover h5 {
  color: var(--pure-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Card 1 - Fruit Bearing Plants */
.nursery-tag-card:nth-child(1):hover {
  background-image: linear-gradient(rgba(75, 162, 63, 0.15), rgba(75, 162, 63, 0.15)),
    url("../images/Fruit-Bearing-Plants.webp");

  background-size: cover;
  background-position: center;
}

/* Card 2 - Medicinal Plants */
.nursery-tag-card:nth-child(2):hover {
  background-image: linear-gradient(rgba(75, 162, 63, 0.15), rgba(75, 162, 63, 0.15)),
    url("../images/Medicinal-Plants.webp");
      background-size: cover;
  background-position: center;
}

/* Card 3 - Flowering Plants */
.nursery-tag-card:nth-child(3):hover {
  background-image: linear-gradient(rgba(75, 162, 63, 0.15), rgba(75, 162, 63, 0.15)),
    url("../images/Flowering-Plants.webp");
      background-size: cover;
  background-position: center;
}

/* Card 4 - Ornamental Plants */
.nursery-tag-card:nth-child(4):hover {
  background-image: linear-gradient(rgba(75, 162, 63, 0.15), rgba(75, 162, 63, 0.15)),
    url("../images/Ornamental-Plants.webp");
      background-size: cover;
  background-position: center;
}

/* Card 5 - Native Saplings */
.nursery-tag-card:nth-child(5):hover {
  background-image: linear-gradient(rgba(75, 162, 63, 0.15), rgba(75, 162, 63, 0.15)),
    url("../images/Native-Saplings.webp");
      background-size: cover;
  background-position: center;
}
/* --- FLOATING SOCIAL SIDEBAR --- */
.floating-social-bar {
  position: fixed;
  right: 0;
  top: 80%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
}

.social-float-link {
  display: flex;
  align-items: center;
  background-color: var(--secondary-forest);
  color: var(--pure-white);
  text-decoration: none;
  padding: 12px 14px;
  font-size: 16px;
  width: 48px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 6px 0 0 6px;
}

.social-float-link span {
  font-family: var(--font-header-family);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-float-link:hover {
  width: 140px;
  padding-right: 18px;
}

.social-float-link:hover span {
  opacity: 1;
}

/* Different color per platform */
.social-float-link:nth-child(1):hover { background-color: #1877f2; } /* Facebook  */
.social-float-link:nth-child(2):hover { background-color: #e1306c; } /* Instagram */
.social-float-link:nth-child(3):hover { background-color: #0077b5; } /* LinkedIn  */
.social-float-link:nth-child(4):hover { background-color: #25d366; } /* WhatsApp  */

/* Hide on mobile */
@media (max-width: 600px) {
  .floating-social-bar {
    display: none;
  }
}
@media (min-width: 600px) {
    .meta-socials{
        display: none;
    }
}

/* trying wave effect */
/* --- SITE MAP MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(31, 34, 20, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.modal-overlay.modal-active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--pure-white);
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.modal-active .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: var(--pitch-dark-soil);
  border-bottom: 3px solid var(--secondary-forest);
}

.modal-header h3 {
  color: var(--pure-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header h3 i {
  color: var(--primary-earth-gold);
}

.modal-close-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--pure-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background-color: var(--primary-earth-gold);
  transform: rotate(90deg);
}

.modal-maps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-map-block {
  padding: 25px;
  border-right: 1px solid #eee;
}

.modal-map-block:last-child {
  border-right: none;
}

.modal-map-block h4 {
  font-size: 16px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-map-block p {
  font-size: 13px;
  color: var(--muted-slate);
  margin-bottom: 15px;
}

.modal-map-block iframe {
  border-radius: 10px;
  width: 100%;
}

/* Close on outside click */
.modal-overlay {
  cursor: pointer;
}
.modal-box {
  cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-maps-row {
    grid-template-columns: 1fr;
  }
  .modal-map-block {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}
/* --- NURSERY MODAL --- */
.nursery-modal-box {
  max-width: 900px !important;
}

.nursery-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.nursery-modal-info {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 1px solid #eee;
}

.nursery-modal-info .script-badge {
  font-size: 26px;
}

.nursery-modal-info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-slate);
}

.nursery-modal-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.nursery-modal-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pitch-dark-soil);
}

.nursery-modal-points li i {
  color: var(--secondary-forest);
  font-size: 15px;
  flex-shrink: 0;
}

.nursery-modal-image {
  background-size: cover;
  background-position: center;
  min-height: 350px;
  transition: background-image 0.3s ease;
}

/* Cursor pointer on cards */
.nursery-tag-card {
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {
  .nursery-modal-body {
    grid-template-columns: 1fr;
  }

  .nursery-modal-info {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 25px 20px;
  }

  .nursery-modal-image {
    min-height: 250px;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(31, 34, 20, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
  cursor: pointer;
}

.modal-overlay.modal-active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--pure-white);
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
}

.modal-overlay.modal-active .modal-box {
  transform: translateY(0);
}
/* Center last two cards in Why Choose Us section */
#why-choose-us-section .grid-three-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

#why-choose-us-section .grid-three-columns .value-block:nth-child(1) { grid-column: span 2; }
#why-choose-us-section .grid-three-columns .value-block:nth-child(2) { grid-column: span 2; }
#why-choose-us-section .grid-three-columns .value-block:nth-child(3) { grid-column: span 2; }
#why-choose-us-section .grid-three-columns .value-block:nth-child(4) { grid-column: 2 / span 2; }
#why-choose-us-section .grid-three-columns .value-block:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 768px) {
  #why-choose-us-section .grid-three-columns {
    grid-template-columns: 1fr 1fr;
  }

  #why-choose-us-section .grid-three-columns .value-block:nth-child(1) { grid-column: span 1; }
  #why-choose-us-section .grid-three-columns .value-block:nth-child(2) { grid-column: span 1; }
  #why-choose-us-section .grid-three-columns .value-block:nth-child(3) { grid-column: span 1; }
  #why-choose-us-section .grid-three-columns .value-block:nth-child(4) { grid-column: span 1; }
  #why-choose-us-section .grid-three-columns .value-block:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 480px) {
  #why-choose-us-section .grid-three-columns {
    grid-template-columns: 1fr;
  }

  #why-choose-us-section .grid-three-columns .value-block:nth-child(n) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hero-area {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
    align-items: flex-start;
  }

  .hero-wrapper {
    max-width: 100%;
    text-align: center;
  }

  .hero-wrapper .script-badge {
    font-size: 24px;
  }

  .hero-wrapper h1 {
    font-size: 32px;
    margin: 10px 0 16px;
  }

  .hero-wrapper p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .prime-action,
  .ghost-action {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .hero-wrapper h1 {
    font-size: 26px;
  }

  .hero-wrapper .script-badge {
    font-size: 20px;
  }

  .hero-wrapper p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero-area {
    height: 100svh;  /* svh = small viewport height, fixes mobile browser bar issue */
    min-height: 600px;
    background:
      linear-gradient(rgba(31, 34, 20, 0.70), rgba(31, 34, 20, 0.65)),
      url("../images/hero-bg.webp")
      no-repeat center center / cover;  /* shorthand ensures cover applies */
    background-attachment: scroll;
    -webkit-background-size: cover;   /* Safari fix */
    -moz-background-size: cover;      /* Firefox fix */
    background-size: cover !important;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
  }
}

@media (max-width: 480px) {
  .hero-area {
    height: 100svh;
    min-height: 550px;
    background:
      linear-gradient(rgba(31, 34, 20, 0.72), rgba(31, 34, 20, 0.68)),
      url("../images/hero-bg.webp")
      no-repeat center center / cover;
    background-attachment: scroll;
    background-size: cover !important;
  }
}
.hero-area {
  background-attachment: scroll; /* add this to existing rule */
}

/* changes */
/* --- NURSERY HOVER CARD --- */
.nursery-tag-card {
  position: relative;
  cursor: pointer;
}

.nursery-hover-card {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  background-color: var(--pure-white);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
  pointer-events: none;
}

/* Arrow pointing down */
.nursery-hover-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--pure-white);
}

.nursery-tag-card:hover .nursery-hover-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Fix cards at edges going off screen */
.nursery-tag-card:first-child .nursery-hover-card {
  left: 0;
  transform: translateX(0) translateY(10px);
}
.nursery-tag-card:first-child .nursery-hover-card::after {
  left: 20%;
}
.nursery-tag-card:first-child:hover .nursery-hover-card {
  transform: translateX(0) translateY(0);
}

.nursery-tag-card:last-child .nursery-hover-card {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(10px);
}
.nursery-tag-card:last-child .nursery-hover-card::after {
  left: 80%;
}
.nursery-tag-card:last-child:hover .nursery-hover-card {
  transform: translateX(0) translateY(0);
}

.nhc-image {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
   background-image: url(&quot;assets/images/nursery1.avif&quot;);
}

.nhc-content {
  padding: 15px;
}

.nhc-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-earth-gold);
  display: block;
  margin-bottom: 8px;
}

.nhc-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-slate);
  margin-bottom: 10px;
}

.nhc-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nhc-content ul li {
  font-size: 12px;
  font-weight: 600;
  color: var(--pitch-dark-soil);
  display: flex;
  align-items: center;
  gap: 7px;
}

.nhc-content ul li i {
  color: var(--secondary-forest);
  font-size: 11px;
  flex-shrink: 0;
}

/* Hide on mobile - tap doesn't trigger hover well */
@media (max-width: 768px) {
  .nursery-hover-card {
    display: none;
  }
}

/* just checking */
/* Make nursery grid a stacking context above coco section */
.grid-five-columns {
  position: relative;
  z-index: 10;
}

/* Also ensure hover card itself has high enough z-index */
.nursery-hover-card {
  z-index: 200;
}

/* Prevent coco section from overlapping */
.coco-media-nested-box {
  position: relative;
  z-index: 1;
}
.nursery-strength-area {
  overflow: visible;
}

/* Also make sure the parent container doesn't clip */
#nursery-section .site-container {
  overflow: visible;
}
.vision-image-strip {
  margin-top: 25px;
  height: 160px;
  border-radius: 10px;
  background-image: url("../images/vision.webp");
  /* C:\Users\gauri\OneDrive\Desktop\Green_Roots\assets\images\vision.webp */
  background-size: cover;
  background-position: center;
  flex: 1;
}

/* Our Offerings card  */

.product-icon-box {
    width: 100%;
    height: 220px; /* image area ki height */
    overflow: hidden;
    margin-bottom: 20px;
}

.product-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}.product-item-card {
    background: #fff;
    padding: 0 0 30px 0; /* top padding hata do */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}


/* our nursery  */
.nursery-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
}

.nursery-card img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nursery-content{
    padding:20px;
}

.nursery-content h3{
    margin-bottom:10px;
    text-align: center;
}

.nursery-content p{
    line-height:1.7;
    text-align: center;

}

.nursery-card:hover img{
    transform: scale(1.08);
}


.nursery-showcase-area{
    background-color: var(--cream-canvas);
}

.nursery-strength-area{
    background-color: var(--cream-canvas);
}

.key-highlight-card{

   background-color: var(--pure-white);
}


.social-media-sidebar a,span{
    color: var(--pure-white);
}


.our-product-description{
   padding-left:12px ;
   padding-right:12px ;


}


#productCarousel {
    position: relative;
}

/* Fix overflow: Bootstrap's m-5 utility (48px margin) on the carousel
   rows was pushing content past the viewport edge on mobile/tablet,
   causing horizontal scrolling. Scale the margin down responsively. */
@media (max-width: 991px) {
  #productCarousel .row.m-5 {
    margin: 24px !important;
  }
}
@media (max-width: 480px) {
  #productCarousel .row.m-5 {
    margin: 12px 4px !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #4ba23f;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 12px;
    background-size: 50% 50%;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
      width: 36px;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      width: 16px;
      height: 16px;
      padding: 9px;
  }
  #productCarousel .carousel-control-prev.me-5.pe-5,
  #productCarousel .carousel-control-next.ms-5.ps-5 {
      margin: 0 !important;
      padding: 0 8px !important;
  }
}

.product-item-card {
    height: 100%;
}


/* NOTE: the section markup actually uses class="grid-two-columns"
   (not grid-three-columns) — this selector previously targeted the
   wrong class and never matched anything. */
.vision-mission-area .grid-two-columns{
    display: grid;
    grid-template-columns: 300px 1fr;
}

/* --- Desktop-only refinement: the EDGE card content was stuck to the
   top of its tall box (grid-row: span 2) leaving a large empty gap
   below it, which looked unbalanced/unprofessional. Center it and
   widen the sidebar column slightly for better visual weight. --- */
@media (min-width: 992px) {
  .vision-mission-area .grid-two-columns{
      grid-template-columns: 340px 1fr;
  }
  .mission-box{
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
}

.mission-box{
    grid-row: span 2;
    min-height: 500px;
    width: 100%;
    max-width: 400px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.mission-box-bg{
    min-height: 160px;
    width: 100%;
    max-width: 680px;
    padding: 40px;
    border-radius: 20px;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.15) 100%
    ),
    url('../images/our-missin.webp');

    background-size: cover;
    background-position: center;

    color: #fff;
}
.vision-box-bg{
    min-height: 220px;
    padding: 40px;
    width: 100%;
    max-width: 680px;
    border-radius: 20px;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.15) 100%
    ),
    url('../images/our-vision.webp');

    background-size: cover;
    background-position: center;

    color: #fff;
}.mission-box-bg h3,
.vision-box-bg h3{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.mission-box-bg p,
.vision-box-bg p{
    max-width: 60%;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}.mission-box h3{
    margin-left: 38px;
}

/* --- Responsive fix: Vision & Mission section was using fixed pixel
   widths (300px / 400px / 680px) with no breakpoints, so it overflowed
   and broke on tablets & phones. Stack the cards on smaller screens. --- */
@media (max-width: 991px) {
  .vision-mission-area .grid-two-columns{
      grid-template-columns: 1fr;
      gap: 25px;
  }
  .mission-box{
      grid-row: auto;
      min-height: auto;
      width: 100%;
      max-width: 100%;
  }
  .mission-box-bg,
  .vision-box-bg{
      width: 100%;
      max-width: 100%;
  }
  .mission-box-bg p,
  .vision-box-bg p{
      max-width: 100%;
  }
}

@media (max-width: 480px) {
  .mission-box{
      padding: 35px 25px;
  }
  .mission-box h3{
      margin-left: 0;
  }
  .mission-box-bg,
  .vision-box-bg{
      padding: 25px;
  }
  .mission-box-bg h3,
  .vision-box-bg h3{
      font-size: 1.5rem;
  }
}


.footer-section{
    background:
        linear-gradient(rgba(0,0,0,0.5),
        rgba(0,0,0,0.45)),
        url('../images/footer-backgrount.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 90px 0 30px;
    border-top: 4px solid #4ba23f;
    color: rgba(255,255,255,0.7);
}

.footer-logo{
    height: 90px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}

.footer-logo-link{
    display: inline-block;
    cursor: pointer;
}

.footer-address-link{
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-address-link:hover{
    color: #eea942;
    text-decoration: underline;
}

.footer-heading{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #eea942;
    border-radius: 2px;
}

.footer-text{
    font-size: 14px;
    line-height: 1.7;
}

.footer-link{
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-link:hover{
    color: #eea942;
}

.quick-links-column{
   padding-left: 120px;
}

/* Responsive fix: 120px left padding only makes sense once the footer
   columns are side-by-side (Bootstrap's lg breakpoint). Below that the
   columns stack full-width, so the padding was squeezing the text. */
@media (max-width: 991px) {
  .quick-links-column{
     padding-left: 10px;
  }
}
/* --- Our Offerings slider fix: equalize card/title/description height
   across every slide so the total carousel height stays the same when
   the slide changes — this stops the prev/next arrow icons from
   jumping up and down between slides. Placed at the end of the file so
   it wins over the earlier .product-item-card rules above. */
#productCarousel .product-item-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
#productCarousel .product-item-card h3 {
  min-height: 30px;
}
#productCarousel .tagline-p {
  min-height: 18px;
}
#productCarousel .our-product-description {
  min-height: 82px;
}
