/* Hero Section */
.hero-section {
  position: relative;
  background: #fff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url(../images/banner.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

.hero-content {
  padding: 5rem 2rem 5rem 8rem;
  /* Left padding for desktop */
  z-index: 2;
  /* background: linear-gradient(90deg, #ffffff 80%, rgba(255, 255, 255, 0) 100%); */
}

/* LipsoBio Top Logo */
.logo-top {
  /* Using a serif font linked in HTML */
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 700;
}

.logo-top .lipso {
  color: #000;
}

.logo-top .bio {
  color: #f47920;
  /* Orange color */
}

.logo-top .reg-mark {
  font-size: 1rem;
  vertical-align: top;
  color: #000;
}

/* Main Lipogl Logo */
.main-branding {
  position: relative;
  display: inline-block;
}

.brand-name {
  font-weight: 700;
  font-size: 8rem;
  /* Large size */
  color: #2b3990;
  /* Dark Blue */
  margin: 0;
  line-height: 1;
  letter-spacing: -2px;
  display: flex;
  align-items: center;
}
.slider-logo {
  display: flex;
  justify-content: center; /* center align */
  align-items: center;
  margin-bottom: 20px;
}

.slider-logo img {
  width: 100%;
  max-width: 220px; /* desktop size */
  height: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .slider-logo img {
    max-width: 180px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .slider-logo img {
    max-width: 140px;
  }
}

/* Icon next to Lipogl - styling the 'o' or independent icon */
.brand-icon {
  font-size: 6rem;
  margin-left: 10px;
  color: #2b3990;
  /* Customizing the icon to look like a cell/liposome */
  border: 3px solid #2b3990;
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.8em;
  height: 0.8em;
}

/* If using a standard icon, we can style it. 
   Using bi-virus as a placeholder for cellular structure from Bootstrap Icons */

.tm-mark {
  font-size: 1.5rem;
  position: absolute;
  top: 10px;
  right: -40px;

  font-weight: 400;
  color: #000;
}

/* Product Title */
.product-title {
  font-weight: 700;
  font-size: 2rem;
  color: #2b3990;
  margin-top: 10px;
}

/* Tagline */
.tagline {
  font-size: 23px;
  color: #2b3990;
  font-weight: 400;
  /*letter-spacing: 0.5px;*/
}

/* Right Side Image Area */
.hero-image-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  /* Occupy slightly more than half to overlap */
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  /* Placeholder for the Woman Meditating Image */
  background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
}

/* Dots Pattern */
.dots-pattern {
  width: 100px;
  height: 60px;
  background-image: radial-gradient(#aaa 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.5;
}

.hero-image-container {
  display: none;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .hero-image-container {
    display: none !important;
  }

  .hero-section {
    flex-direction: column;
    /* height: auto; */
    /* min-height: auto; */
    background-position: right;
    background-image: unset !important;
  }

  .hero-content {
    width: 100%;
    padding: 3rem 1.5rem;
    /* background: #fff; */
    order: 1;
    text-align: center;
    align-items: center;
  }

  .logo-top {
    font-size: 2.5rem;
    margin-bottom: 2rem !important;
  }

  .slider-logo {
    justify-content: center;
  }

  .slider-logo img {
    max-width: 180px;
  }

  .product-title {
    font-size: 35px;
  }
  .brand-name {
    font-size: 4.5rem;
  }

  .brand-icon {
    font-size: 3.5rem;
  }

  .product-title {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 0vh !important;
  }
}

/* -------------------------------------------
   Glutathione Info Section
------------------------------------------- */

.info-section {
  background: #ececec;
  padding: 40px 20px;
}
.bioavailability-section {
  background: #fff;
}

/* Heading */
.section-heading {
  display: inline-block;
  background: #4b4f8f;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;

  /* CENTER */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: table;
  font-size: 23px;
}

/* Text */
.info-section p {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  max-width: 850px;
  margin: auto;
}

/* Responsive */
@media (max-width: 576px) {
  .info-section {
    padding: 40px 15px;
  }

  .info-section p {
    font-size: 14px;
  }
}
.research-section {
  background: #f5f6fa;
  padding: 60px 20px;
}

/* Badge */
.research-badge {
  display: table;
  margin: 0 auto 25px;
  background: #4b4f8f;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
}

/* Content */
.research-content {
  text-align: left;
}

.research-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* Bold text */
.research-content strong {
  color: #000;
}

/* Link */
.research-content a {
  color: #2c6cff;
  font-weight: 600;
  text-decoration: none;
}

.research-content a:hover {
  text-decoration: underline;
}

/* Sub heading */
.sub-heading {
  font-weight: 600;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 576px) {
  .research-section {
    padding: 40px 15px;
  }

  .research-content p {
    font-size: 14px;
  }
}

/* Part 2: Cards Background Wrapper */

/* Part 3: Research/Footer */

/* -------------------------------------------
   Core Benefits Section
------------------------------------------- */

.dlipo-benefits {
  background-color: #fff;
  padding: 40px 0;
}

.benefits-containers {
  margin: 0 auto;
  /*padding: 0 5%;*/
}

.section-title {
  color: #d49a3d;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* --- 1. Circles Design --- */
.benefits-circles-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
}

/* Background connecting line */
.benefits-circles-wrapper::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50px;
  right: 50px;
  height: 12px;
  background: #eeeeee;
  z-index: 1;
}

.circle-item {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 140px;
}

.circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border: 3px solid #4b4f8f; /* Green border from image */
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle img {
  width: 85px;
  height: auto;
}

.circle-item p {
  font-size: 16px;
  font-weight: 600;
  color: #00231f;
  line-height: 1.2;
}
/* circle hover */
.circle {
  transition: all 0.4s ease;
  position: relative;
}

/* main hover */
.circle-item:hover .circle {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #4b4f8f;
}

/* icon animation */
.circle img {
  transition: all 0.4s ease;
}

.circle-item:hover .circle img {
  transform: scale(1.2) rotate(8deg);
}

/* text hover */
.circle-item p {
  transition: all 0.3s ease;
}

.circle-item:hover p {
  color: #c78c2b;
  transform: translateY(3px);
}
/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
  .circle {
    width: 100px;
    height: 100px;
  }
  .circle-item {
    width: 110px;
  }
}

@media (max-width: 768px) {
  .benefits-circles-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .benefits-circles-wrapper::before {
    display: none;
  } /* Line hide on mobile */
  .research-grid {
    grid-template-columns: 1fr;
  }
  .comparison-table {
    min-width: 800px;
    margin: 13px;
  }
  .section-title {
    font-size: 22px;
  }
  .tagline {
    font-size: 35px;
  }
}
.circle img {
  width: 73px;
}

/* -------------------------------------------
   Research Articles Section
------------------------------------------- */

.research-section {
  padding: 40px 0;
  background: #ececec;
  text-align: center;
  overflow: hidden; /* Screen se bahar scroll nahi aayega */
}

.research-title {
  font-size: 28px;
  color: #7a3a0c;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Wrapper jo arrows ko side mein jagah dega */
.slider-container {
  position: relative;
  max-width: 1200px; /* Aapki layout width */
  margin: 0 auto;
  padding: 0 60px; /* Ye padding arrows ko cards se door rakhegi */
}

.researchSlider {
  width: 100%;
  margin: auto;
}

.research-card {
  background: rgb(222, 222, 222);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
  text-align: left; /* Text alignment left for cleaner look */
}

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

.research-card h4 {
  color: #7a3a0c;
  margin-bottom: 10px;
  font-size: 15px;
}

.research-card p {
  font-size: 13px;
  margin: 5px 0;
  line-height: 1.4;
  color: black;
}

.research-card a {
  color: #7a3a0c;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

/* Updated Arrow Positions */
.swiper-button-next,
.swiper-button-prev {
  color: #7a3a0c !important;
  top: 55% !important; /* Vertically center */
}

.swiper-button-next {
  right: 10px !important; /* Container ke bilkul kinare par */
}

.swiper-button-prev {
  left: 10px !important; /* Container ke bilkul kinare par */
}

/* Arrows size adjustment */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important;
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .research-title {
    font-size: 26px;
  }
  .slider-container {
    padding: 0 45px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    padding: 0 40px;
  }
  .research-card {
    height: auto;
    padding: 20px;
  }
  /* Mobile par arrows ko thoda chota kar sakte hain */
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 18px !important;
  }
}
/* -------------------------------------------
   Comparison Table Section
------------------------------------------- */

.comparison {
  padding: 40px 20px;
  background: #ececec;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* min-height: 600px;  */
}

/* title */
.comparison h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #fff;
}

.comparison span {
  font-weight: 700;
}

/* ================== LAYOUT ================== */
.table-wrappers {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 10px;

  overflow-x: auto; /* 🔥 SCROLL ENABLE */
  padding: 10px;

  justify-content: flex-start; /* 🔥 IMPORTANT */
}

/* ================== CARDS ================== */
.table-card {
  /* ❗ fix class name */
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  text-align: left;

  min-width: 260px; /* 🔥 SCROLL ke liye important */
  flex-shrink: 0; /* 🔥 shrink na ho */
}

/* ================== BACKGROUNDS ================== */
.feature {
  background: #4b4f8f;
  flex: 1.4;
}

.bio {
  flex: 2.4;
  background: #4b4f8f;
}

.conv {
  flex: 1.8;
  background: #4b4f8f;
}

/* ================== ROWS ================== */
.rows {
  padding: 18px 22px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* header row */
.headers {
  font-weight: 700;
  font-size: 15px;
}

/* remove last border */
.rows:last-child {
  border-bottom: none;
}

/* ================== SCROLLBAR (optional) ================== */
.table-wrappers::-webkit-scrollbar {
  height: 6px;
}

.table-wrappers::-webkit-scrollbar-thumb {
  background: #7a3a0c;
  border-radius: 10px;
}

/* Grade Table */
