/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */


/* 1. Import Poppins from Google Fonts API */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");

:root {
  --text-gradient: to right, #24b533, #056f07;
  --main-gradient: linear-gradient(to right, #24b533, #056f07);
  --text-color: #000000;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --bg-green: to right, #24b533, #056f07;
  --lime: #d4ff3f;
  --font: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "helvetica neue", sans-serif;
  letter-spacing: -0.7px;
}

/* --- Header & Nav Styles --- */
header {
  width: 100%;
  background-color: var(--white);
  padding: 1.5rem 7%;
  position: fixed;
  z-index: 100;
  top: 0;
}
.logo {
  height: 55px;
  width: 120px;
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

html,
body {
  overscroll-behavior: none;
  font-family: "Helvetica Neue";
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.select {
  color: #030303;
}

.logo-icon {
  color: var(--accent-color);
  font-size: 2rem;
}

.logo-text {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  font-weight: 900;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-links li a:hover {
  color: #056f07;
}

.dropdown-icon {
  font-size: 0.8rem;
  margin-left: 4px;
  color: var(--accent-color);
}

/* --- CTA Button --- */
.cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: var(--transition);
  background: var(--main-gradient);
}

.cta-button:hover {
  background: #00670c;
  color: var(--white);
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: #000000;
  transition: var(--transition);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 70%;
    height: 100vh;
    padding-top: 100px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  /* Hamburger Animation to X */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cta-button {
    display: none; /* Hide in main nav for mobile, often moved inside menu */
  }
}
/* --- Footer Base Styles --- */
.site-footer {
  margin-top: 0vw;
  padding: 30px 5%;
  background: var(--main-gradient);
  font-family: "Inter", sans-serif;
}

.footer-card {
  max-width: 1300px;
  margin: 0 auto;
  background: white;
  border-radius: 40px;
  padding: 30px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 200px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9e9e9;
}

/* --- Logo & Newsletter --- */
.footer-brand-area {
  flex: 1;
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.sun-logo {
  width: 30px;
  height: 30px;
}
.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.p{
  color: #000;
}
.newsletter-wrap p {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.footer-subscribe {
  display: flex;
  background: #f4f7f6;
  padding: 5px;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.footer-subscribe:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px #1a1a1a;
}

.footer-subscribe input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 20px;
  outline: none;
  font-size: 0.9rem;
}

.footer-subscribe button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.footer-subscribe button:hover {
  background: #333;
}

.privacy-note {
  font-size: 0.75rem !important;
  color: #000000 !important;
  line-height: 1.4;
  font-weight: 400 !important;
}

/* --- Links Grid --- */
.footer-links-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.link-group h4 {
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.link-group a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: #00670c; /* Our theme accent color */
}

/* --- Footer Bottom --- */
.footer-bottom {
  padding-top: 30px;
  text-align: center;
  color: #000000;
  font-size: 0.85rem;
}

/* --- Responsive Logic --- */
@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand-area {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
}

@media (max-width: 650px) {
  .footer-card {
    padding: 40px 25px;
    border-radius: 30px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-subscribe {
    flex-direction: column;
    background: transparent;
    gap: 10px;
  }
  .footer-subscribe input {
    background: #f4f7f6;
    border-radius: 50px;
  }
}

/* --- Styles for Socials & Address --- */
.social-icons-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icons-row a:hover {
  background: var(--main-gradient);
  color: rgb(0, 0, 0);
  transform: translateY(-3px);
}

.address-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #454545;
  margin-bottom: 15px;
  text-align: left;
}

.contact-details a {
  display: block;
  font-size: 0.85rem !important;
  color: #000000 !important;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.legal-links a:hover {
  color: #1a3a3a;
}

/* --- Responsive Fix --- */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-wrap {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .social-icons-row {
    justify-content: center;
  }
  .office-col {
    text-align: center;
  }
}

.trust-section {
    padding: 100px 0;
    background-color: var(--white);
}
.hero-section {
  top: 100px;
  background: var(--main-gradient);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

/* Big Background Text */
.bg-watermark {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18.6vw;
  font-weight: 800;
  color: rgba(0, 72, 23, 0.438);
  z-index: 1;
  pointer-events: none;
  letter-spacing: -5px;
}
.image-fade {
  width: 100%;
  display: block;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0)
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0)
  );
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  z-index: 2;
  position: relative;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Content Side */
h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 3vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  font-family: "Helvetica Neue";
}
.content-side span{
  font-family: "Helvetica Neue";
}
p {
  color: rgba(255, 255, 255, 0.8);
  margin: 25px 0 40px;
  font-size: 1.1rem;
  max-width: 450px;
}

.btn-group {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
h3 {
  text-decoration: none;
}
.category-link {
    text-decoration: none;
    color: inherit;
}
.btn-shop {
  background: var(--lime);
  color: #004207;
  padding: 15px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-shop:hover {
  transform: scale(1.05);
}

/* Rating Box */
.rating-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-green);
  margin-right: -15px;
}
.stars {
  color: var(--lime);
  font-weight: 600;
  display: block;
}
.rating-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #fff;
  opacity: 0.7;
}

/* Image Side */
.doctor-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.main-doc {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* Hero Pill Card (home page floating widget) */
.hero-product-card {
  z-index: 99;
  position: absolute;
  bottom: 40px;
  right: 0;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 260px;
}
.prod-img {
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 5px;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prod-info p {
  color: #333;
  margin: 0;
  font-size: 0.85rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 5px;
}
.arrow-icon {
  background: var(--lime);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5%;
  }
  p {
    margin: 25px auto 40px;
  }
  .btn-group {
    justify-content: center;
  }
  .rating-box {
    justify-content: center;
  }
  .doctor-wrapper {
    justify-content: center;
    margin-top: 50px;
  }
  .bg-watermark {
    font-size: 30vw;
  }
  .hero-product-card {
    margin: 3vw;
  }
}
/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.2s;
}

.categories-section {
  padding:0px;
  background: var(--white);
}

.category-header {
  margin-top: o;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.category-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -2.5px;
}

.category-header h2 span {
  background: var(--main-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.view-all {
  text-decoration: none;
  font-weight: 600;
  color: #056f07; /* From your gradient secondary */
  transition: var(--transition);
}

.view-all:hover {
  letter-spacing: 1px;
}

/* Flexbox Grid with Mobile Scroll */
.category-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto; /* Smooth scroll for mobile */
  padding-bottom: 20px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.category-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.category-card {
  min-width: 180px; /* Ensures items don't shrink too small */
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.cat-img-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 15px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.cat-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

/* Hover Effects using your Gradient */
.category-card:hover .cat-img-box {
  background: var(--white);
  border-color: #24b533;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover h3 {
  background: var(--main-gradient);
   background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .category-card {
    min-width: 160px;
  }
  .cat-img-box {
    height: 180px;
  }
  .category-header {
    padding: 15px;
    margin-top: 0vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }
  .view-all {
    display: none;
  }
}
.mission {
  padding: 50px 5%;
  background-color: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
}
.underline {
  text-decoration: underline;
}
.mission .container {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
      margin-top: 5vw;

}

.mission-badge {
  background: var(--main-gradient); /* Light sage tint */
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.bold {
  font-family: "poppins";
  font-weight: bold;
}
.mission-text {
  font-size: clamp(1.8rem, 4vw, 2.1rem);
  color: var(--text-color);
  line-height: 1.3;
  font-weight: 500;
  margin: 10px 0;
  letter-spacing: -2px;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stars {
  color: var(--main-gradient); /* Sage Green */
  font-size: 0.9rem;
}

.review-count {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

/* --- Secondary Button Style --- */

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--main-gradient);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 15px;
  letter-spacing: -1px;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-icon {
  margin-bottom: 2px;
}

/* --- Mobile Tweak --- */
@media (max-width: 768px) {
  .mission {
    margin-top: 0vw;
  }
  .reveal-section.active {
    padding-top: 0px;
  }
  .mission-text {
    font-size: 1.6rem;
  }
}
.promo-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.promo-card {
  position: relative;
  border-radius: 30px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  min-height: 380px;
  transition: var(--transition);
}

/* Background Treatments based on screenshot */
.bg-maternal {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}
.bg-migraine {
  background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
}

.promo-content {
  z-index: 2;
  max-width: 60%;
}

.promo-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}

/* Button with your Green Gradient */
.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--main-gradient);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-promo:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(36, 181, 51, 0.2);
}

/* Cashback Badge */
.cashback-badge {
  margin-top: 40px;
}

.cashback-badge .amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.cashback-badge .label {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 500;
  color: #ffffff;
}

/* Image Handling */
.promo-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  z-index: 1;
}

.promo-image img {
  height: 115%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(-20px 0 30px rgba(0, 0, 0, 0.05));
  margin-top: -3.2vw;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-card {
    padding: 40px;
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .promo-content {
    max-width: 100%;
  }
  .promo-image img {
        height: 114%;
        width: 100%;
        object-fit: cover;
        filter: drop-shadow(-20px 0 30px rgba(0, 0, 0, 0.05));
        margin-top: -10vw;
  }
  .promo-image {
    height: 100%;
    opacity: 1;
  } /* Fade image on small mobile for text readability */
  
}

.trust-section {
    padding: 100px 0;
    background-color: var(--white);
    font-style: ;
}

.trust-header {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
}

.trust-title {
    flex: 1;
}

.trust-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    color: #1a2b27; /* Dark pharmaceutical green-black */
}

.trust-desc {
    flex: 1;
}

.trust-desc p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: #004421; /* The teal-green from your screenshot */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 32px;
    height: 32px;
}

.stat-info .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2b27;
}

.stat-info .label {
    font-size: 0.95rem;
    color: #777;
    white-space: nowrap;
}

/* Hover Effect using your main gradient */
.stat-item:hover .icon-box {
    background: var(--main-gradient);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(36, 181, 51, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .trust-header {
        flex-direction: column;
        gap: 20px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .trust-section {
      padding:20px;
    }
}

@media (max-width: 550px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        justify-content: flex-start;
    }
}

/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */
/* HOME PAGE */


/*-------------------------------------------------------------------------------------------------------------------------------*/

/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */

.about-us{
  height: 100vw;
  width: 100%;
  background: #000;
}

/* --- Styles for About Hero --- */
    .about-hero-section {
        padding: 140px 5% 100px;
        background-color: #fdfdfd;
        overflow: hidden;
    }

    .about-hero-flex {
        display: flex;
        align-items: left;
        justify-content: space-between;
        gap: 60px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .about-hero-content {
        flex: 1;
        max-width: 550px;
    }

    .about-hero-content h1 {
        font-size: clamp(2.5rem, 3vw, 4rem);
        color: #056f07; /* Calvio Dark Green */
        line-height: 2.8vw;
        margin: 20px 0;
        font-weight: 700;
    }

    .about-hero-content p {
        font-size: 1.15rem;
        line-height: 1.6;
        color: #444;
        margin-bottom: 40px;
        text-align: left;
    }

    /* Image Styling with Rounded Corners per Screenshot */
    .about-hero-image-wrapper {
        flex: 1;
        height: 550px;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .about-hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease;
    }

    /* --- Animations --- */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Triggered by JS or on Load */
    .reveal-active .fade-up,
    .reveal-active .fade-in-right {
        opacity: 1;
        transform: translate(0);
    }

    .delay-1 { transition-delay: 0.2s; }
    .delay-2 { transition-delay: 0.4s; }
    .delay-3 { transition-delay: 0.6s; }

    /* --- Responsive --- */
    @media (max-width: 1024px) {
        .about-hero-flex {
            flex-direction: column;
            text-align: left;
        }

        .about-hero-content {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: left;
        }

        .about-hero-image-wrapper {
            width: 100%;
            height: 400px;
        }
    }

    @media (max-width: 480px) {
        .about-hero-section {
            padding-top: 100px;
        }
        .about-hero-content h1 {
            font-size: 2.2rem;
            line-height: 2.2rem;
            text-align: left;
        }
    }

    /* --- Trust Section Styles --- */
    .about-trust {
        padding: 100px 4% 80px;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .text-center {
        text-align: center;
    }

    .container-small {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Subtle Badge Styling */
    .badge-pill-subtle {
        background-color: #eef2f0; /* Very light sage */
        color: #1a3a3a;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 30px;
        text-align: left;
    }

    /* Main Typography */
    .trust-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
        color: #1a3a3a;
        line-height: 1.3;
        font-weight: 500;
        letter-spacing: -0.02em;
    }

    /* Sage Green Highlight */
    .text-sage {
        color: #247802;
        font-weight: 500;
    }

    /* --- Animations --- */
    .reveal-section {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-section.active {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease-out;
    }

    .active .fade-up {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-1 {
        transition-delay: 0.3s;
    }

    /* --- Responsive Adaptations --- */
    @media (max-width: 768px) {
        .about-trust {
            padding: 80px 5%;
        }
        .trust-title {
            font-size: 1.75rem;
            line-height: 1.4;
        }
        .badge-pill-subtle {
            font-size: 0.85rem;
            padding: 6px 16px;
        
        }
    }

    /* --- VISION & MISSION STYLES --- */
.about-vm-section {
    padding: 0px 5%;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.vm-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.vm-row.reverse {
    flex-direction: row;
}

.vm-image {
    flex: 1;
    background: #f0f0f0; /* Light grey box from screenshot  */
    border-radius: 30px;
    padding: 0px;
    display: flex;
    justify-content: center;
}

.vm-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.vm-text {
    flex: 1;
}

.vm-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.vm-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Button Gradient: Yellow to Reddish-Orange  */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(to right, #63cc00, #177001);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .vm-row, .vm-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .vm-text h2 {
        font-size: 2rem;
    }

    .vm-image {
        width: 100%;
        order: -1; /* Keeps image on top for mobile */
    }
}

/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */

/*-------------------------------------------------------------------------------------------------------------------------------*/


.contact-section {
        padding: px 5% 100px;
        background-color: #fdfdfd;
        min-height: 80vh;
        margin-bottom: 10vw;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Left Side Styling */
    .contact-info-side h1 {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
        color: #1a3a3a;
        line-height: 1.1;
        margin: 20px 0;
    }

    .contact-info-side p {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .contact-details-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .detail-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        background: #00A800;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 1.2rem;
    }

    .detail-item h4 { color: #1a3a3a; margin-bottom: 4px; }
    .detail-item p { margin-bottom: 0; font-size: 0.95rem; }

    /* Form Styling */
    .contact-form-side {
        background: white;
        padding: 50px;
        border-radius: 40px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .input-group {
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .input-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a3a3a;
    }

    .input-group input, 
    .input-group select, 
    .input-group textarea {
        padding: 15px 20px;
        border: 1px solid #eee;
        border-radius: 15px;
        background: #f9f9f9;
        font-family: inherit;
        outline: none;
        transition: 0.3s;
    }

    .input-group input:focus, 
    .input-group textarea:focus {
        border-color: #76a08a;
        background: white;
        box-shadow: 0 0 0 4px rgba(118, 160, 138, 0.1);
    }

    .btn-submit {
        width: 100%;
        padding: 16px;
        background-color: #00A800;
        color: white;
        border: none;
        border-radius: 15px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: 0.3s;
    }

    .btn-submit:hover {
        background: #004421;
        transform: translateY(-2px);
    }

    /* --- Animations --- */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }

    .reveal-section.active .fade-up {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.2s; }

    /* --- Responsive --- */
    @media (max-width: 992px) {
        .contact-wrapper { grid-template-columns: 1fr; gap: 5px; }
        .contact-section { padding-top: 0px; margin: 0 10vw; }
    }

    @media (max-width: 600px) {
        .form-row { grid-template-columns: 1fr; gap: 0px; }
        .contact-form-side { padding: 30px 20px; }
    }



    /*WHATSAPP BUTTON*/

    /* --- WHATSAPP BUTTON STYLES --- */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #00A800; /* Exact Green from Akuracia Product Screenshot */
    color: #FFF;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 168, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float span {
    font-size: 14px;
}

.whatsapp-float:hover {
    background-color: #1A3A3A; /* Brand Deep Forest Green */
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #FFF;
}

/* On very small screens, hide the text to keep it a simple circle */
@media (max-width: 480px) {
    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float span {
        display: none;
    }
}

/*WHATSAPP BUTTON*/



/* --- Wellness Feature Styles --- */
    .wellness-feature {
        position: relative;
        width: 100%;
        min-height: 80vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 80px 0;
    }

    .feature-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .parallax-img {
        width: 100%;
        height: 110%; /* Extra height for scroll effect */
        object-fit: cover;
        filter: brightness(0.9);
    }

    .feature-container {
        padding: 0 5%;
        width: 100%;
    }

    .floating-card {
        background: white;
        padding: 60px;
        border-radius: 40px;
        max-width: 600px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .floating-card h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        color: var(--primary-color);
        line-height: 1.2;
        text-align: left;
    }

    .text-accent {
        color: #00670c;
        opacity: 0.9;
    }

    .feature-checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .feature-checklist li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.05rem;
        color: var(--primary-color);
        font-weight: 500;
    }

    .feature-checklist i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    /* Button Style to match image */
    .btn-primary-sage {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background-color: #76a08a; /* Sage Green */
        color: white;
        padding: 8px 25px 8px 8px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .btn-primary-sage:hover {
        background-color: #5f836f;
        transform: translateY(-3px);
    }

    /* --- Animations --- */
    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-section.active .slide-in-left {
        opacity: 1;
        transform: translateX(0);
    }

    /* --- Responsive --- */
    @media (max-width: 992px) {
        .wellness-feature {
            min-height: auto;
            flex-direction: column;
            padding: 0;
        }

        .feature-bg {
            position: relative;
            height: 0px;
            z-index: 1;
        }

        .floating-card {
            margin: -60px auto 60px;
            width: 90%;
            position: relative;
            z-index: 2;
            padding: 40px 30px;
            text-align: center;
            align-items: center;
        }

        .feature-checklist {
            align-items: flex-start;
            text-align: left;
            margin: 0 auto;
        }
    }

    @media (max-width: 480px) {
        .floating-card h2 {
            font-size: 1.6rem;
        }
    }