body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
}

/* Logo */
.logo {
  height: 45px;
  border-radius: 50%;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: #2e7d32 !important;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #2e7d32 !important;
}

/* Mobile Navbar Slide */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    transition: all 0.4s ease;
    padding: 2rem;
  }
  .navbar-collapse.show {
    left: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  background: url("https://images.unsplash.com/photo-1606787366850-de6330128bfc?auto=format&fit=crop&w=1600&q=80")
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    rgba(46, 125, 50, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-top: 1rem;
}

/* CTA Buttons */
.hero-cta {
  margin-top: 2rem;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-card i {
  font-size: 1.4rem;
}

.cta-card:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(46, 125, 50, 0.9);
  border-color: transparent;
}

/* Color accent for each */
.cta-card.call:hover {
  background: linear-gradient(135deg, #43a047, #66bb6a);
}

.cta-card.whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

.cta-card.email:hover {
  background: linear-gradient(135deg, #4caf50, #81c784);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta-card {
    width: 85%;
    justify-content: center;
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-weight: bold;
  color: #2e7d32;
  margin: 30px 0 30px;
  font-size: 2rem;
}

/* Intro Section */
.intro-section {
  background: linear-gradient(rgba(34, 80, 40, 0.8), rgba(34, 80, 40, 0.8)),
    url("https://i.imgur.com/O0yYV0R.png"); /* subtle organic leaf pattern */
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
}

.intro-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.intro-content {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .intro-card {
    padding: 25px;
  }

  #intro .section-title {
    font-size: 26px;
  }

  .intro-text {
    font-size: 15px;
  }
}

/* Key Highlights Section */
/* ===============================
   KEY HIGHLIGHTS – INTERACTIVE
================================ */
#highlights {
  background: #f9fafb;
}

.highlight-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 22px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* soft gradient hover */
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15),
    rgba(16, 185, 129, 0.15)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Icon */
.highlight-card .icon {
  font-size: 2.2rem;
  color: #16a34a;
  margin-bottom: 15px;
}

/* ===============================
   MOBILE: 2 CARDS PER ROW
================================ */
@media (max-width: 576px) {
  #highlights .col-md-4 {
    width: 50%;
  }

  .highlight-card {
    padding: 22px 16px;
  }

  .highlight-card h5 {
    font-size: 0.95rem;
  }

  .highlight-card p {
    font-size: 0.85rem;
  }
}

/* Product Cards */
.product-card {
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card .card-img-top {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 10px 0 0;
}

/* About Us Section */
.about-us {
  background: linear-gradient(#f4f9f4, #eaf5ea);
  padding: 80px 0;
}

.about-us .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2d5a27;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-us .sub-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #3b7334;
  margin-bottom: 20px;
}

.about-us .about-text {
  max-width: 900px;
  margin: auto;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #2f2f2f;
}

.about-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border-left: 6px solid #3b7334;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5a27;
  margin-bottom: 12px;
}

.about-card p,
.about-card ul {
  font-size: 1.05rem;
  color: #454545;
  line-height: 1.7;
}

.about-card ul {
  margin-top: 10px;
}

.about-card ul li {
  margin-bottom: 8px;
}

.assurance-card {
  border-left: 6px solid #6ab04c;
  background: #f7fff5;
}

/* Franchise Section */
.franchise-section {
  background: linear-gradient(#f8fff7, #eef9ec);
  padding: 80px 0;
}

.franchise-section .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2d5a27;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.franchise-section .sub-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #3b7334;
  margin-bottom: 18px;
}

.franchise-text {
  max-width: 900px;
  margin: auto;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #2f2f2f;
}

/* Franchise Cards */
.franchise-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border-left: 6px solid #3b7334;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.franchise-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5a27;
  margin-bottom: 12px;
}

.franchise-card p,
.franchise-card ul {
  font-size: 1.05rem;
  color: #454545;
  line-height: 1.7;
}

.franchise-card ul {
  margin-top: 10px;
}

.franchise-card ul li {
  margin-bottom: 8px;
}

/* Apply Card */
.apply-card {
  border-left: 6px solid #6ab04c;
  background: #f7fff5;
}

/* Apply button */
.apply-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  background: #3b7a32;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #2f5e26;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* Career Section */
.career-section {
  background: linear-gradient(#f3fff9, #e8f9ee);
  padding: 80px 0;
}

.career-section .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2d5a27;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.career-section .sub-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #3b7334;
  margin-bottom: 18px;
}

.career-intro {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2f2f2f;
}

/* Career Section – Premium Look */
.career-upgraded {
  padding: 90px 0;
  background: linear-gradient(135deg, #f4fff6, #e8f9ea);
}

.career-header {
  max-width: 800px;
  margin: auto;
}

.career-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #2d5a27;
  text-transform: uppercase;
}

.career-subtitle {
  font-size: 1.15rem;
  color: #4a4a4a;
  margin-top: 12px;
}

/* Boxes */
.career-box {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #d7edd8;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.career-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

/* Icon */
.career-icon {
  font-size: 3rem;
  color: #2d5a27;
  margin-bottom: 10px;
}

/* Headings & List */
.career-box h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5a27;
}

.career-box ul {
  margin-top: 15px;
  padding-left: 18px;
  color: #444;
}

.career-email {
  color: #1d6a1f;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

.career-email:hover {
  text-decoration: underline;
}

/* Button */
.apply-btn {
  background: #2d5a27;
  color: #fff;
  padding: 12px 35px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #1d401a;
  transform: translateY(-5px);
}

.faq-section {
  background: #f4fbf5;
}

.section-title {
  font-weight: 700;
  color: #1b5e20;
}

.accordion-button {
  background: #e8f5e9;
  color: #1b5e20;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: #c8e6c9;
  color: #1b5e20;
}

.accordion-item {
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.accordion-body {
  background: #ffffff;
  color: #444;
  padding: 15px 20px;
}

/* Shared Section Style */
.terms-section,
.privacy-section {
  background: #f4fbf5;
}

.section-title {
  font-weight: 700;
  color: #1b5e20;
  text-transform: uppercase;
}

.intro-text {
  max-width: 700px;
  margin: auto;
  color: #444;
}

/* Content Box */
.terms-box,
.privacy-box {
  background: #ffffff;
  border-left: 5px solid #2e7d32;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.terms-box ul li,
.privacy-box ul li {
  margin-bottom: 8px;
  color: #555;
}

/* =========================
     FOOTER STORY
  ========================= */
.footer-section {
  background: #022c22;
  color: #e5e7eb;
  padding: 60px 0 30px;
}

.footer-story h3 {
  font-weight: 800;
  margin-bottom: 18px;
  color: #a7f3d0;
  text-align: center;
}

.footer-story p {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* =========================
       FOOTER SOCIAL ICONS
    ========================= */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #22c55e;
  transform: translateY(-5px) scale(1.1);
  color: #022c22;
}

/* =========================
       COPYRIGHT
    ========================= */
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 20px;
}

/* =========================
       MOBILE OPTIMIZATION
    ========================= */
@media (max-width: 768px) {
  .about-card {
    padding: 22px;
  }

  .footer-story h3 {
    font-size: 1.3rem;
  }
}

/* ===============================
   PRODUCTS – MOBILE BEHAVIOR
================================ */

/* Hide product cards on mobile */
@media (max-width: 768px) {
  .desktop-products {
    display: none;
  }
}
/* ===============================
   MOBILE EXPLORE PRODUCTS – CLASSIC
================================ */

.mobile-explore-products {
  display: none;
}

@media (max-width: 768px) {
  .mobile-explore-products {
    display: block;
  }
}

.explore-box {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 45px 26px;
  box-shadow: 0 12px 30px rgba(22, 101, 52, 0.12);
  position: relative;
}

/* Leaf Icon */
.explore-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

/* Heading */
.explore-box h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 10px;
}

/* Subtitle */
.explore-box p {
  font-size: 0.95rem;
  color: #065f46;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Button */
.explore-btn {
  background-color: #15803d;
  color: #ffffff;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #166534;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.3);
}
