/* =========================
   FONT IMPORT
========================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* =========================
   ROOT VARIABLES
========================= */
:root {
  /* ---------- Font Family ---------- */
  --ff-poppins: "Poppins", sans-serif;

  /* ---------- Font Weights ---------- */
  --fw-thin: 100;
  --fw-extraLight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;

  /* ---------- Base Colors ---------- */
  --color-white: #ffffff;
  --color-black: #000000;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.08);
  /* ---------- Brand / Custom Colors ---------- */
  --color-navy: #0b253f;
  --color-blue: #377ec2;
  --color-skyBlue: #009fdf;
  --color-darkNavy: #112130;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-poppins);
  font-weight: var(--fw-regular);
}
a {
  text-decoration: none;
  color: inherit;
}

/* ---------- HEADER ---------- */

.site-header nav {
  padding-top: 100px;
  background-color: var(--color-black);
}
.site-header nav.is-scrolled {
  padding-top: 0;
  background-color: #112130;
  transition: all 0.5s linear;
}
.site-header .container {
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 20px;
}

.site-header .nav-item {
  padding-right: 25px;
}
.site-header .nav-link {
  color: var(--color-white);
}
.site-header .nav-link.conBtn, .site-header .nav-item.current_page_item {
  font-weight: var(--fw-bold);
}
/* ---------- HERO ---------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: red;
} */

.hero-content {
  z-index: 2;
}

.hero-caption {
  text-align: center;
  width: 100%;
}

.hero-title {
  color: var(--color-white);
  font-size: 60px;
  font-style: italic;
  font-weight: 300; /* Light */
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 0 0 22px;
  text-transform: uppercase;
}

/* Ampersand span (you’ll change font-family later) */
.hero-amp {
  display: inline-block;
  padding-inline: 10px;
/*   font-weight: var(--fw-bold); */
  font-size: 75px;
}

/* CTA button like your design */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1px 25px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-white);
  transition: all 0.5s linear;
}

.hero-cta-text {
  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: 600;
}

.hero-cta-icon {
  color: var(--color-skyBlue);
  font-size: 30px;
  transition: transform 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.25);
}

.hero-cta:hover .hero-cta-icon {
  transform: translateX(2px);
}

/* ABOUT US SECTION */
.aboutHome {
  position: relative;
  background-image: url("../images/lamo-gula.png");
  background-size: cover;
  height: 100%;
  width: 100%;
}

.yopanihohai {
  background-color: var(--color-white);
  position: relative;
  padding-inline: 50px;
}

.yopanihohai::before {
  content: "";
  position: absolute;
  top: -99px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../images//puchhar.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.yoHeading {
  color: var(--color-navy);
  font-size: 42px;
}
.yoHeading .motoWala {
  font-weight: var(--fw-bold);
}
.yoHeading .future-pill {
  position: relative;
  display: inline-block;
  padding: 6px 25px;
  font-family: var(--ff-poppins);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: #0b1f33; /* dark text */
  background: #ffffff;
  border-radius: 999px;
}

/* Gradient border */
.future-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(90deg, #b7c8d6 0%, #dbe6ef 10%, #b7c8d6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sanoBhai {
  font-size: 25px;
  margin-top: 20px;
}

.tankuneDhako {
  position: relative;
  z-index: 8;
  margin-top: 50px;
  padding: 50px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #d3e2ef;
}

.wrapAbout {
  border: 3px solid transparent;
}

.sanoWala {
  position: absolute;
  top: 70px;
  right: -40px;
  z-index: 1;
}
.sanoWala img {
  width: 100px;
}

.thulowala {
  position: absolute;
  bottom: -70px;
  left: -50px;
  z-index: 1;
}
.thulowala img {
  width: 150px;
}

.headuwa {
  font-size: 38px;
  color: #112130;
  font-weight: var(--fw-semiBold);
}

.tankuneDhako p {
  color: var(--color-black);
}

.turkeBtn a {
  font-weight: var(--fw-bold);
}
.turkeBtn a > i {
  color: white;
  background-color: var(--color-blue);
  border-radius: 100%;
  padding: 5px;
}

.aboutFeatures {
  background: transparent;
}

/* Card */
.featureCard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 550px;
  padding: 28px;
  border-radius: 22px;
  overflow: hidden;

  text-decoration: none;
  color: var(--color-white);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Soft glass overlay like screenshot */
.featureCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 20% 10%,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 55%
  );
  pointer-events: none;
}

/* Top row (title + icon) */
.featureCard__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

/* Title */
.featureCard__title {
  margin: 0;
  font-family: var(--ff-poppins);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 400; /* regular for second line */
  color: var(--color-white);
}

.featureCard__title strong {
  font-weight: 700; /* bold for first line */
}

/* Arrow circle */
.featureCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);

  color: var(--color-skyBlue);
  font-size: 22px;

  flex: 0 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Bottom text */
.featureCard__text {
  position: relative;
  z-index: 2;

  margin: 0;
  margin-top: auto;

  font-family: var(--ff-poppins);
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);

  max-width: 420px;
}

/* Hover (nice premium lift) */
.featureCard:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

/* Mobile tuning */
@media (max-width: 575.98px) {
  .featureCard {
    min-height: 360px;
    padding: 22px;
    border-radius: 18px;
  }
  .featureCard__title {
    font-size: 28px;
  }
  .featureCard__icon {
    width: 42px;
    height: 42px;
  }
}
.homeCta {
  position: relative;
  padding: 110px 0;
  text-align: center;

  /* image will be replaced later */
  background: url("../images/homecta-bg.jpg");
  background-size: cover;
  background-position: center center;
}

/* Heading */
.homeCta__title {
  font-family: var(--ff-poppins);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
}

/* Sub heading */
.homeCta__subtitle {
  font-family: var(--ff-poppins);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
  margin-bottom: 26px;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .homeCta {
    padding: 80px 0;
  }
  .homeCta__title {
    font-size: 32px;
  }
  .homeCta__subtitle {
    font-size: 22px;
  }
}
.homeProduct {
  position: relative;
  padding: 90px 0;

  /* replace bg later */
  background: url("../images/prohome.jpg") center/cover no-repeat;
}

.homeProduct__left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeProduct__productImg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
}

.homeProduct__right {
  max-width: 520px;
  margin-left: auto;
}

.homeProduct__logo {
  width: 220px; /* adjust after you add real logo */
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.homeProduct__title {
  font-family: var(--ff-poppins);
  font-size: 31px;
  font-weight: 500; /* Medium */
  font-style: italic;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 14px;
}

.homeProduct__text {
  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .homeProduct {
    padding: 0 0 60px 0;
    text-align: center;
  }

  .homeProduct__right {
    margin: 0 auto;
  }

  .homeProduct__logo {
    margin: 0 auto 16px;
  }
}
/* ===== LATEST NEWS SECTION ===== */

.latestnews-section {
  background: #ffffff;
  margin-top: 100px;
  padding-bottom: 80px;
}

.latestnews-title {
  margin-top: 18px;
  font-size: 38px;
  font-weight: var(--fw-regular);
  color: var(--color-darkNavy);
}
.latestnews-title > span {
  font-weight: var(--fw-semiBold);
}
.turkewala {
  color: var(--color-darkNavy);
  font-size: 16px;
  margin-bottom: 30px;
}
.latestnews-readall {
  display: inline-block;
  padding: 5px 28px;
  border-radius: 999px;
  border: 2px solid var(--color-darkNavy);
  color: var(--color-darkNavy);
  font-weight: var(--fw-bold);
}
.latestnews-readall > i {
  color: var(--color-blue);
  font-size: 22px;
}
.aau_bhai {
  padding-left: 15%;
}

.latestnews-arrows {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.latestnews-arrows .swiper-button-prev,
.latestnews-arrows .swiper-button-next {
  position: static !important;
  width: 32px;
  height: 32px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.latestnews-arrows i {
  color: var(--color-darkNavy);
  font-size: 30px;
}

/* ----- CARD ----- */

.news-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease;
  margin-bottom: 40px;
}

.news-card .olaCard {
  height: 100%;
  width: 100%;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-body {
  padding: 20px;
}

.news-date {
  font-family: var(--ff-main);
  font-size: 14px;
  color: #606060;
  margin-bottom: 10px;
}

.news-text {
  font-size: 16px;
  color: var(--color-darkNavy);
  margin-bottom: 18px;
  line-height: 1.5;
	    font-weight: 600;
}

.news-link {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-darkNavy);
}

.news-link i {
  font-size: 18px;
  color: white;
}
.yoKuno {
  background-color: var(--color-blue);
  height: 35px;
  width: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yoKuno i {
  color: white;
  font-size: 25px;
}
/* Swiper */
.latestnews-swiper .swiper-slide {
  width: 320px;
}

.puradun {
  background-color: #efefef;
  position: relative;
  border-radius: 50px;
  isolation: isolate;
}

.puradun::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: linear-gradient(to top, #efefef, white);
  z-index: -1;
}

.gedeFoto {
  position: relative;
}
.gedeFoto .manche {
  height: 150px;
  width: 150px;
  border-radius: 100%;
  object-fit: cover;
}
.gedeFoto .quote {
  position: absolute;
  right: 30%;
}

.sanomano {
  position: absolute;
  top: 40%;
  opacity: 0.5;
}
.thulaowala {
  position: absolute;
  bottom: -17%;
  left: 20%;
  z-index: 2;
}
/* footer */ /* ================================ 
   ================================ */
.site-footer {
  background: linear-gradient(
    180deg,
    #00030b 0%,
    #000a13 35%,
    #001b2a 70%,
    #022842 100%
  );
  padding: 34px 0 28px;
  position: relative;
  z-index: 5;
}

/* ALL footer text rules */
.site-footer,
.site-footer a,
.site-footer span,
.site-footer div {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0;
}
.fotPhone span,
.fotPhone i {
  color: var(--color-skyBlue);
  font-weight: var(--fw-medium);
}
.footer-contact-link i {
  color: var(--color-skyBlue);
}
.footer-top {
  padding-bottom: 18px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-link {
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.footer-link:hover {
  opacity: 1;
}

.footer-link-active {
  font-weight: 700; /* Contact Us bold */
  opacity: 1;
}

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

.footer-address div {
  line-height: 1.55;
  opacity: 0.92;
}

.footer-contact-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.92;
  white-space: nowrap;
}
.footer-contact-link:hover {
  opacity: 1;
}

.footer-contact-link i {
  font-size: 18px;
  line-height: 1;
  opacity: 0.95;
}

.social-btn {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--color-skyBlue);
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.social-btn i {
  font-size: 16px;
  line-height: 1;
  color: var(--color-darkNavy);
}
.social-btn:hover {
  transform: translateY(-1px);
}

/* Mobile spacing to match screenshot feel */
@media (max-width: 991.98px) {
  .site-footer {
    padding: 26px 0 22px;
  }
  .footer-top {
    padding-bottom: 14px;
  }
  .footer-bottom {
    padding-top: 14px;
  }
}

.pharma__head {
  padding-top: 16%;
  padding-bottom: 5%;
  background-image: url(../images/phramhead.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* padding-block: 120px; */
  border-radius: 0 0 50px 50px;
}
.pharma__head .pharma__head__left h3 {
  color: white;
  font-size: 55px;
}
.pharma__head .pharma__head__left h3 > span {
  font-weight: var(--fw-bold);
}
.pharma__head .pharma__head__left p {
  color: white;
  font-size: 27px;
}

.pharma__head__right p {
  color: white;
}

/* ===================== ACCUMULATED EXPERIENCE ===================== */
.accExp {
  padding: 90px 0;
  background: var(--color-white);
}

.accExp__imgWrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accExp__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.accExp__content {
  max-width: 520px;
}

.accExp__title {
  margin: 0 0 14px;
  font-family: var(--ff-poppins);
  font-size: 38px;
  line-height: 1.05;
  font-weight: var(--fw-semiBold);
  color: var(--color-darkNavy);
}

.accExp__lead {
  margin: 0 0 14px;
  font-family: var(--ff-poppins);
  font-size: 16px;
  line-height: 1.45;
  color: var(--color-darkNavy);
  opacity: 0.92;
}

.accExp__list {
  margin: 0 0 18px;
  padding-left: 18px;
  list-style: disc;
}

.accExp__list li {
  font-family: var(--ff-poppins);
  font-size: 16px;
  line-height: 1.8;
  color: black;
  opacity: 0.9;
}

.accExp__foot {
  margin: 0;
  font-family: var(--ff-poppins);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991.98px) {
  .accExp {
    padding: 40px 0;
  }
  .accExp__content {
    margin-top: 30px;
    text-align: left;
  }
  .accExp__title {
    font-size: 32px;
  }
}
/* ===================== METHODS & COMPLIANCE ===================== */
.methodsComp {
  padding: 90px 0;
  background: var(--color-white);
}

.methodsComp__content {
  max-width: 520px;
}

.methodsComp__title {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: var(--fw-semiBold);
  color: var(--color-darkNavy);
}

/* text rules: black & minimum 16px */
.methodsComp__lead,
.methodsComp__list li,
.methodsComp__foot {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
}

.methodsComp__lead {
  margin-bottom: 16px;
}

.methodsComp__list {
  margin: 0 0 18px;
  padding-left: 18px;
}

.methodsComp__list li {
  margin-bottom: 6px;
}

.methodsComp__foot {
  margin: 0;
}

.methodsComp__imgWrap {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.methodsComp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
  .methodsComp {
    padding: 30px 0;
  }

  .methodsComp__content {
    margin: 0 auto;
  }

  .methodsComp__title {
    font-size: 32px;
  }

  .methodsComp__imgWrap {
    margin: 0 auto;
  }
}

/* ===================== AREAS OF EXPERTISE ===================== */
.areasExpertise {
  background: #f4f4f4;
  padding: 90px 0;
  overflow: hidden;
}

.areasExpertise__title {
  margin: 0 0 24px;
  font-size: 38px;
  font-weight: var(--fw-regular);
  color: var(--color-darkNavy);
}
.areasExpertise__title span {
  font-weight: var(--fw-semiBold);
}

/* TAGS */
.areasExpertise__tags {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.areasExpertise__row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.areasExpertise__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 37, 63, 0.18);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  font-size: 20px;
  line-height: 1;
  color: #0b253f;
  white-space: nowrap;
}

/* make widths feel like design (not equal, but controlled) */
.areasExpertise__row:nth-child(1) .areasExpertise__tag,
.areasExpertise__row:nth-child(4) .areasExpertise__tag,
.areasExpertise__row:nth-child(5) .areasExpertise__tag {
  white-space: normal;
  text-align: center;
  max-width: 820px;
}
.areasExpertise__row:nth-child(2) .areasExpertise__tag,
.areasExpertise__row:nth-child(3) .areasExpertise__tag {
  white-space: normal;
  text-align: center;
  max-width: 560px;
}

/* CARD AREA */
.areasExpertise__cardWrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 20px;
}

.areasExpertise__blob {
  position: absolute;
  width: 160px;
  height: 160px;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}
.areasExpertise__blob--lt {
  left: -20px;
  top: 0;
}
.areasExpertise__blob--rb {
  right: -20px;
  bottom: -10px;
}

.areasExpertise__card {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  padding: 48px 24px;
  text-align: center;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(11, 37, 63, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.areasExpertise__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.areasExpertise__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.areasExpertise__cardTitle {
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: var(--fw-semiBold);
  color: var(--color-darkNavy);
}

.areasExpertise__cardSub {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.35;
  color: var(--color-navy); /* #0b253f */
}

.areasExpertise__cardText {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
}

/* Responsive */
@media (max-width: 991.98px) {
  .areasExpertise {
    padding: 30px 0;
  }

  .areasExpertise__title {
    font-size: 32px;
  }

  .areasExpertise__cardTitle {
    font-size: 32px;
  }

  .areasExpertise__cardSub {
    font-size: 22px;
  }

  .areasExpertise__blob {
    width: 130px;
    height: 130px;
  }
}
/* ===================== WELLBEING & LONGEVITY HEADER ===================== */
.wellbeing__head {
  padding-top: 16%;
  padding-bottom: 6%;
  background-image: url("../images/wellbewala.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 50px 50px;
}

.wellbeing__head__left h3 {
  color: var(--color-white);
  font-size: 55px;
  line-height: 1.1;
}

.wellbeing__head__left h3 span {
  font-weight: var(--fw-bold);
}

.wellbeing__head__left h4 {
  margin-top: 14px;
  font-size: 32px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
}

.wellbeing__head__left p {
  margin: 20px 0 26px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  max-width: 520px;
}

/* RIGHT ICON AREA */
.wellbeing__head__right {
  display: flex;
  justify-content: center;
}

.wellbeing__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 48px;
}

.wellbeing__iconItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wellbeing__iconCircle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.wellbeing__iconCircle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.wellbeing__iconItem p {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-white);
  max-width: 160px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .wellbeing__head {
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .wellbeing__head__left {
    text-align: center;
    margin-bottom: 50px;
  }

  .wellbeing__head__left p {
    margin-left: auto;
    margin-right: auto;
  }

  .wellbeing__icons {
    gap: 28px 28px;
  }
}

/* ===================== WELLBEING ACCORDION ===================== */
.wellbeingAcc {
  padding: 90px 0;
  background: #f4f4f4;
  overflow: hidden;
}

.wellbeingAcc .container {
  position: relative;
}

/* blobs */
.wellbeingAcc__blob {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}
.wellbeingAcc__blob--tr {
  top: -40px;
  right: -40px;
}
.wellbeingAcc__blob--bl {
  bottom: -55px;
  left: -55px;
}

/* wrap */
.wellbeingAcc__wrap {
  position: relative;
  z-index: 2;

  margin: 0 auto;
}

/* glass card base */
.wellbeingAcc__item {
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(11, 37, 63, 0.16);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

/* header button */
.wellbeingAcc__btn {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.wellbeingAcc__btnLeft {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

/* number */
.wellbeingAcc__num {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-skyBlue); /* #009fdf */
  line-height: 1;
  flex: 0 0 auto;
}

/* heading */
.wellbeingAcc__heading {
  margin: 0;
  font-size: 24px;
  font-weight: var(--fw-semiBold);
  color: var(--color-darkNavy); /* #112130 */
  line-height: 1.2;
  text-align: left;
}

/* arrow right */
.wellbeingAcc__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  flex: 0 0 auto;
}
.wellbeingAcc__arrow i {
  font-size: 22px;
  color: var(--color-darkNavy);
}

/* panel (smooth open/close) */
.wellbeingAcc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.wellbeingAcc__panelInner {
padding: 30px 60px 60px;
    display: grid;
    grid-template-columns: 390px 1fr 40px;
    gap: 70px;
    align-items: center;
}

/* media */
.wellbeingAcc__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.wellbeingAcc__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* text */
.wellbeingAcc__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-darkNavy); /* #112130 */
}
.wellbeingAcc__content strong {
  font-weight: var(--fw-bold);
}

/* arrow inside panel on right */
.wellbeingAcc__panelArrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 33, 48, 0.08);
  justify-self: end;
}
.wellbeingAcc__panelArrow i {
  font-size: 22px;
  color: var(--color-darkNavy);
}

/* open state */
.wellbeingAcc__item.is-open .wellbeingAcc__panel {
  max-height: 520px; /* enough for content */
}
.wellbeingAcc__item.is-open .wellbeingAcc__btn{
	display:none;
}

/* responsive */
@media (max-width: 991.98px) {
  .wellbeingAcc {
    padding: 40px 0;
  }

  .wellbeingAcc__panelInner {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .wellbeingAcc__media img {
    height: 200px;
  }

  .wellbeingAcc__panelArrow {
    display: none;
  }

  .wellbeingAcc__heading {
    font-size: 15px;
  }

  .wellbeingAcc__num {
    font-size: 22px;
  }
}

/* about us page */

.aboutHead__head {
  padding-top: 16%;
  padding-bottom: 15%;
  background-image: url(../images/abouthead.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.aboutHead__head .aboutHead__right h3 {
  color: white;
  font-size: 55px;
}
.aboutHead__head .aboutHead__right h3 > span {
  font-weight: var(--fw-bold);
}

.aboutHead__right p {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}
/* CEO SECTION */
.ceo-wrap {
  position: relative;
  border-radius: 18px;
}

.blur-circle.top-left {
  position: absolute;
  width: 170px;
  height: 170px;
  top: 50px;
  left: -50px;
}

.blur-circle.mid-right {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 30%;
  right: -15%;
}

/* Left image block */
.ceo-photo {
  position: relative;
  height: 540px;
}
.ceo-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 90%;
  width: 100%;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.18);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #d3e2ef;
}
/* If you use an img later */
.ceo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 5;
}

/* Right glass effect card */
.ceo-glass {
  padding-left: 10%;
}

/* "Our CEO" pill */
.ceo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 33, 48, 0.25);
  color: #112130;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.55);
}

/* Name */
.ceo-name {
  color: #112130;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
}

/* Paragraph */
.ceo-desc {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .ceo-glass {
    padding: 22px;
  }
  .ceo-name {
    font-size: 32px;
  }
}

.paloyasko {
  background-color: white;
  padding-inline: 80px;
	padding-top: 10px;
/* 	padding-bottom: 70px; */
}
.paloyasko::before {
  content: "";
  position: absolute;
  top: -99px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../images//puchhar.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* ========== VALUES SECTION (BG INSIDE CONTAINER) ========== */
.valuesSection {
  background: transparent;
}

.valuesSection__bg {
  background: url("../images/mid.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50px;
  padding: 80px 42px;
  overflow: hidden;
  position: relative;
}

/* ========== GLASS CARD ========== */
.glassValueCard {
  position: relative;
  border-radius: 18px;
  padding: 26px 22px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.glassValueCard__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}

.glassValueCard__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.glassValueCard__title {
  margin: 0;
  font-size: 24px;
  font-weight: var(--fw-semiBold);
  color: var(--color-white);
}

.glassValueCard__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive padding */
@media (max-width: 991.98px) {
  .valuesSection__bg {
    border-radius: 26px;
  }
}
/* ========== BRAND HISTORY ========== */
.brandHistory {
  background: var(--color-white);
  padding-block: 80px;
}

.brandHistory__title {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
  font-weight: var(--fw-bold);
  color: var(--color-darkNavy);
}

.brandHistory__text {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-black);
  max-width: 640px;
}

/* Use your existing hero-cta, just tweak to match screenshot */
.brandHistory__btn.hero-cta {
  border-color: var(--color-darkNavy);
  color: var(--color-darkNavy);
  background: transparent;
}

.brandHistory__btn.hero-cta .hero-cta-icon {
  color: var(--color-blue);
}

.brandHistory__btn.hero-cta:hover {
  background: rgba(17, 33, 48, 0.06);
  border-color: rgba(17, 33, 48, 0.7);
}

.aboutHead__head h4 {
  margin-top: 14px;
  font-size: 32px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  margin-bottom: 25px;
}

.sec_mentor_new{
  padding: 20px 0 80px 0;
}
.sec_mentor_new .wellbeingAcc__num{
  font-size: 38px;
  margin-bottom: 10px;
}
.sec_mentor_new .wellbeingAcc__heading{
  font-size: 38px;
  margin-bottom: 10px;
}
.sec_mentor_new h4{
  font-weight: 400;
  margin-bottom: 30px;
}
.sec_mentor_new li{
  margin-top: 15px;
  font-weight: bold;
  margin-left: 20px;
}
.sec_mentor_new ul{
  padding: 0;
  margin: 0;
}
.sec_mentor_new a{
  color: #009fdf;
  margin-top: 20px;
  display: inline-block;
  font-weight: 500;
}
.sec_mentor_new .item{
  border-bottom: 1px solid #000;
  padding-bottom: 100px;
  padding-top: 50px;
}
.sec_mentor_new .tick .wellbeingAcc__content  li{
  list-style: none;
  margin-left: 0px;
  font-weight: 400;
}
.sec_mentor_new .tick .wellbeingAcc__content li i{
  color: #009fdf;
  margin-right: 8px;

}
.sec_mentor_new   .areasExpertise__tag{
  font-size: 16px;
}
.mentor_new .brandHistory__btn{
  background: linear-gradient(90deg, #020617 0%, #0f2a44 55%, #1e5c86 100%) !important;
  color: #fff !important;
  border: none;
  margin-bottom: 15px;

}
.mentor_new .brandHistory__btn.hero-cta .hero-cta-icon{
  color: #fff !important;
}
.mentor_new h6{
  font-style: italic;
  font-weight: 500;
}
.mentor_new  h5{
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: var(--fw-bold);
  color: var(--color-skyBlue);
  line-height: 1;
}
.first_card .areasExpertise__card{
  margin-top: -130px;
  border: 1px solid #fff;
  color: #fff !important;
  padding: 60px 24px;
}
.first_card .areasExpertise__cardTitle{
  font-size: 34px;
  color: #FFF !important;
  font-weight: 600 !important;
}
.first_card .areasExpertise__cardSub{
  color: #FFF !important;
  font-size: 18px;
}
.first_card .areasExpertise__cardText{
  color: #FFF !important;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 40px;
}
.first_card  .brandHistory__btn{
  background: #fff !important;
}
.ceo-section .form-control{
	    border: 1px solid #112130;
    padding: 10px;
	    color: var(--color-darkNavy);
}
.ceo-section .form-control::placeholder{
	    color: var(--color-darkNavy);
}
.ceo-section .brandHistory__btn.hero-cta {
    border-color: var(--color-darkNavy);
    color: var(--color-darkNavy);
    background: transparent;
    padding: 5px 25px;
    margin-top: 10px;
}
.ceo-section .form-check-label{
	 color: var(--color-darkNavy);
	    font-size: 14px;
}
.ceo-section .footer-address div{
	    font-size: 18px;
	 color: var(--color-darkNavy);
}
.ceo-section .footer-contact-link {
    font-size: 18px;
    line-height: 1.7;
	 color: var(--color-darkNavy);
}
.ceo-section .social-btn {
    width: 35px;
    height: 35px;
}
.ceo-section .social-btn i {
    font-size: 20px;
    line-height: 1;
    color: #fff;
}
@media (max-width: 991.98px) {
  .brandHistory__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}





/* ================  NEW CSS FOR PRODUCT PAGE ***************** */


/* Product page css Open */


/* ************************** SINGLE PRODUCT PAGE  */
.wellbeing__head.singleProHead {
  padding-top: 16%;
  padding-bottom: 6%;
  background-image: url("/wp-content/uploads/2026/01/sngleprohead.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 50px 50px;
}

.hero-cta.newbrn {
  padding: 8px 20px;
}

/* ===================== SINGLE PRODUCT: PRODUCT DESCRIPTION ===================== */
.singleProductDesc {
  background: #f4f4f4;
  padding-top:300px;
  padding-bottom: 80px;
/*   overflow: hidden; */
}

.singleProductDesc__gallery {
     display: flex;
    gap: 18px;
      align-items: flex-start;
	 
}

/* Thumbs */
.singleProductDesc__thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.singleProductDesc__thumb {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(17, 33, 48, 0.12);
  border-radius: 12px;
  background: #ffffff;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: grid;
  place-items: center;
}

.singleProductDesc__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.singleProductDesc__thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.singleProductDesc__thumb.is-active {
  border-color: rgba(0, 159, 223, 0.55);
}

/* Main image */
.singleProductDesc__mainWrap {
  position: relative;
  flex: 1;
}

.singleProductDesc__main {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(17, 33, 48, 0.10);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
}

.singleProductDesc__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  
}

/* Blur circles (placeholders) */
.singleProductDesc__blur {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}

.singleProductDesc__blur--bl {
  width: 220px;
  height: 220px;
  left: -50px;
  bottom: -55px;
  opacity: 1;
}

.singleProductDesc__blur--tr {
  width: 200px;
  height: 200px;
  right: -40px;
  top: -40px;
}

/* Lens (magnifier) */
.singleProductDesc__lens {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background-repeat: no-repeat;
  background-color: #fff;
  display: none; /* only show on hover */
  cursor: none;
  z-index: 3;
}

/* RIGHT SIDE */
.singleProductDesc__info {
  position: relative;
}

.singleProductDesc__heroBox {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 33, 48, 0.10);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.singleProductDesc__pill {
  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #112130;
  margin-bottom: 10px;
}

.singleProductDesc__productNameImg img {
  width: 220px; /* adjust after you add real image */
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.singleProductDesc__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.singleProductDesc__checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #112130;
  line-height: 1.5;
}

.singleProductDesc__checkIcon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #009fdf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.singleProductDesc__checkIcon i {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

/* Text content */
.singleProductDesc__content {
  margin-top: 26px;
  padding-left: 60px;
}

.singleProductDesc__title {
  font-family: var(--ff-poppins);
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: #112130;
  margin-bottom: 12px;
}

.singleProductDesc__text p,
.singleProductDesc__text li {
  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #606060;
  line-height: 1.65;
}

.singleProductDesc__text strong {
  color: #112130;
  font-weight: var(--fw-semiBold);
}

.singleProductDesc__text ul {
  padding-left: 18px;
  margin: 10px 0 14px;
}

.singleProductDesc__text p {
  margin: 0 0 12px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .singleProductDesc {
    padding-top: 140px;
  }

  .singleProductDesc__gallery {
    flex-direction: column;
  }

  .singleProductDesc__thumbs {
    flex-direction: row;
  }

  .singleProductDesc__thumb {
    width: 70px;
    height: 70px;
  }

  .singleProductDesc__main {
    min-height: 320px;
  }

  .singleProductDesc__content {
    padding-left: unset;
  }

  .singleProductDesc__blur--bl {
    width: 170px;
    height: 170px;
    left: -35px;
    bottom: -40px;
  }


   .singleProductDesc__gallery {
    flex-direction: column;
    gap: 14px;
  }

  /* thumbs go bottom and centered */
  .singleProductDesc__thumbs {
    order: 2;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  /* big image goes top */
  .singleProductDesc__mainWrap {
    order: 1;
    width: 100%;
    height: 350px;
  }

  /* adjust sizes to look like your screenshot */
  .singleProductDesc__main {
    min-height: 260px;
  }

  .singleProductDesc__thumb {
    width: 78px;
    height: 78px;
    border-radius: 14px;
  }

  .wellbeing__head.singleProHead {
    padding-top: 35%;
  padding-bottom: 15%;
  background-position: center center;
  }
}
@media (min-width: 992px) {
  .singleProductDesc .col-lg-7 {
    position: sticky;
    top: 30%; /* adjust for header height */
    align-self: flex-start;
  }
}



/* ******************* MAIN PRODUCT PAGE  */
/* ===================== PRODUCTS GRID SECTION ===================== */
.productsGrid {
  background: #f4f4f4;
  padding: 90px 0;
}

/* Card */
.productCard {
   background: transparent;  
  border-radius: 16px;
  box-shadow: none;  
  height: 100%;
  display: flex;
  flex-direction: column;
}

.productCard__imgWrap {
background: #ffffff;
  border-radius: 16px;
  /* padding: 22px; */
  display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
}

.productCard__imgWrap img {
  width: 100%;
  /* max-width: 220px; */
  height: auto;
  object-fit: contain;
  display: block;
}

.productCard__body {
  padding: 18px 22px 22px;
}

.productCard__label {
  font-family: var(--ff-poppins);
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: #112130;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.productCard__title {
  font-family: var(--ff-poppins);
  font-size: 20px;
  font-weight: var(--fw-semiBold);
  color: #112130;
  margin: 0 0 10px;
}

.productCard__text {
  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #606060;
  line-height: 1.6;
  margin: 0 0 16px;
}

/* Button */
.productCard__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 18px;
  border-radius: 999px;

  background: #112130;
  color: #ffffff;

  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: var(--fw-regular);

  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.productCard__btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Load more */
.productsGrid__loadMore {
  margin-top: 34px;
}

.productsGrid__toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.productsGrid__toggleText {
  font-family: var(--ff-poppins);
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #112130;
}

.productsGrid__toggleIcon {
  font-size: 24px;
  color: #112130;
  line-height: 1;
  transition: transform 0.2s ease;
}

.productsGrid__toggle[aria-expanded="true"] .productsGrid__toggleIcon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 991.98px) {
  .productsGrid {
    padding: 40px 0;
  }
}

/* Product page css close */







