@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --primary-dark: #1b2a16;
  --primary-light: #629a41;
  --primary-alt: #4a7c2c;
  --secondary-light: #e9ede6;
  --text-dark: #111111;
  --text-muted: #666666;
  --white: #ffffff;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Custom Utilities */
.bg-primary {
  background-color: var(--primary-light) !important;
}
.text-success {
  color: var(--primary-light) !important;
}
.custom-logo {
  height: 70px !important;
  width: 100%;
}
.desc_text a {
  color: var(--primary-alt) !important;
  font-weight: 700 !important;
  text-decoration: none;
}
/* Header & Nav */
.top-bar {
  background-color: #1b2a16;
  color: white;
  font-size: 14px;
}

.icon-primary {
  color: #629a41 !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-light);
}

/* Hero Section Refinement */
.hero {
  background:
    linear-gradient(
      98deg,
      rgb(98 154 65) 0%,
      rgb(45 110 6 / 0%) 69%,
      rgb(98 154 65 / 0%) 100%
    ),
    url(../images/home-banner-image.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-weight: 700 !important;
}

.hero .lead {
  opacity: 0.9;
}

.hero-cta-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 600 !important;
  color: var(--primary-dark) !important;
  background-color: #fff !important;
}

.hero-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

.hero-cta-btn:hover::before {
  left: 0;
}

.hero-cta-btn:hover {
  color: #fff !important;
  transform: translateX(5px);
  box-shadow: 0 15px 30px rgba(98, 154, 65, 0.25) !important;
}

.hero-cta-btn .icon-box {
  background-color: #629a41;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.hero-cta-btn .icon-img {
  filter: brightness(0) invert(1);
}

.hero-cta-btn .icon-box {
  background-color: var(--primary-light);
  width: 50px;
  height: 50px;
  transition: all 0.4s ease;
  z-index: 2;
}

.hero-cta-btn:hover .icon-box {
  background-color: #fff;
  transform: rotate(360deg);
}

.hero-cta-btn:hover .icon-img {
  filter: none;
}

/* Book Showcase Refinement */
.book-showcase {
  background-color: #fff;
  padding: 100px 0 60px;
}

.visual-assembly {
  width: 100%;
  position: relative;
  z-index: 5;
}

.author-overlap-wrapper {
  left: 50%;
  top: 50%;
  transform: translate(-10%, -50%); /* Adjust to peek from behind */
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-showcase .book-stack {
  z-index: 10; /* Highest priority */
  transform: translateX(-60px) translateY(0); /* Move book slightly left over portrait */
  position: relative;
}

/* 3D Book Three.js Styles */
#book-3d-wrapper {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* transform: translateX(-60px); Match previous layout */
  margin-left: -60px;
}

#book-3d-canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#book-3d-canvas:active {
  cursor: grabbing;
}

/* Removed book stack bg */

.book-showcase .book-main {
  max-height: 450px;
  filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.15));
}

.book-showcase .author-label {
  position: relative;
  right: -60px;
  top: -10px;
  width: auto;
  white-space: nowrap;
  text-align: left;
  z-index: 20;
}

.book-showcase .author-label .by {
  color: var(--primary-light);
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  margin-bottom: -5px;
}

.book-showcase .author-label .name {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1.4rem;
}

.book-showcase .portrait-wrapper {
  position: relative;
}

.book-showcase .portrait-wrapper img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
  background-color: #f0f5eb;
  padding: 0px;
}

.book-showcase .title-area h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.book-showcase .title-area .subtitle {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.2;
}

.book-showcase .description {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 540px;
}

.available-at-container {
  padding: 15px 0px 15px 220px;
  flex-wrap: nowrap;
  gap: 30px;
  position: absolute;
  z-index: 1;
  width: 100vh;
  right: -100%;
  bottom: 7.5%;
  border-radius: 20px;
  background-color: rgb(240, 245, 235);
}

.available-at-container .label {
  font-weight: 800;
  font-size: 1rem;
  color: #111;
  white-space: nowrap;
}

.available-at-container .logos {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.available-at-container .logos img {
  height: 35px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.available-at-container .logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.available-at-container .logos img.no-grayscale {
  filter: none;
  opacity: 1;
}

/* Contact Section */
.contact-section {
  background: #f2f5f7;
  padding: 80px 0;
}

/* Social Icons */
.cursor-pointer {
  cursor: pointer;
}
.bi:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/* Animations & Transitions */
.btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background-color: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
}
.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}
.btn-success {
  background-color: #629a41 !important;
  border-color: #629a41 !important;
}
.text-success {
  color: var(--primary-light) !important;
}

/* Top Bar */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 500;
}

.call-us-btn {
  background: var(--call-btn-bg);
  color: white;
  padding: 10px 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.call-us-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2b4b21;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.call-us-btn:hover::before {
  left: 0;
}

/* Navbar Tuning */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-link {
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 32px 20px !important;
  color: #444 !important;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background Slide Overlay */
.navbar .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background-color: #f1f8e9; */
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

/* Bottom Border Slide */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -105%;
  width: 100%;
  height: 4px;
  background-color: var(--primary-light);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before,
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  left: 0;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-light) !important;
}

.btn-outline-green {
  border: 2px solid #629a41;
  color: #629a41;
  font-weight: 600;
  padding: 8px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #629a41;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-outline-green:hover::before {
  left: 0;
}

.btn-outline-green:hover {
  background: #629a41;
  color: white;
}

/* Hero Section */

.hero-btn-capsule {
  background: white;
  padding: 10px 40px 10px 10px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #629a41;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-btn-capsule::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f1f8e9;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.hero-btn-capsule:hover::before {
  left: 0;
}

.hero-btn-capsule:hover {
  color: var(--primary-light);
}

.icon-wrapper-green {
  background: #6e973e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper-green img {
  height: 25px;
  filter: brightness(0) invert(1);
}

.hero-image {
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* 3D Bottle Container with Leaves Background */
#bottle-3d-container {
  background: url("../images/bg-leaves.png") center center no-repeat;
  background-size: cover;
  background-position: 73%;
}

.main-video-wrapper {
  position: relative;
  border-radius: 20px;
  border: 5px solid #629a41;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.video-overlay:hover {
  background: rgba(118, 163, 55, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay::after {
  content: "";
  border-left: 15px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 5px;
}

.video-btn-main {
  background: #73a34a; /* Slightly lighter matching the screen */
  color: white;
  border: none;
  padding: 14px 45px;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(115, 163, 74, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: -28px;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
}

.video-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2b4b21;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.video-btn-main:hover::before {
  left: 0;
}

.video-btn-main:hover {
  background: #2b4b21;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(115, 163, 74, 0.5);
}

.thumbnail-slider-container {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.swiper-slide {
  height: auto;
}

.nav-arrow {
  color: #629a41;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
  z-index: 10;
}

.nav-arrow:hover {
  color: #2b4b21;
  transform: scale(1.2);
}

.nav-arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.thumb-item {
  border: 2px solid #629a41;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  height: 70px;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumb-item.active {
  border-color: #2b4b21;
  border-width: 3px;
}

.thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2rem;
  opacity: 0.8;
}

.btn-outline-rounded-light {
  border: 1.5px solid #629a41;
  color: #3e680a;
  padding: 12px 35px;
  border-radius: 40px;
  background: #f1f8e9;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline-rounded-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #629a41;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-outline-rounded-light:hover::before {
  left: 0;
}

.btn-outline-rounded-light:hover {
  background: #629a41;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(98, 154, 65, 0.2);
}

.nav-arrow {
  color: #629a41;
  font-size: 1.5rem;
  cursor: pointer;
}

/* CareCredit Section */
.care-credit-banner {
  background: linear-gradient(135deg, #0f1a0b 0%, #1a2a16 100%);
  padding: 50px 0;
}

.care-credit-title {
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 1.2;
  color: white;
  letter-spacing: -0.5px;
}

/* Book Section */
.book-section {
  background-color: #e9ede6;
}

.book-card-white {
  border: 1px solid rgb(98, 154, 65);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 23px 45px 0px rgba(3, 40, 50, 0.22);
  background: #ffffff url("../images/chromosome-bg.png") right center no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.book-card-green {
  border: 1px solid rgb(98, 154, 65);
  background-image: linear-gradient(
    180deg,
    rgb(183, 241, 149) 2%,
    rgb(98, 154, 65) 100%
  );
  box-shadow: 0px 23px 45px 0px rgba(3, 40, 50, 0.22);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  color: white;
}

.book-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.book-subtitle {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}
.dropdown-item:focus, .dropdown-item:hover{
	background:#679a48;
	color:#fff !important;
}
/* Custom Nav Dropdown Styling */
.nav-dropdown-custom {
  padding: 10px 0;
  border-radius: 8px !important;
  min-width: 210px;
}

.nav-dropdown-custom .dropdown-item {
  color: #444 !important; /* Dark blue from user image */
  font-weight: 500;
  padding: 8px 20px;
  font-size: 0.95rem;
  transition: 0.2s all;
}

.nav-dropdown-custom .dropdown-item:hover {
  background-color: #f8fafc;
  color: #629a41 !important; /* Brand green on hover */
  padding-left: 25px;
}

.dropdown-divider-dotted {
  height: 0;
  margin: 0.2rem 20px;
  overflow: hidden;
  border-top: 1px dotted rgba(26, 75, 124, 0.3); /* Dotted dark blue color */
}

/* Navbar specific dropdown behavior */

.book-author-italic {
  font-style: italic;
  color: #999;
  font-size: 1.1rem;
  line-height: 1.3;
}

.book-btn-green {
  background: #629a41;
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(98, 154, 65, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.book-btn-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2b4b21;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.book-btn-green:hover::before {
  left: 0;
}

.book-btn-green:hover {
  background: #2b4b21;
  color: white;
  transform: translateY(-2px);
}

.btn-pill-white {
  background: white;
  color: #4a7c2c;
  border: none;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  word-wrap: break-word;
}

.btn-pill-white:hover {
  background: #f1f8e9;
  color: #2b4b21;
}

.book-img-large {
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.book-img-small {
  max-height: 250px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Feature Section & Cards */
.feature-section {
  background-color: #f2f5f7;
}

.feature-card {
  background-color: #f1f4f0;
  border: 2px solid #629a41;
  border-radius: 40px;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .card-img-wrapper {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
  background-color: rgb(182, 182, 182);
}

.feature-card .card-img-top {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.feature-card .card-title {
  color: #629a41;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.feature-card .card-text {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 30px;
}

.learn-more-btn {
  background-color: rgb(98, 154, 65);
  align-self: flex-end;
  color: white;
  border: none;
  border-radius: 10px 0 30px 0; /* Custom corner radius for the button */
  padding: 12px 25px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: -20px; /* Offset to align with card edge */
  margin-bottom: -20px; /* Offset to align with card edge */
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.learn-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2b4b21;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.learn-more-btn:hover::before {
  left: 0;
}

.learn-more-btn:hover {
  background-color: #2b4b21;
  color: white;
}

.learn-more-btn i {
  font-size: 1.2rem;
}

/* Footer Redesign */

/* Footer Redesign */
.main-footer {
  background-color: #212c1a;
  color: #fff;
  padding: 80px 0 0 0;
}

.footer-top {
  padding-bottom: 60px;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-social-circles {
  display: flex;
  gap: 15px;
}

.social-circle {
  width: 45px;
  height: 45px;
  background-color: #9ae76d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a261a !important;
  font-size: 1.4rem;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #629a41;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.social-circle:hover::before {
  left: 0;
}

.social-circle:hover {
  background-color: #74b34d;
}

/* Global Button Animations */
.call-us-btn:hover,
.btn-outline-green:hover,
.hero-btn-capsule:hover,
.video-btn-main:hover,
.btn-outline-rounded-light:hover,
.book-btn-green:hover,
.btn-pill-white:hover,
.mag-btn-pill:hover,
.social-circle:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2) !important;
  opacity: 0.95;
}

/* Global Button Touch Feedback - Keep it snappy for clicks */
.call-us-btn:active,
.btn-outline-green:active,
.hero-btn-capsule:active,
.video-btn-main:active,
.btn-outline-rounded-light:active,
.book-btn-green:active,
.btn-pill-white:active,
.learn-more-btn:active,
.mag-btn-pill:active,
.social-circle:active {
  transform: scale(0.96);
  transition: transform 0.1s;
}

/* Remove old hover logic that would conflict with sliding fill */
.call-us-btn:hover,
.btn-outline-green:hover,
.hero-btn-capsule:hover,
.video-btn-main:hover,
.btn-outline-rounded-light:hover,
.book-btn-green:hover,
.btn-pill-white:hover,
/* .learn-more-btn:hover, */
.mag-btn-pill:hover,
.social-circle:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2) !important;
  opacity: 1;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b2ccba;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s color;
}

.footer-links a:hover {
  color: #629a41;
}

.footer-contact-block {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  color: #629a41;
  font-size: 1.4rem;
  margin-top: 2px;
}

.footer-copyright-area {
  background-color: #151714;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 0.85rem;
}

.footer-bottom-info a {
  color: #629a41;
  text-decoration: none;
}

/* Sections */

/* Core Page Sections */

/* Removed Unused Map & Testimonials Intro */

/* Core Project Sections */

/* About the book Section Refinement */
.about-book {
  background-color: #f2f5f7;
  padding: 80px 0;
}

.about-book h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
}

.about-book p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #000;
}

.about-quote-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.quote-wrapper {
  position: relative;
  padding: 0;
}

.about-quote {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin: 0;
  display: inline;
	background:linear-gradient(to right, #6c757d 0%, /* Wolves, */ #6c757d 12%, #629a41 8%, /* Gardens, */ #629a41 23%, #5b320d 20%, /* and */ #5b320d 40%, #111 24%, /* rest */ #111 100%);
	  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-icon.open {
  margin-top: -15px;
}

.quote-icon.close {
  transform: rotate(180deg);
}

.author-name {
  color: #629a41 !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  margin-bottom: 5px !important;
}

.author-bio {
  color: #000 !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.info-label {
  font-weight: 400;
  color: #000;
  margin-right: 5px;
  font-size: 1.1rem;
}

.info-url {
  color: #629a41;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #629a41;
  padding-bottom: 2px;
  font-size: 1.1rem;
}

.info-url:hover {
  color: #4a7c2c;
  border-color: #4a7c2c;
}

/* Health Tabs Section Refinement */
.health-tabs {
  background-color: #f1f4f0 !important;
}

.health-tabs .tabs-container {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

.health-nav-tabs {
  border: none;
  background: transparent;
}

.health-nav-tabs .nav-item {
  padding: 0;
}

.health-nav-tabs .nav-link {
  border: none !important;
  border-radius: 0 !important;
  padding: 10px 15px !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: white !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-transform: none !important;
}

/* Specific Tab Colors */
#tab-hormone-tab {
  background-color: #629a41 !important;
}
#tab-fatigue-tab {
  background-color: #6fb845 !important;
}
#tab-brain-tab {
  background-color: #73c3b1 !important;
}

/* Active State Caret */
.health-nav-tabs .nav-link {
  position: relative;
}

.health-nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid;
  z-index: 20;
  pointer-events: none;
}

#tab-hormone-tab.active::after {
  border-top-color: #629a41 !important;
}
#tab-fatigue-tab.active::after {
  border-top-color: #6fb845 !important;
}
#tab-brain-tab.active::after {
  border-top-color: #73c3b1 !important;
}

.health-nav-tabs .nav-item:first-child .nav-link {
  border-radius: 20px 0 0 0 !important;
}
.health-nav-tabs .nav-item:last-child .nav-link {
  border-radius: 0 20px 0 0 !important;
}
.health-nav-tabs .nav-link {
  overflow: inherit;
}
.health-tab-pane-content {
  padding: 60px 40px !important;
  background-image: url("../images/chromosome-bg.png");
  background-size: cover;
  background-position: center;
}

.tab-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.sub-title-bold {
  font-weight: 800;
  color: #111;
  font-size: 1.1rem;
}

.italic {
  font-style: italic;
}

.label-green {
  color: #629a41;
  font-weight: 800;
  margin-right: 4px;
}

.health-notebook-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.btn-read-more {
  background-color: #6d9c49;
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(109, 156, 73, 0.3);
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: #5a823c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(109, 156, 73, 0.4);
}

/* Contact Section Refinement */
.appointment-card {
  background: linear-gradient(
    330deg,
    rgb(103, 154, 74) 0%,
    rgb(124, 199, 80) 100%
  );
  box-shadow: 0px 23px 45px 0px rgba(3, 40, 50, 0.15);
  padding: 35px 40px;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: all 0.3s ease;
  cursor: pointer;
}

.appointment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 30px 60px 0px rgba(3, 40, 50, 0.2) !important;
}

.card-bg-icon-left {
  position: absolute;
  top: 0;
  right: 0;
  margin: 35px;
  z-index: 2;
}

.appointment-label {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.1;
}

.appointment-phone {
  font-size: 4rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: -1px;
}

.details-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

.card-bg-icon-right {
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin: 20px;
}

.title-icon {
  height: 25px;
  width: auto;
}

.item-icon {
  width: 20px;
  height: auto;
  margin-top: 5px;
}

.contact-item p {
  font-size: 1.1rem;
  color: #111;
}

.contact-item a {
  transition: opacity 0.3s ease;
  width: 100%;
}

.contact-item a:hover {
  opacity: 0.7;
}

.health-tabs {
  background-color: #f1f4f0;
}

.icon-bright {
  filter: brightness(10);
}

/* --- Responsive Merged from responsive.css --- */

/* Global Overflow Fix */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Premium Offcanvas Menu */
.offcanvas {
  background: #ffffff url("../images/chromosome-bg.png") right center no-repeat;
  background-size: cover;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.offcanvas-header .btn-close {
  background-color: #629a41;
  opacity: 1;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  padding: 10px;
  transition: 0.3s;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(90deg);
  background-color: #2b4b21;
}

/* --- Modernized Biography & Sidebar --- */
.bio-section {

    position: relative;
    overflow: hidden;
}
.page-header {
  background: linear-gradient(135deg, #f8fbf6 0%, #e9f0e4 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dna-pattern-subtle {
  background-image: url("../images/dna-pattern.png");
  background-size: 400px;
  opacity: 0.03;
}

.chromosome-pattern-subtle {
  background-image: url("../images/chromosome-bg.png");
  background-size: cover;
  opacity: 0.05;
}

.color-primary-alt {
  color: var(--primary-alt);
}

.modern-bio-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.modern-bio-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.bio-img-premium {
  border: 4px solid white;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-bio-card:hover .bio-img-premium {
  transform: scale(1.03) rotate(1deg);
}

.accent-blob {
  width: 150px;
  height: 150px;
  background: var(--primary-light);
  filter: blur(50px);
  opacity: 0.2;
  top: 10%;
  left: 10%;
  border-radius: 50%;
}

.bio-text-modern p {
  line-height: 1.8;
  color: #444;
}

/* Modern Sidebar Widgets */
.glass-widget {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.bg-primary-light {
  background-color: var(--primary-light);
}
.bg-primary-alt {
  background-color: var(--primary-alt);
}

.modern-link-list a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.modern-link-list a:hover {
  background: rgba(var(--primary-light-rgb), 0.05);
  padding-left: 30px !important;
  color: var(--primary-light);
}

.fs-small {
  font-size: 0.85rem;
}

/* Custom Badge Modernization */
.badge.rounded-pill {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Social Circles Modern */
.social-circle-glass {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle-glass:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  color: white;
}

.footer-link-list a:hover {
  color: var(--primary-light) !important;
  padding-left: 5px;
}

.hover-primary:hover {
  color: var(--primary-light) !important;
}

.filter-white {
  filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
  .modern-sidebar {
    margin-top: 40px;
  }
}

.page-header {
  background: url("../images/mini-banner-bg.jpg") top/cover no-repeat;
  padding: 60px 0;
  position: relative;
}
.page-header .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-custom {
  font-size: 0.95rem;
  font-weight: 500;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
  color: white;
}

.breadcrumb-custom span {
  color: white;
  font-weight: 700;
}

.breadcrumb-custom i {
  font-size: 0.8rem;
  vertical-align: middle;
}

.page-header h1 {
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Blog Card Styles */
.blog-card {
  background-color: #fff;
  border: 3px solid #629a41;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(98, 154, 65, 0.15);
}

.blog-card-img-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  color: #629a41;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--primary-dark);
}

.blog-card-excerpt {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.blog-card-footer {
  margin-top: auto;
}

.btn-pill-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #629a41;
  color: #629a41;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-pill-action span {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-pill-action .btn-arrow-asset {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  width: 22px;
  height: auto;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-pill-action:hover {
  background: #629a41;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(98, 154, 65, 0.2);
}

.btn-pill-action:hover span {
  transform: translateX(-15px);
}

.btn-pill-action:hover .btn-arrow-asset {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  filter: brightness(0) invert(1);
}

/* Custom Circular Pagination */
.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  list-style: none;
  padding: 0;
}

.page-item-custom .page-link-custom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #629a41;
  background: #fff;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.page-item-custom .page-link-custom:hover {
  background-color: #f1f8e9;
  color: #629a41;
}

.page-item-custom.active .page-link-custom {
  background-color: #6d9c49; /* Matching the active green in image */
  color: #fff;
  border-color: #6d9c49;
}

.page-item-custom .page-link-custom i {
  font-size: 1.2rem;
  color: #629a41;
  font-weight: 900;
}

.page-item-custom.active .page-link-custom:hover {
  background-color: #6d9c49;
}

/* Contact Section Redesign */
.contact-section {
  background-color: #e9ede6;
  padding: 80px 0;
}

.contact-title {
  color: #629a41;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.contact-info-col {
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: #4a7c2c;
  margin-top: 2px;
}

.contact-label {
  color: #4a7c2c;
  font-size: larger;
  display: block;
  margin-bottom: 2px;
  font-weight: bold;
}

.contact-value {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

.contact-map-container {
  margin-top: 60px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.contact-map-wrapper {
  background: #fff;
  border: 8px solid #fff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  height: 450px;
  position: relative;
  z-index: 5;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Page Main Area */
.contact-main-section {
  background-color: #f2f5f7; /* Light green background as per image */
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-content .form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  transition: all 0.3s ease;
}

.contact-form-content .form-control:focus {
  border-color: #629a41;
  box-shadow: 0 0 0 0.25rem rgba(98, 154, 65, 0.25);
  outline: none;
}

.contact-form-content .form-label {
  color: #333;
  margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-info-card {
  background: #fff;
  padding: 30px 25px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #629a41;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.contact_page_cards .col-lg-4:nth-child(2) .contact-info-card {
  background-color: rgb(239, 247, 230);
}
.contact_page_cards .col-lg-4:nth-child(3) .contact-info-card {
  background-color: rgb(234, 253, 212);
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(98, 154, 65, 0.15);
}

.contact-icon-circle.shadowed {
  box-shadow: 0 0 30px rgba(98, 154, 65, 0.4);
}

.contact-icon-circle {
  width: 130px;
  height: 130px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #53bc16, #92fb3c) border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(98, 154, 65, 0.3);
  border: 4px solid transparent;
}

.contact-icon-circle img {
  width: 65px;
  height: auto;
}

.contact-phone-number {
  color: #4a7c2c;
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-green-nhf-pill {
  background-color: #386c1a;
  color: #fff;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
  align-self: center;
}

.btn-green-nhf-pill:hover {
  background-color: #3d6b24;
  color: #fff;
  transform: scale(1.02);
}

.btn-submit-custom {
  background-color: #4a7c2c;
  color: #fff;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-submit-custom:hover {
  background-color: #3d6b24;
  color: #fff;
}

/* Redesigned Contact Form Section */
.contact-form-redesign-wrapper {
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  border: 1px solid rgb(133, 202, 105);
  border-radius: 20px;
  background-color: rgb(227, 241, 222);
}

.contact-image-col {
  background-image: url("../images/dr-contact.jpg");
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.contact-form-col {
  background-color: #e3eed7; /* Matching light green in image */
  padding: 60px 45px;
}

.contact-form-col h2 {
  color: #000;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.contact-form-col p {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 35px;
  font-weight: 400;
}

.custom-form-group {
  margin-bottom: 22px;
}

.custom-form-group label {
  display: block;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.custom-form-control {
  width: 100%;
  padding: 12px 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  color: #333;
  border: 2px solid rgb(122, 156, 62);
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
}

.custom-form-control::placeholder {
  color: #999;
}

.custom-form-control:focus {
  outline: none;
  border-color: #4a7c2c;
  box-shadow: 0 4px 15px rgba(98, 154, 65, 0.15);
}

.btn-submit-pill {
  background-color: #457628;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 10px 10px 35px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(69, 118, 40, 0.3);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-submit-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #386121; /* Darker green for slide-in */
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-submit-pill:hover::before {
  left: 0;
}

.btn-submit-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(69, 118, 40, 0.4);
}

.arrow-circle {
  width: 38px;
  height: 38px;
  background-color: #fff;
  color: #457628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-submit-pill:hover .arrow-circle {
  transform: translateX(3px);
}

/* Testimonial Tabs Styling */
.testimonial-tabs-container {
  background-color: #fff;
  border: 1px solid #629a41;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.nav-pill-custom {
  display: flex;
  width: 100%;
}

.nav-pill-custom .nav-item {
  flex: 1;
}

.nav-pill-custom .nav-link {
  width: 100%;
  border-radius: 0;
  padding: 20px;
  background: #fff;
  color: #444;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  border-right: 1px solid #629a41;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-pill-custom .nav-item:last-child .nav-link {
  border-right: none;
}
.testimonial-tabs-container .nav-link::before {
  content: none;
}
.testimonial-tabs-container .nav-link::after {
  content: none;
}
.nav-pill-custom .nav-link.active {
  background-color: #4a8301 !important;
  color: #fff !important;
}

.tabs_icon {
  width: 35px;
  height: auto;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.nav-link.active .tabs_icon {
  filter: brightness(0) invert(1);
}

.nav-pill-custom .nav-link i {
  font-size: 1.5rem;
}

/* Video Testimonial Card */
.video-testimonial-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  border: 3px solid #629a41;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16/11;
  transition: all 0.3s ease;
}

.video-testimonial-card:hover {
  box-shadow: 0 15px 35px rgba(98, 154, 65, 0.25);
  transform: translateY(-5px);
}

.video-testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.9;
}

.video-testimonial-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.video-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 5px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 18px;
  background-color: rgba(30, 51, 3, 0.678);
}

.video-info {
  flex-grow: 1;
}

.video-title {
  color: #fff;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.video-category {
  color: #afd87a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.play-btn-card {
  width: 35px;
  height: 35px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Clean Testimonials Styles */
.testimonials-clean-section {
  background: #fff;
}

.testimonials-wrapper {
  position: relative;
  padding: 20px 0;
}

.testimonial-card-v2 {
  background: linear-gradient(
    338deg,
    rgb(219 242 189) 0%,
    rgb(255, 255, 255) 90%
  );
  border: 3px solid #629a41;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0px 8px 16px 0px rgba(1, 33, 7, 0.1);
}

.testimonial-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(98, 154, 65, 0.1);
}

.card-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar-v2 {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #629a41;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure image stays circular */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.user-avatar-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name-v2 {
  font-weight: 700;
  color: #629a41;
  font-size: 1.6rem;
  margin: 0;
}

.card-v2-body {
  flex-grow: 1;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

.card-v2-footer {
  display: flex;
  justify-content: center;
}



/* --- Single Blog Post --- */
.category-badge {
  background: var(--primary-light);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-meta-single {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  align-items: center;
}

.blog-meta-single span i {
  color: var(--primary-light);
}

.blog-content-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.blog-body-text {
  font-size: 1.15em;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-body-text p {
  margin-bottom: 1.5rem;
}

.blog-body-text h2,
.blog-body-text h3,
.blog-body-text h4,
.blog-body-text h5 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.blog-body-text blockquote {
  background: #f8fbf6;
  border-left: 4px solid var(--primary-light);
  padding: 20px 30px;
  font-style: italic;
  font-size: 1.25rem;
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}

.author-card {
  background: #f8fbf6;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  border: 1px solid rgba(98, 154, 65, 0.1);
}

.author-card .author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
/* Natural Difference Section */
.natural-difference-section{
    background: #f2f5f7;
}
.text-green-nhf {
    color: #629a41;
}

.feature-icon-asset {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-icon-asset img {
    width: 100%;
    height: auto;
}


.quote-decorative-border {
    border: 9px solid #629a41;
    border-radius: 70px;
    padding: 40px 120px;
    position: relative;
}

.quote-text {
    font-size: 1.9rem;
    color: #333;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.italic-v2 {
    font-style: italic;
}

.natural-difference-section .quote-icon {
    position: absolute;
    width: 60px;
    height: 40px;
    background: #f2f5f7; /* Matches .natural-difference-section background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.natural-difference-section .quote-icon img {
    width: 45px;
    height: auto;
    filter: invert(50%) sepia(13%) saturate(1831%) hue-rotate(56deg) brightness(94%) contrast(84%); /* Targets approx #629a41 */
}

.natural-difference-section .quote-icon.top-left {
    top: -22px;
    left: 60px;
}

/* .natural-difference-section .quote-icon.top-left img {
    transform: scaleX(-1);
}

.natural-difference-section .quote-icon.bottom-right img {
    transform: scaleY(-1)
} */

.natural-difference-section .quote-icon.bottom-right {
    bottom: -22px;
    right: 60px;
}

.natural-difference-section .flip-icon {
    transform: rotate(180deg);
}
.biography-list{
	column-count:2;
}

@media (max-width: 768px) {
    .natural-difference-section .quote-text {
        font-size: 1.4rem;
    }
   .natural-difference-section .quote-decorative-border {
        padding: 40px 20px;
        border-width: 5px;
        border-radius: 40px;
    }
    .natural-difference-section .quote-icon {
        width: 50px;
        height: 30px;
        left: 20px;
    }
    .natural-difference-section .quote-icon img {
        width: 35px;
    }
    .natural-difference-section .quote-icon.top-left {
        top: -15px;
    }
    .natural-difference-section .quote-icon.bottom-right {
        bottom: -15px;
        right: 20px;
        left: auto;
    }
	.biography-list{
		column-count:1;
	}
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color:#629a41;
}
.desc_text{
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Roboto';
}