.inner-banner {
  width: 100%;
  height: auto;
  padding: 60px 0 60px;
  background: var(--primary-dark);
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-bottom: 10px solid var(--primary-color);
}

.inner-banner .breadcrumb {
  margin-bottom: 10px;
  font-size: 14px;
}

.inner-banner .breadcrumb a {
  text-decoration: none;
  color: var(--white-color);
}

.inner-banner .breadcrumb a:hover {
  color: var(--white-color);
}

.inner-banner .breadcrumb .separator {
  margin: 0 5px;
  color: var(--white-color);
}

.inner-banner .breadcrumb .current {
  color: var(--white-color);
  font-weight: 600;
}

.inner-banner h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
}

/* ================ HELP PAGE CSS STARTS HERE ================== */

.help-support .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.help-support .search-box {
  background: var(--white-color);
  border-radius: var(--radius);
  padding: 5px;
  display: flex;
  border: 1px solid #ebebeb;
  margin-bottom: 40px;
}

.help-support .search-box input {
  flex: 1;
  border: none;
  padding: 15px;
  font-size: 1rem;
  outline: none;
  border-radius: var(--radius);
}

.help-support .faq-wrapper {
  background: var(--white-color);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 60px;
}

.help-support details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.help-support summary {
  padding: 20px;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.help-support summary::after {
  content: "\f102";
  color: var(--primary-color);
  transition: var(--transition);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
}

.help-support details[open] summary::after {
  transform: rotate(180deg);
}

.help-support .content {
  padding: 0 20px 20px;
  color: var(--text-color);
  line-height: 1.6;
}

.help-support .support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.help-support .support-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--radius);
  border-left: 5px solid var(--primary-color) !important;
  text-align: left;
  transition: var(--transition);
  border: 1px solid #ebebeb;
}

.help-support .support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.help-support .support-card h3 {
  color: var(--primary-dark);
  margin-top: 0;
}

/* ================ HELP PAGE CSS ENDS HERE ================== */

/* ================ RETURN POLICY PAGE CSS STARTS HERE ================== */

.return-policy-page .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.return-policy-page .policy-notice {
  background: var(--secondary-color);
  color: var(--black-color);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 40px;
  font-size: 0.95rem;
  border-left: 5px solid var(--primary-dark);
}

.return-policy-page .policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .return-policy-page .policy-grid {
    grid-template-columns: 1fr;
  }
}

.return-policy-page .policy-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #ebebeb;
  transition: var(--transition);
}

.return-policy-page .policy-card:hover {
  transform: translateY(-5px);
}

.return-policy-page .policy-card h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.return-policy-page .policy-card ul {
  padding-left: 20px;
  margin-top: 15px;
}

.return-policy-page .policy-card ul li {
  margin-bottom: 8px;
}

.return-policy-page .return-action-box {
  margin-top: 50px;
  text-align: center;
  background: var(--primary-dark);
  color: var(--white-color);
  padding: 40px;
  border-radius: var(--radius);
}

.return-policy-page .return-action-box h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.return-policy-page .btn-policy {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  padding: var(--btn-padding);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 400;
  margin-top: 20px;
  transition: var(--transition);
  border-radius: 30px;
}

.return-policy-page .btn-policy:hover {
  background: var(--secondary-color);
  color: var(--black-color);
}

/* ================ RETURN POLICY PAGE CSS ENDS HERE ================== */

/* ================ CONTACT US PAGE CSS STARTS HERE ================== */

.contact-us-page .contact-wrapper {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-us-page .contact-info {
  flex: 1;
  min-width: 300px;
  background: var(--primary-dark);
  color: var(--white-color);
  padding: 40px;
  border-radius: var(--radius);
}

.contact-us-page .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-us-page .info-item .icon {
  font-size: 24px;
  background: var(--primary-color);
  padding: 10px;
  border-radius: var(--radius);
}

.contact-us-page .info-item h4 {
  margin: 0 0 5px 0;
  color: var(--secondary-color);
}

.contact-us-page .info-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-us-page .contact-form-container {
  flex: 2;
  min-width: 300px;
  background: var(--white-color);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-us-page .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-us-page .form-group {
  margin-bottom: 20px;
  width: 100%;
}

.contact-us-page .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.contact-us-page input,
.contact-us-page select,
.contact-us-page textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.contact-us-page input:focus,
.contact-us-page textarea:focus {
  border-color: var(--primary-color);
}

.contact-us-page .social-icons a {
  color: var(--white-color);
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  margin-right: 12px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .contact-us-page .form-row {
    flex-direction: column;
    gap: 0;
  }
}
/* ================ CONTACT US PAGE CSS ENDS HERE ================== */

/* ================ CAREERS PAGE CSS STARTS HERE ================== */

.careers-page .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.careers-page .careers-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-color);
  line-height: 1.8;
}

.careers-page .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.careers-page .benefit-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  border: 1px solid #ebebeb;
}

.careers-page .benefit-card:hover {
  border-bottom: 4px solid var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.careers-page .benefit-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.careers-page .benefit-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.careers-page .job-list {
  background: var(--white-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.careers-page .job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.careers-page .job-item:last-child {
  border-bottom: none;
}

.careers-page .job-item:hover {
  background: #fdfdfd;
}

.careers-page .job-info h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.careers-page .job-info p {
  margin: 5px 0 0;
  color: var(--text-color);
  font-size: 0.9rem;
}

.careers-page .careers-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: var(--primary-dark);
  color: var(--white-color);
  border-radius: var(--radius);
}

.careers-page .careers-cta h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

@media (max-width: 600px) {
  .careers-page .job-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .careers-page .btn-career {
    width: 100%;
    text-align: center;
  }
}

/* ================ CAREERS PAGE CSS ENDS HERE ================== */

/* ================ WHO WE ARE PAGE CSS STARTS HERE ================== */

.who-we-are-page .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.who-we-are-page .about-flex-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.who-we-are-page .about-text {
  flex: 1;
}

.who-we-are-page .about-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-top: 0;
}

.who-we-are-page .about-text p {
  color: var(--text-color);
  margin-bottom: 20px;
}

.who-we-are-page .stats-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.who-we-are-page .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.who-we-are-page .stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.who-we-are-page .about-image-box {
  flex: 1;
  height: 400px;
  background: var(--primary-dark);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are-page .image-overlay {
  background: rgba(37, 104, 14, 0.8);
  color: var(--white-color);
  padding: 30px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: var(--radius);
  border: 2px solid var(--secondary-color);
}

.who-we-are-page .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.who-we-are-page .value-card {
  background: var(--white-color);
  padding: 40px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.who-we-are-page .value-card:hover {
  transform: translateY(-10px);
}

.who-we-are-page .value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.who-we-are-page .value-card h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .who-we-are-page .about-flex-row {
    flex-direction: column;
  }

  .who-we-are-page .about-image-box {
    width: 100%;
    height: 300px;
  }
}

/* ================ WHO WE ARE PAGE CSS ENDS HERE ================== */

/* ================ REVIEWS PAGE CSS STARTS HERE ================== */

.reviews-page .rating-overview {
  background: var(--white-color);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.reviews-page .average-rating {
  text-align: center;
}

.reviews-page .average-rating h3 {
  font-size: 4rem;
  margin: 0;
  color: var(--primary-dark);
}

.reviews-page .average-rating .stars {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin: 10px 0;
}

.reviews-page .rating-bars {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reviews-page .bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviews-page .bar-item span:first-child {
  font-weight: 600;
  color: var(--primary-dark);
  min-width: 50px;
}

.reviews-page .progress-bg {
  flex: 1;
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
}

.reviews-page .progress-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 5px;
  transition: var(--transition);
}

.reviews-page .bar-item span:last-child {
  font-weight: 600;
  color: var(--primary-dark);
  min-width: 40px;
  text-align: right;
}

.reviews-page .write-review {
  text-align: center;
}

.reviews-page .write-review p {
  margin: 0 0 15px;
  color: var(--text-color);
}

.reviews-page .reviews-grid {
  display: grid;
  gap: 20px;
}

.reviews-page .review-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
}

.reviews-page .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviews-page .user-meta h4 {
  margin: 0 0 5px;
  color: var(--primary-dark);
}

.reviews-page .verify-badge {
  background: #d4edda;
  color: #155724;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.reviews-page .user-stars {
  color: var(--secondary-color);
}

.reviews-page .review-text {
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

.reviews-page .review-date {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .reviews-page .rating-overview {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ================ REVIEWS PAGE CSS ENDS HERE ================== */

/* ================ SHOP WOMEN PAGE CSS STARTS HERE ================== */

.product-box.styleOne {
  border: 0;
  border-radius: 5px;
  overflow: hidden;
}

.product-box.styleOne .product-image {
  height: 200px;
  min-height: 200px;
}

.product-box.styleOne .product-image img {
  height: 100%;
}

.product-box.styleOne .product-content {
  padding: 1.5rem 0;
  background: var(--white-color);
}

.product-box.styleOne .cart-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: var(--white-color);
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(10px);
  font-size: 1.2rem;
}

.product-box.styleOne:hover .cart-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ================ SHOP WOMEN PAGE CSS ENDS HERE ================== */

/* ================ DIABETES MANAGEMENT PAGE CSS STARTS HERE ================== */

.diabetes-mgmt-page .db-bg-alt {
  background-color: #fcfcfc;
}

.diabetes-mgmt-page .db-hero {
  background-color: var(--bg-light);
}

.diabetes-mgmt-page .db-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.diabetes-mgmt-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
}

.diabetes-mgmt-page .db-col-img img {
  height: 600px;
  object-fit: cover;
}

.diabetes-mgmt-page .db-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.diabetes-mgmt-page .db-circle {
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 20px;
}

@media (max-width: 991px) {
  .diabetes-mgmt-page .db-col-img img {
    height: 350px;
  }
}
/* ================ DIABETES MANAGEMENT PAGE CSS ENDS HERE ================== */

/* ================ ANXIETY & STRESS PAGE CSS STARTS HERE ================== */

.anxiety-stress-page .as-bg-alt {
  background-color: #f7f9fc;
}

.anxiety-stress-page .as-hero {
  background-color: var(--bg-light);
}

.anxiety-stress-page .as-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.anxiety-stress-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.anxiety-stress-page .as-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.anxiety-stress-page .as-col-img img {
  height: 600px;
  object-fit: cover;
}

.anxiety-stress-page .as-col-text {
  padding: 60px;
}

.anxiety-stress-page .as-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.anxiety-stress-page .as-icon {
  font-size: 2.5rem;
}

.anxiety-stress-page .as-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
  border: 1px solid #e0ddd5;
}

.anxiety-stress-page .as-info-banner {
  background-color: var(--primary-dark);
  color: var(--white-color);
}

@media (max-width: 991px) {
  .anxiety-stress-page .as-col-img img {
    height: 350px;
  }
  .anxiety-stress-page .as-col-text {
    padding: 40px 20px;
  }
}

/* ================ ANXIETY & STRESS PAGE CSS ENDS HERE ================== */

/* ================ SKIN HEALTH PAGE CSS STARTS HERE ================== */

.skin-health-page .sk-hero {
  background-color: var(--bg-light);
}

.skin-health-page .sk-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.skin-health-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.skin-health-page .sk-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.skin-health-page .sk-bg-alt {
  background-color: #fff9f6;
}

.skin-health-page .sk-col-img img {
  height: 600px;
  object-fit: cover;
}

.skin-health-page .sk-col-text {
  padding: 10% 8%;
}

.skin-health-page .sk-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.skin-health-page .sk-info-banner {
  background-color: var(--primary-dark);
}

.skin-health-page .sk-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.sk-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .skin-health-page .sk-col-img img {
    height: 400px;
  }
  .skin-health-page .sk-col-text {
    padding: 40px 20px;
  }
}

/* ================ SKIN HEALTH PAGE CSS ENDS HERE ================== */

/* ================ SLEEP HEALTH PAGE CSS STARTS HERE ================== */

.sleep-health-page .sl-hero {
  background-color: var(--bg-light);
}

.sleep-health-page .sl-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.sleep-health-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.sleep-health-page .sl-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.sleep-health-page .sl-bg-alt {
  background-color: #f7f9fc;
}

.sleep-health-page .sl-col-img img {
  height: 600px;
  object-fit: cover;
}

.sleep-health-page .sl-col-text {
  padding: 10% 8%;
}

.sleep-health-page .sl-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.sleep-health-page .sl-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.sleep-health-page .sl-info-banner {
  background-color: var(--primary-dark);
}

.sleep-health-page .sl-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.sl-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .sleep-health-page .sl-col-img img {
    height: 400px;
  }
  .sleep-health-page .sl-col-text {
    padding: 40px 20px;
  }
}

/* ================ SLEEP HEALTH PAGE CSS ENDS HERE ================== */

/* ================ SEX & MOOD PAGE CSS STARTS HERE ================== */

.sex-mood-page .sm-hero {
  background-color: var(--bg-light);
}

.sex-mood-page .sm-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.sex-mood-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.sex-mood-page .sm-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.sex-mood-page .sm-bg-alt {
  background-color: #f7f9fc;
}

.sex-mood-page .sm-col-img img {
  height: 600px;
  object-fit: cover;
}

.sex-mood-page .sm-col-text {
  padding: 10% 8%;
}

.sex-mood-page .sm-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.sex-mood-page .sm-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.sex-mood-page .sm-info-banner {
  background-color: var(--primary-dark);
}

.sex-mood-page .sm-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.sm-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .sex-mood-page .sm-col-img img {
    height: 400px;
  }
  .sex-mood-page .sm-col-text {
    padding: 40px 20px;
  }
}

/* ================ SEX & MOOD PAGE CSS ENDS HERE ================== */

/* ================ ENERGY & FITNESS PAGE CSS STARTS HERE ================== */

.energy-fitness-page .ef-hero {
  background-color: var(--bg-light);
}

.energy-fitness-page .ef-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.energy-fitness-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.energy-fitness-page .ef-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.energy-fitness-page .ef-bg-alt {
  background-color: #f7f9fc;
}

.energy-fitness-page .ef-col-img img {
  height: 600px;
  object-fit: cover;
}

.energy-fitness-page .ef-col-text {
  padding: 10% 8%;
}

.energy-fitness-page .ef-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.energy-fitness-page .ef-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.energy-fitness-page .ef-info-banner {
  background-color: var(--primary-dark);
}

.energy-fitness-page .ef-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.ef-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .energy-fitness-page .ef-col-img img {
    height: 400px;
  }
  .energy-fitness-page .ef-col-text {
    padding: 40px 20px;
  }
}

/* ================ ENERGY & FITNESS PAGE CSS ENDS HERE ================== */

/* ================ IMMUNITY PAGE CSS STARTS HERE ================== */

.immunity-health-page .im-hero {
  background-color: var(--bg-light);
}

.immunity-health-page .im-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.immunity-health-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.immunity-health-page .im-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.immunity-health-page .im-bg-alt {
  background-color: #f7f9fc;
}

.immunity-health-page .im-col-img img {
  height: 600px;
  object-fit: cover;
}

.immunity-health-page .im-col-text {
  padding: 10% 8%;
}

.immunity-health-page .im-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.immunity-health-page .im-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.immunity-health-page .im-info-banner {
  background-color: var(--primary-dark);
}

.immunity-health-page .im-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.im-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .immunity-health-page .im-col-img img {
    height: 400px;
  }
  .immunity-health-page .im-col-text {
    padding: 40px 20px;
  }
}

/* ================ IMMUNITY PAGE CSS ENDS HERE ================== */

/* ================ BONE HEALTH PAGE CSS STARTS HERE ================== */

.bone-health-page .bh-hero {
  background-color: var(--bg-light);
}

.bone-health-page .bh-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.bone-health-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.bone-health-page .bh-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.bone-health-page .bh-bg-alt {
  background-color: #f7f9fc;
}

.bone-health-page .bh-col-img img {
  height: 600px;
  object-fit: cover;
}

.bone-health-page .bh-col-text {
  padding: 10% 8%;
}

.bone-health-page .bh-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.bone-health-page .bh-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.bone-health-page .bh-info-banner {
  background-color: var(--primary-dark);
}

.bone-health-page .bh-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.bh-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .bone-health-page .bh-col-img img {
    height: 400px;
  }
  .bone-health-page .bh-col-text {
    padding: 40px 20px;
  }
}

/* ================ BONE HEALTH PAGE CSS ENDS HERE ================== */

/* ================ OUR APPROACH PAGE CSS STARTS HERE ================== */

.our-approach-page .oa-hero {
  background-color: var(--bg-light);
}

.our-approach-page .oa-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.our-approach-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.our-approach-page .oa-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.our-approach-page .oa-bg-alt {
  background-color: #f7f9fc;
}

.our-approach-page .oa-col-img img {
  height: 600px;
  object-fit: cover;
}

.our-approach-page .oa-col-text {
  padding: 10% 8%;
}

.our-approach-page .oa-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.our-approach-page .oa-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.our-approach-page .oa-info-banner {
  background-color: var(--primary-dark);
}

.our-approach-page .oa-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.oa-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .our-approach-page .oa-col-img img {
    height: 400px;
  }
  .our-approach-page .oa-col-text {
    padding: 40px 20px;
  }
}

/* ================ OUR APPROACH PAGE CSS ENDS HERE ================== */

/* ================ OUR STORY PAGE CSS STARTS HERE ================== */

.story-brand-page .st-hero {
  background-color: var(--bg-light);
}

.story-brand-page .st-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.story-brand-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.story-brand-page .st-intro-text {
  max-width: 850px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.story-brand-page .st-narrative {
  padding: 80px 0;
}

.story-brand-page .st-bg-light {
  background-color: #f7f9fc;
}

.story-brand-page .st-story-img img {
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

.story-brand-page .st-content-box {
  padding: 50px;
}

.story-brand-page .st-year {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.story-brand-page .st-mission-banner {
  background-color: var(--primary-dark);
}

.story-brand-page .st-quote-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.story-brand-page .st-mission-quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.story-brand-page .st-mission-label {
  font-weight: 600;
  font-size: 1rem;
}

.story-brand-page .st-values {
  padding: 80px 0;
}

.story-brand-page .st-value-card {
  padding: 40px 20px;
  border: 1px solid #ebebeb;
}

.story-brand-page .st-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .story-brand-page .st-story-img img {
    height: 350px;
    margin-bottom: 30px;
  }
  .story-brand-page .st-content-box {
    padding: 0;
  }
}

/* ================ OUR STORY PAGE CSS ENDS HERE ================== */

/* ================ HOW IT WORKS PAGE CSS STARTS HERE ================== */

.how-it-works-page .hw-hero {
  background-color: var(--bg-light);
}

.how-it-works-page .hw-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.how-it-works-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.how-it-works-page .hw-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.how-it-works-page .hw-bg-alt {
  background-color: #f7f9fc;
}

.how-it-works-page .hw-col-img img {
  height: 600px;
  object-fit: cover;
}

.how-it-works-page .hw-col-text {
  padding: 10% 8%;
}

.how-it-works-page .hw-text-box {
  max-width: 500px;
}

.how-it-works-page .hw-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.how-it-works-page .hw-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.how-it-works-page .hw-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.hw-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .how-it-works-page .hw-col-img img {
    height: 400px;
  }
  .how-it-works-page .hw-col-text {
    padding: 40px 20px;
  }
}

/* ================ HOW IT WORKS PAGE CSS ENDS HERE ================== */

/* ================ TRACEABLE INGREDIENTS PAGE CSS STARTS HERE ================== */

.traceable-page .tr-hero {
  background-color: var(--bg-light);
}

.traceable-page .tr-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.traceable-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.traceable-page .tr-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.traceable-page .tr-bg-alt {
  background-color: #f7f9fc;
}

.traceable-page .tr-col-img img {
  height: 600px;
  object-fit: cover;
}

.traceable-page .tr-col-text {
  padding: 10% 8%;
}

.traceable-page .hw-text-box {
  max-width: 500px;
}

.traceable-page .tr-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.traceable-page .tr-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.traceable-page .tr-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.tr-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .traceable-page .tr-col-img img {
    height: 400px;
  }
  .traceable-page .tr-col-text {
    padding: 40px 20px;
  }
}

/* ================ TRACEABLE INGREDIENTS PAGE CSS ENDS HERE ================== */

/* ================ ADAPTOGEN GLOSSARY PAGE CSS STARTS HERE ================== */

.glossary-page .gl-hero {
  background-color: var(--bg-light);
}

.glossary-page .gl-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.glossary-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.glossary-page .gl-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.glossary-page .gl-card {
  border: 1px solid #ebebeb;
  border-radius: 0;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
  height: calc(100% - 1rem);
  margin-bottom: 1rem;
}

.glossary-page .gl-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.glossary-page .gl-card-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.glossary-page .gl-card-body {
  padding: 25px;
}

.glossary-page .gl-card-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.glossary-page .gl-scientific {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-style: italic;
  margin-bottom: 15px;
}

.glossary-page .gl-tags {
  margin-top: 15px;
}

.glossary-page .gl-tags span {
  display: inline-block;
  background-color: var(--bg-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.glossary-page .gl-tags span i {
  color: var(--primary-color);
  margin-right: 5px;
}

.glossary-page .gl-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

@media (max-width: 991px) {
  .glossary-page .gl-card-img img {
    height: 200px;
  }
  .glossary-page .gl-card-body {
    padding: 20px;
  }
}

/* ================ ADAPTOGEN GLOSSARY PAGE CSS ENDS HERE ================== */

/* ================ RESEARCH PAGE CSS STARTS HERE ================== */

.research-page .rs-hero {
  background-color: var(--bg-light);
}

.research-page .rs-pre-title {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.research-page h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.research-page .rs-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.research-page .rs-bg-alt {
  background-color: #f7f9fc;
}

.research-page .rs-col-img img {
  height: 600px;
  object-fit: cover;
}

.research-page .rs-col-text {
  padding: 10% 8%;
}

.research-page .hw-text-box {
  max-width: 500px;
}

.research-page .rs-step {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.research-page .rs-fa-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
}

.research-page .rs-cta-box {
  background-color: var(--bg-light);
  padding: 60px;
  border-radius: var(--radius);
}

.rs-grid-item {
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .research-page .rs-col-img img {
    height: 400px;
  }
  .research-page .rs-col-text {
    padding: 40px 20px;
  }
}

/* ================ RESEARCH PAGE CSS ENDS HERE ================== */

/* ================ CLINICAL STUDIES PAGE CSS STARTS HERE ================== */

.cs-hero {
  background-color: var(--bg-light);
}

.cs-hero h1 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.cs-lead {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.cs-methodology .rs-col-img img {
  height: 600px;
  object-fit: cover;
}

.cs-methodology .rs-col-text {
  padding: 10% 8%;
}

.cs-methodology .hw-text-box {
  max-width: 500px;
}

.cs-step-num {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.cs-list {
  list-style: none;
  padding: 0;
}

.cs-list li {
  margin-bottom: 10px;
  color: var(--text-color);
}

.cs-list i {
  color: var(--primary-color);
  margin-right: 8px;
}

.cs-findings .cs-study-card {
  background-color: var(--white-color);
  border: 1px solid #ebebeb;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.cs-findings .cs-study-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.cs-findings .study-tag {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.cs-findings .finding-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.cs-findings .finding-desc {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.cs-findings .study-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.cs-findings .study-link i {
  margin-left: 5px;
}

.cs-data-viz .rs-col-img img {
  height: 600px;
  object-fit: cover;
}

.cs-data-viz .rs-col-text {
  padding: 10% 8%;
}

.cs-cta {
  background-color: var(--primary-dark);
}

.cs-cta h2 {
  font-size: clamp(32px, 5vw, 42px);
}

@media (max-width: 991px) {
  .cs-methodology .rs-col-img img,
  .cs-data-viz .rs-col-img img {
    height: 400px;
  }
  .cs-methodology .rs-col-text,
  .cs-data-viz .rs-col-text {
    padding: 40px 20px;
  }
  .cs-findings .cs-study-card {
    padding: 1.5rem;
  }
}

/* ================ CLINICAL STUDIES PAGE CSS ENDS HERE ================== */

/* ================ BLOG PAGE CSS STARTS HERE ================== */

.blog-main-wrap {
  width: 100%;
  height: auto;
  background-color: var(--primary-dark);
}

.blog-main-wrap .banner-area {
  background: var(--primary-dark);
  border: 0;
  margin-bottom: 0;
}

.blog-main-wrap .banner-area .banner-cont h1 {
  color: var(--white-color);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
}

.blog-main-wrap .banner-area .banner-cont p {
  color: var(--white-color);
  font-size: 1.1rem;
  margin-top: 20px;
}

.blog-main-wrap .blog-wrapper {
	width: 100%;
	height: auto;
	overflow: hidden;
	background-color: #fff;
	border-top-right-radius: 40px;
	border-top-left-radius: 40px;
	margin-top: -40px;
	z-index: 9;
	position: relative;
}

.blog-main-wrap .nav-pills {
  gap: 8px;
}

.blog-main-wrap .nav-pills .nav-link {
  background-color: var(--bg-light);
  color: var(--dark-gray);
  border-radius: 20px;
  padding: 9px 22px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  font-weight: 500;
}

.blog-main-wrap .nav-pills .nav-link.active {
  background-color: var(--primary-dark);
  color: #fff;
}

.blog-main-wrap .blog-wrapper .blog-card {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
  height: calc(100% - 1rem);
}

.blog-main-wrap .blog-wrapper .blog-card .blog-card-image {
  width: 100%;
  min-height: 320px;
  height: 320px;
  overflow: hidden;
}

.blog-main-wrap .blog-wrapper .blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.blog-main-wrap .blog-wrapper .blog-card .blog-card-content {
  padding: 1rem 0;
}

.blog-main-wrap .blog-wrapper .blog-card .blog-card-content .category-badge {
  border: 1px solid #dadada;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 30px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
}

.blog-main-wrap
  .blog-wrapper
  .blog-card
  .blog-card-content
  .blog-card-description {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: var(--dark-gray);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-main-wrap .blog-wrapper .blog-card .blog-card-content .anchor-link {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .blog-main-wrap .nav-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    padding-bottom: 10px;
  }
}

.explore-products {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #f9f9f9;
}

.explore-products .product-box {
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: transparent;
}

.explore-products .product-box .product-image {
  background-color: var(--bg-light);
  height: 260px;
  min-height: 260px;
}

.explore-products .product-box .product-content {
  padding: 1.5rem 0;
}

.explore-products .product-box .product-content .product-description {
  font-size: 16px;
}

/* ================ BLOG PAGE CSS ENDS HERE ================== */

/* ================ BLOG DETAILS PAGE CSS START HERE =============== */

.blog-sidebar {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog-sidebar .blog-sidebar-card {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--bg-light);
  border-radius: 5px;
}

.blog-sidebar .blog-sidebar-card .blog-sidebar-card-header {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.blog-sidebar .blog-sidebar-card .blog-sidebar-card-header h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--dark-gray);
}

.blog-sidebar .blog-sidebar-card .blog-sidebar-card-body {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 1rem;
}

.blog-sidebar .blog-sidebar-card .blog-sidebar-card-body ul {
  width: 100%;
  height: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar .blog-sidebar-card .blog-sidebar-card-body ul li {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog-sidebar .blog-sidebar-card .blog-sidebar-card-body ul li a {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  padding: 10px 0;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--dark-gray);
}

.blog-sidebar .blog-sidebar-card .blog-sidebar-card-body ul li a:hover {
  color: var(--primary-color);
}

.blog-sidebar .recent-post-item img {
  border-radius: 4px;
}

.blog-sidebar .recent-post-item a:hover {
  color: var(--primary-color) !important;
}

.blog-content {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog-content .blog-content-header {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog-content .blog-content-header .blog-content-header-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-content .blog-content-header .blog-content-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.blog-content .blog-content-header .blog-content-header-content {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog-content
  .blog-content-header
  .blog-content-header-content
  .blog-content-header-content-title {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 20px;
}

.blog-content
  .blog-content-header
  .blog-content-header-content
  .blog-content-header-content-title
  h2 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.blog-content
  .blog-content-header
  .blog-content-header-content
  .blog-content-header-content-description {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog-content
  .blog-content-header
  .blog-content-header-content
  .blog-content-header-content-description
  p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--dark-gray);
}

.blog-content .blog-article-body {
  margin-top: 50px;
}

.blog-content .blog-article-body p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.blog-content .blog-article-body h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-top: 30px;
}

.blog-content .blog-article-body blockquote {
  padding: 30px;
  background-color: var(--bg-light);
  border-left: 5px solid var(--primary-color);
  font-style: italic;
  font-size: 20px;
  line-height: 32px;
  margin: 40px 0;
  color: var(--dark-gray);
  border-radius: 4px;
}

.blog-content .blog-article-body ul {
  margin-bottom: 25px;
  list-style: none;
  padding: 0;
}

.blog-content .blog-article-body ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: var(--text-color);
}

.blog-content .blog-article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.blog-content .blog-comments-section {
  margin-top: 60px;
}

.blog-content .blog-comments-section h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark-gray);
}

.blog-content .comments-list .comment-item {
  margin-bottom: 30px;
}

.blog-content .comment-form-wrap {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
}

.blog-content .comment-form-wrap .form-label {
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 8px;
  display: block;
}

.blog-content .comment-form-wrap .form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 12px 15px;
}

.blog-content .comment-form-wrap .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 104, 14, 0.1);
}

/* ================ BLOG DETAILS PAGE CSS ENDS HERE =============== */

/* ================ OUR SCIENCE PAGE CSS STARTS HERE ================== */

.our-science-wrapper .banner-area {
  border-bottom: 0;
  position: relative;
  z-index: 1;
}

.our-science-wrapper .banner-area h6 {
  color: var(--primary-color);
}

.our-science-wrapper .banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 270px;
  background: url("../images/science-bnr-layer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.natural-ingredients {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #f9f9f9;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.natural-ingredients .ingredients-card {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: transparent;
  border-radius: 4px;
  padding: 20px;
}

.natural-ingredients .ingredients-card .ingredients-icon {
  margin-bottom: 1.5rem;
}

.natural-ingredients .ingredients-card .ingredients-content {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.natural-ingredients .ingredients-card .ingredients-content h5 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.natural-ingredients .ingredients-card .ingredients-content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--text-color);
}

.science-approach .title-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.science-approach-card {
  width: 100%;
  height: auto;
  background-color: transparent;
  padding: 15px;
  text-align: center;
  position: relative;
}

.science-approach-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 34px;
  height: 20px;
  background: url("../images/science-approach-icon.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.science-approach .row .col-lg-3:last-child .science-approach-card::after {
  display: none;
}

.science-approach-card .science-approach-icon {
  width: 70px;
  height: 70px;
  overflow: hidden;
  background-color: #6ba50f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white-color);
  font-size: 30px;
  font-weight: 600;
}

.science-approach-card .science-approach-content h5 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white-color);
}

.science-approach-card .science-approach-content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: rgba(238, 235, 228, 0.8);
}

.science-image-content {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--white-color);
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

.science-image-content .science-image-content-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-light);
  padding: 1rem 3rem;
  border-radius: 4px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  min-height: 500px;
}

.science-image-content .science-image-content-box .inner-info h4 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--primary-color);
}

.science-image-content .science-image-content-box .inner-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--text-color);
}

.science-image-content-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.science-image-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certification-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--bg-light);
}

.certification-area .title-badge {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.team-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: var(--white-color);
}

.team-card {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.team-card .team-card-image {
  width: 100%;
  height: 350px;
  min-height: 350px;
  overflow: hidden;
  border-radius: 4px;
}

.team-card .team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.team-card .team-card-content {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 1rem 0;
}

.team-card .team-card-content h4 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.team-card .team-card-content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--text-color);
}

/* ================ TAKE QUIZ PAGE CSS STARTS HERE ================== */

.quiz-main-wrapper {
  background-color: #f9f9f9;
}

.quiz-main-wrapper .quiz-container {
  border: none;
  transition: all 0.3s ease;
}

.quiz-main-wrapper .progress {
  position: static;
  background: #e9ecef;
  height: 10px !important;
}

.quiz-main-wrapper .progress-bar {
  background-color: var(--primary-color);
}

.quiz-main-wrapper .quiz-step {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-main-wrapper .quiz-option-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quiz-main-wrapper .quiz-option-card:hover {
  border-color: var(--primary-color);
  background-color: rgba(37, 104, 14, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quiz-main-wrapper .quiz-option-card .option-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.quiz-main-wrapper .quiz-option-card .option-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark-gray);
}

.quiz-main-wrapper .quiz-option-card .option-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #6b7280;
}

.quiz-main-wrapper .list-group-item-action {
  border: 1px solid #e5e7eb !important;
  transition: all 0.2s ease;
}

.quiz-main-wrapper .list-group-item-action:hover {
  border-color: var(--primary-color) !important;
  background-color: rgba(37, 104, 14, 0.05);
}

.quiz-main-wrapper .list-group-item-action h5 {
  font-size: 1.05rem;
  font-weight: 500;
}

.quiz-main-wrapper .bg-theme {
  background-color: var(--primary-color) !important;
}

.quiz-main-wrapper .text-theme {
  color: var(--primary-color) !important;
}

.quiz-main-wrapper .result-img-box {
  background-color: #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
}

.quiz-main-wrapper .result-content .badge {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.85rem;
}

.quiz-main-wrapper .loading-spinner .spinner-border {
  border-width: 0.25em;
}

@media (max-width: 768px) {
  .quiz-main-wrapper .quiz-container {
    padding: 2rem 1.5rem !important;
  }
  .quiz-main-wrapper .display-5 {
    font-size: 2rem;
  }
}

/* ================ TAKE QUIZ PAGE CSS ENDS HERE ================== */
