:root {
  --green: #1B8A5A;
  --green-dark: #0B5D3B;
  --bg: #F6F8F7;
  --ink: #1F2937;
  --muted: #6B7280;
  --card: #FFFFFF;
  --ring: #B7E2CF;
  --gold: #cfb53b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--ink);
  background: var(--bg)
  
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid #e5e7eb
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo {
  height: 60px;
  /* good size for desktop */
  width: auto;
  display: block;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

/* Tablet adjustments */
@media (max-width: 900px) {
  .logo {
    height: 50px;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .logo {
    height: 40px;
  }
}

.brand h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 700
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--muted);
  /* transition: .2s */
}

.nav-links a:hover,
.nav-links a.active {
  background: #f2f5f3;
  color: var(--ink)
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--ring);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .2s
}

.btn--primary {
  background: var(--green);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(27, 138, 90, .25)
}

.btn--primary:hover {
  background: #187a50
}

.btn--secondary {
  background: var(--green-dark);
  color: white;
  border-color: transparent
}

.btn--secondary:hover {
  background: #094d32
}

.menu-btn {
  display: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer
}

@media(max-width:900px) {
  .nav-links {
    display: none
  }

  .menu-btn {
    display: block
  }

  .drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 340px);
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .08);
    padding: 20px;
    transform: translateX(100%);
    transition: .35s;
    z-index: 40
  }

  .drawer.open {
    transform: translateX(0)
  }

  .drawer a {
    display: block;
    padding: 12px;
    border-radius: 10px;
    color: var(--muted)
  }

  .drawer .btn {
    width: 100%;
    margin-top: 10px
  }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(11, 93, 59, .55), rgba(11, 93, 59, .75)), url('https://images.unsplash.com/photo-1524593410722-5c4a9f86f18b?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  color: #fff;
}

.hero .wrap {
  padding: 84px 0 96px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px
}

.hero h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 12px
}

.hero p {
  font-size: 18px;
  color: #eef7f1;
  margin: 0 0 22px
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, .18)
}

.hero-card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px);
  padding: 18px;
  border-radius: 14px;
  display: grid;
  gap: 8px;
  align-self: start
}

.hero-card b {
  font-size: 15px
}

/* Page Hero (for other pages) */
.page-hero {
  background: url(../img/breadcrubs.png) ;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  margin: 0 0 12px
}

.page-hero p {
  font-size: 18px;
  opacity: .9;
  margin: 0
}

@media(max-width:900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    padding: 64px 0 72px
  }

  .hero h2 {
    font-size: 32px
  }

  .page-hero h1 {
    font-size: 28px
  }
}



/* 🌿 GLOBAL SECTION SPACING */
section.container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section.container h2.section-title {
  margin-bottom: 12px;
  font-size: 28px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.5;
}

/* 🧱 Product Grid alignment */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🧭 Table responsiveness */
table {
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 12px;
}

@media (max-width: 992px) {
  section.container {
    padding: 45px 15px;
  }

  h2.section-title {
    font-size: 24px;
  }

  .section-sub {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  section.container {
    padding: 35px 12px;
  }

  h2.section-title {
    font-size: 21px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: auto;
  }

  .why-row {
    flex-direction: column;
    align-items: stretch;
  }
}


/* Cards grid */
.grid {
  display: grid;
  gap: 18px
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr)
}

@media(max-width:1000px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {

  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr
  }
}

.card {
  background: var(--card);
  border: 1px solid #e8efe9;
  border-radius: 16px;
  padding: 18px;
  transition: .25s;
  box-shadow: 0 6px 14px rgba(16, 185, 129, .06)
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 185, 129, .12)
}

.card h3 {
  margin: 4px 0 6px;
  font-size: 18px
}

.card h4 {
  margin: 4px 0 6px;
  font-size: 16px;
  color: var(--green-dark)
}

.muted {
  color: var(--muted)
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3ECF8E, #1B8A5A);
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 14px
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.price {
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 6px
}

.price-large {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark)
}

/* Product cards 
.product-card {
  position: relative
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 12px 0
}

.product-features li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap
}

.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}*/


/* 🌿 PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
  justify-content: center;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 18px 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card .img-wrap {
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.product-card .img-wrap:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card .img-wrap:hover img {
  transform: scale(1.03);
}

.product-card h3 {
  margin-top: 12px;
  font-size: 18px;
  color: #007a3d;
}

.product-card p {
  font-size: 14px;
  color: #555;
  margin: 8px 0 10px;
  line-height: 1.4;
}

.product-card .price {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  margin-top: 5px;
}


/* WHY CHOOSE - Horizontal Layout */
.why-choose {
  margin-top: 50px;
}

.why-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 30px;
  margin-top: 20px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f8f8;
  padding: 12px 18px;
  border-radius: 8px;
  max-width: 320px;
  flex: 1 1 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-item .check {
  color: green;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.why-item div {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .why-item {
    max-width: 100%;
    text-align: left;
  }
}


/* Applications List */
.app-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.app-card:hover {
  transform: translateY(-3px);
}

.app-icon {
  font-size: 40px;
  margin-right: 20px;
  flex-shrink: 0;
}

.app-content {
  flex: 1;
}

.app-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #007a3d;
}

.app-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: #e6f4ec;
  color: #007a3d;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
}

.app-btn {
  background: #007a3d;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.app-btn:hover {
  background: #005f2a;
}

/* Responsive */
@media (max-width: 768px) {
  .app-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .app-btn {
    align-self: flex-end;
  }
}



/* Compare band 
.band {
  background: linear-gradient(135deg, #EAF7F0, #F6F8F7);
  border: 1px solid #e5efe8;
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 10px
}

.band strong {
  color: var(--green-dark)
}*/

/* Ribbon */
.ribbon {
  background: var(--green-dark);
  color: #fff;
  padding: 10px 0;
  font-weight: 500
}

.ribbon .marquee {
  white-space: nowrap;
  overflow: hidden
}

.ribbon .marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 30s linear infinite
}

@keyframes scroll {
  to {
    transform: translateX(-100%)
  }
}

/* Testimonials */
.bubble {
  background: #fff;
  border: 1px solid #e6ece8;
  border-radius: 16px;
  padding: 16px;
  position: relative
}

.bubble:after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid #e6ece8;
  border-bottom: 1px solid #e6ece8;
  transform: rotate(45deg)
}

/* Contact */
form {
  display: grid;
  gap: 12px
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid #dfe7e3;
  background: #fff;
  font-family: inherit
}

textarea {
  min-height: 120px;
  resize: vertical
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media(max-width:640px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #111827;
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .3s;
  z-index: 50
}

.toast.show {
  opacity: 1;
  transform: translateY(0)
}

/* Footer */
/* Footer */
footer {
  background: #0f1d16;
  color: #cde7dc;
  padding: 40px 0 25px;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
}

footer a {
  color: #e6fff4;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--green);
}

/* Footer Grid */
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;  /* better balance between columns */
  gap: 40px;
  align-items: flex-start;
}

/* Logo + About */
.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 12px;
}

.footer-about p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  max-width: 380px;  /* keeps paragraph from stretching too wide */
}

/* Quick Links & Contact Headings */
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

/* Quick Links */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--green);
  transform: translateX(4px); /* subtle premium hover effect */
}

/* Contact Section */
.footer-contact a {
  color: #e6fff4;
  word-break: break-all;
}

/* Social Icons */
.social-icons {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  font-size: 26px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
  text-align: center;
  color: #a8d5c1;
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr; /* tightened the middle & right column */
  gap: 20px;  /* reduced gap between columns */
  align-items: flex-start;
}

  .footer-about,
  .footer-links {
  padding-left: 40px; /* nudges quick links slightly right */
}

  .footer-contact {
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-about p {
    max-width: 100%;
    margin-inline: auto;
  }
}

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: .6s cubic-bezier(.2, .8, .2, 1)
}

.reveal.show {
  opacity: 1;
  transform: none
}

/* WhatsApp FAB 
.fab{
  position:fixed;right:18px;bottom:84px;background:#25D366;color:#fff;border:none;border-radius:999px;
  padding:14px 16px;font-weight:700;box-shadow:0 12px 24px rgba(37,211,102,.35);z-index:35;cursor:pointer
}
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; 
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.fab:hover {
  background-color: #20b954;
} */





p {
  font-size: 16px;

}

.float {
  position: fixed;
  /* always visible on screen */
  bottom: 20px;
  /* closer to bottom */
  right: 20px;
  /* closer to right side */
  font-size: 32px;
  /* icon size */
  color: #25d366 !important;
  /* force WhatsApp green */
  z-index: 100;
  /* on top of other elements */
  text-decoration: none;
  /* no underline */
}


/* Breadcrumb */
.breadcrumb {
  /* background: #f9fafb; */
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  
  font-size: 14px;
}


.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-nav a {
  color: var(--muted)
}

.breadcrumb-nav a:hover {
  color: var(--green)
}

.breadcrumb-nav span {
  color: var(--ink)
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-size: 32px;
  color: var(--black);   /* 👉 Numbers in black */
  margin: 0;
}

.stat-item p {
  margin: 4px 0 0;
  color: var(--muted);   /* 👉 Labels muted/gray (can be changed to green) */
}

h2.text-center {
  font-size: 2.4rem;
  color: green;
  margin-bottom: 25px;
}

.stat-item h3 {
  font-size: 28px;
  color: #000; /* black numbers */
  margin: 0;
  font-weight: 700;
}

.stat-item p {
  margin: 4px 0 0;
  color: #007a3d; /* green labels */
  font-size: 16px;
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px
}

.timeline:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ring)
}

.timeline-item {
  position: relative;
  margin-bottom: 30px
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--ring)
}

.timeline-content {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb
}

.timeline-date {
  color: var(--green);
  font-weight: 600;
  font-size: 14px
}

/* Team cards */
.team-card {
  text-align: center
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover
}

.team-card h4 {
  margin: 0 0 4px;
  color: var(--green-dark)
}

.team-card .role {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 8px
}

/* FAQ */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden
}

.faq-question {
  padding: 16px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: .2s
}

.faq-question:hover {
  background: #f9fafb
}

.faq-answer {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: .3s;
  background: #f9fafb
}

.faq-answer.open {
  padding: 16px;
  max-height: 200px
}

.faq-toggle {
  color: var(--green);
  font-size: 20px;
  transition: .3s
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg)
}

/* Utility classes */
.text-center {
  text-align: center
}

.text-green {
  color: var(--green)
}

.text-muted {
  color: var(--muted)
}

.mb-0 {
  margin-bottom: 0
}

.mt-2 {
  margin-top: 16px
}

.mb-2 {
  margin-bottom: 16px
}

.p-0 {
  padding: 0
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}



/* ===== UNSDG Banner Section ===== */
#unsdg-banner {
  background: #f9fff9; /* subtle light green background */
  padding: 80px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 60px auto;
  max-width: 1200px;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

/* Title styling */
#unsdg-banner .section-title {
  font-family: "Merriweather", "Georgia", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b5e20; /* rich green */
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Subtitle styling */
#unsdg-banner .section-sub {
  font-size: 1.1rem;
  color: #444;
  margin: 0 auto 40px;
  max-width: 720px;
  line-height: 1.6;
}

/* Banner container for perfect centering */
#unsdg-banner .banner {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image styling */
#unsdg-banner .responsive-banner {
  max-width: 900px;
  width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

/* Hover effect for slight motion */
#unsdg-banner .responsive-banner:hover {
  transform: scale(1.02);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  #unsdg-banner {
    padding: 60px 20px;
  }
  #unsdg-banner .section-title {
    font-size: 1.9rem;
  }
  #unsdg-banner .section-sub {
    font-size: 1rem;
  }
  #unsdg-banner .responsive-banner {
    width: 95%;
  }
}

@media (max-width: 600px) {
  #unsdg-banner {
    padding: 50px 15px;
  }
  #unsdg-banner .section-title {
    font-size: 1.6rem;
  }
  #unsdg-banner .section-sub {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
}
/* Banner Carousel Responsive Styles */
.hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-inner {
  width: 100%;
  display: flex;
}

.carousel-item {
  width: 100%;
  flex: 0 0 100%;
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Desktop view - maintain aspect ratio */
@media (min-width: 1200px) {
  .carousel-item img {
    max-height: 700px;
  }
}

/* Tablet view */
@media (max-width: 1199px) and (min-width: 769px) {
  .carousel-item img {
    max-height: 600px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .carousel-item img {
    max-height: 400px;
    object-fit: cover;
  }
  
  .hero {
    margin-bottom: 20px;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .carousel-item img {
    max-height: 300px;
  }
}

.core-values-horizontal .values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
  margin: 30px auto;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f5faf7;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.value-item:hover {
  transform: translateY(-4px);
}

.value-item .icon {
  font-size: 28px;
  flex-shrink: 0;
}

.value-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.value-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .value-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* Hover Effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.card:hover img {
  transform: scale(1.03);
}





/* Product Gallery Grid */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
  padding: 20px 0;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  max-width: 300px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;   /* center contents horizontally */
  text-align: center;    /* ensures text stays centered */
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

/* Product Title */
.product-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  text-align: center;  /* center text */
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: green;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover img {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1000px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 220px;
  }
}
.bubble:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}


/* 🌿 Usage Guidelines New Layout */
.usage-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-tag {
  background: #ecfdf5;
  color: #065f46;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-number {
  background: #007a3d;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.step-text { flex: 1; }

/* 🌱 Replacing Accordions with Static Boxes */
.usage-box {
  background: #fff;
  border-left: 6px solid #16a34a;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.usage-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.usage-box h3 {
  color: #065f46;
  margin-bottom: 10px;
  font-size: 18px;
}

.usage-box ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.usage-box li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* 🌿 Remove Accordion Styles (no toggle now) */
.accordion,
.accordion-header,
.accordion-content {
  display: none;
}

@media (max-width: 600px) {
  .usage-steps .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .usage-box {
    padding: 15px;
  }
}
.usage-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 122, 61, 0.15);
  border-left-color: #04b062;
  background: #f8fff9; /* soft organic glow */
  transition: all 0.3s ease;
}

.usage-box:hover h3 {
  color: #04b062;
  transition: color 0.3s ease;
}




/* 🌿 Global Hover Effects - Reduced */

/* 1️⃣ Image Hover Effect — applies to all images (reduced effect) */
/*img {*/
  /*transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;*/
/*}*/

img:hover {
  /*transform: scale(1.02);*/
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  filter: brightness(1.02);
  cursor: pointer;
}

/* 2️⃣ Button & Link Hover Effect — applies to all buttons and anchor tags */
button, 
a.btn, 
a.button, 
a[href] {
  transition: all 0.3s ease;
  text-decoration: none;
}

button:hover,
a.btn:hover,
a.button:hover,
a[href]:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* 3️⃣ Optional: Section Hover Background — gives soft interactive feel */
section {
  transition: background-color 0.4s ease;
}

section:hover {
  background-color: #f8fff5; /* light green tint */
}

.contact-info {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.contact-info .icon {
  margin-right: 6px;
}

.contact-info a {
  color: #065f46;
  text-decoration: none;
  margin-left: 28px; /* aligns phone numbers neatly under the label */
  display: inline-block;
}

.contact-info a:hover {
  text-decoration: underline;
}







.app-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Layout */
.app-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-left: 6px solid #16a34a;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,122,61,0.15);
  background: #f8fff9;
}

.app-icon {
  font-size: 30px;
  margin-right: 15px;
  flex-shrink: 0;
}

.app-content {
  flex: 1;
}

.app-content h3 {
  color: #065f46;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Read More Button (Right side) */
.read-more-btn {
  background: #16a34a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-left: 20px;
  white-space: nowrap;
}

.read-more-btn:hover {
  background: #0e8a3a;
  transform: scale(1.03);
}

/* Mobile View Fix */
@media (max-width: 768px) {
  .app-card {
    flex-direction: column;
    align-items: flex-start;
  }

.read-more-btn {
  background: #16a34a;
  color: #fff;
  padding: 4px 10px;       /* 🔹 Smaller padding */
  border-radius: 5px;      /* Slightly rounded */
  font-size: 12px;         /* 🔹 Smaller text */
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-left: 20px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

}

.quote-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 10px;
}

.section-sub {
  color: #444;
  font-size: 15px;
  margin-bottom: 40px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.1);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #16a34a;
  color: white;
}

.btn--primary:hover {
  background: #0e8a3a;
  transform: translateY(-2px);
}

.btn--secondary {
  background: #065f46;
  color: white;
}

.btn--secondary:hover {
  background: #047857;
}

.contact-card h3 {
  color: #065f46;
  margin-bottom: 15px;
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check {
  font-size: 20px;
  color: #16a34a;
}

a {
  color: #16a34a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Disable hover effects on the navbar brand (logo link + image) */
header .brand a:hover,
header .brand a:focus {
  transform: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  background: none !important;
}

header .brand .logo:hover {
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid--2 {
    display: flex;
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
}
/* === Benefits Section Layout === */
#benefits {
  padding: 60px 0;
}

#benefits .grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 cards in one row */
  gap: 24px; /* space between cards */
}

#benefits .card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Control card height here */
  min-height: 320px; /* Increase for taller cards, reduce for smaller */
}

/* Card hover animation (optional) */
#benefits .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* === Image Styling === */
#benefits .card img {
  width: 100%;
  height: 180px; /* Adjust this to change image height */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Headings and text inside card */
#benefits .card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #222;
}

#benefits .card .muted {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  #benefits .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #benefits .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #benefits .card {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  #benefits .grid {
    grid-template-columns: 1fr;
  }
  #benefits .card {
    min-height: 260px;
    padding: 16px;
  }
}

