/*=============== GOOGLE FONTS ===============*/
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --body-background: hsl(0, 0%, 98%);
  --body-color: hsl(220, 100%, 99%);
  --bg-white: #fff;
  --bg-dark: #000;
  --text-white: #fff;
  --text-dark: #111;
  --verified: #28a745;
  --secondary: #2d2d2d;
  --text-primary: #101828;
  --text-secondary: #667085cc;
  --text-gray: gray;
  /* --text-rating: rgb(194, 194, 7); */
  --text-rating: gold;
  --color-hover: #e3e3e3;
  --bg-red: #d62957;
  --color-red: #ff0000;
  --footer-bg: #10182F;
  --icon-footer: #afb6c7;
  --footer-text: #bfbfbf;
  --bg-card: #dddddd40;
  --card-list-bg: rgba(255, 255, 255, 0.2);
  --dropdown-bg: rgb(252, 253, 251);
  --shadow: rgba(32, 7, 65, 0.14);
  --btn-bg: linear-gradient(90deg, red, #b80576 26%, #4012ea 77%, #0032dc);
  --background-red: red;
  
  /* Enhanced color palette for articles */
  /* --accent-teal: #06a0b2;
  --accent-teal-light: #08c4d9;
  --accent-teal-dark: #0580a0;
  --accent-purple: #6366f1;
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444; */
  
  /* Enhanced shadows and effects */
  /* --shadow-light: rgba(6, 160, 178, 0.1);
  --shadow-medium: rgba(6, 160, 178, 0.2);
  --shadow-heavy: rgba(6, 160, 178, 0.3);
  --glow-teal: rgba(6, 160, 178, 0.6); */
  
  /* Animation timing */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --body-font: "Open Sans", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --container: 124rem;
  --nav-height: 4rem;

}


@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: var(--body-background);
}

*::-webkit-scrollbar-thumb {
  background: var(--bg-red);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--text-gary);
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-background) !important;
  color: var(--text-color);
}

ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.row-reverse-css {
  flex-direction: row-reverse !important;
}

.dropdown-item:hover {
  border-radius: 5px !important;
}

.dropdown-menu li a {
  border-radius: 0 !important;
}

a {
  text-decoration: none !important;
}

.btn-technology {
  display: inline-block;
  padding: 10px 20px;
  color: var(--text-white);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  transition: all .5s;
}

.btn-technology:hover {
  background: var(--btn-bg);
  border: 2px solid;
}

.btn-technology-body {
  display: inline-block;
  padding: 10px 20px;
  color: var(--text-dark);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  transition: all .5s;
}

.btn-technology-body:hover {
  background: var(--btn-bg);
  color: var(--text-white);
  border: 2px solid;
}

.view-product {
  display: inline-block;
  padding: 12px 20px;
  background-color: transparent;
  color: var(--text-white);
  background-color: var(--bg-red);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
}

.view-product:hover {
  opacity: 0.9;
}

.technology {
  display: inline-block;
  padding: 10px 20px;
  color: var(--text-dark);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
}

.technology:hover {
  background: var(--btn-bg);
  color: var(--text-white);
  border: 2px solid;
}

.go-btn {
  padding:  10px 15px;
  background: var(--btn-bg) !important;
  color: var(--text-white) !important;
  text-decoration: none;
  border-radius: 10px !important;
  transition: background-color 0.3s ease;
  font-size: 15px !important;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {

  .btn-technology,
  .view-product {
    margin: 5px !important;
    /* padding: 7px 15px; */
    /* font-size: 13px; */
  }

  .go-btn {
    padding: 7px;
    font-size: 12px !important;
  }
}

/*=============== REUSABLE CSS CLASSES ===============*/

/* start header */
.header {
  display: block;
  width: 100%;
  z-index: 99;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  transition: background-color 0.5s ease;
}

.header.scrolled {
  background-color: var(--bg-dark);
}


.header .row {
  align-items: baseline;
}

.header .item-left {
  flex: 0 0 23%;
}

.header .logo a {
  font-size: 22px;
  color: var(--text-rating);
  font-weight: 700;
  text-decoration: none;
}

.header .item-center {
  flex: 0 0 60%;
}

.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}



.header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
  color: var(--text-white);
}

.header .menu>ul>li>a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  border-radius: 7px;
}

@media(min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

.header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  font-weight:600;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.header .menu>ul>li .sub-menu>ul>li>a:hover {
  color: var(--text-rating) !important;
}

.header .menu>ul>li .single-column-menu {
  min-width: 240px;
  max-width: 300px;
  z-index: 999;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
}



.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1225px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 20px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
  color: var(--color-hover);
}

.header .menu>ul>li>a:hover {
  color: var(--text-rating);
}
.header .menu>ul>li>a.active {
  color: var(--text-rating);
}
/* banner section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

.toggle-btn {
  cursor: pointer;
  font-size: 22px;
  margin: 0 5px;
  border: none;
  background: none;
}

/*responsive*/
@media(max-width: 1200px) {
  .header {
    padding: 15px 0;
  }

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 1 0 15%;
  }

  .header .row {
    align-items: center;
  }

  .v-center {
    justify-content: space-between;
  }
  .header .menu>ul>li .single-column-menu {
    min-width: 240px;
    max-width: 300px;
    z-index: 9;
  }
  

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--text-white) !important;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: var(--text-white);
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-white);
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background: var(--body-color);
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
  }

  .header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    top: 0;
  }

  .mobile-menu-head a {
    color: var(--text-white);
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: var(--text-dark);
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .header .logo a {
    font-size: 17px;
  }

  .toggle-btn {
    font-size: 18px;
  }
}
@media screen and (max-width:400px) {
  .header .logo a {
    font-size: 15px;
  }
}
/* end header */


/* start hero section */
.hero-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: left;
  position: relative;
  max-width: 600px;
  padding-left: 8%;
  /* top: -8%; */
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 1em;
}

.button-group {
  display: flex;
  gap: 15px;
}

/* .button-group a {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.4s;
} */

.btn-shop {
  color: var(--text-white);
  background-color: var(--bg-red);
  border: 2px solid var(--bg-red);
}

.btn-explore {
  color: var(--text-white);
  background: transparent;
  border: 3px solid var(--bg-red);
  font-weight: 600;
  transition: all 0.3s ease !important;
}

.btn-explore:hover {
  background: var(--btn-bg);
  border: 3px solid transparent;
}

.background-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-container {
    height: 70vh;
  }

  .hero-content {
    padding: 0 20px;
    top: 0;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .button-group .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .button-group .btn {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .button-group {
    gap: 7px;
  }
}

/* end header section */

/* section category of health */
.health-goals {
  margin: 50px 0;
}
.health-goals .container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1rem;
}
.health-goals h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 600;
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.category-item {
  width: calc(20% - 16px); /* 5 items per row with gaps */
  min-width: 150px;
}

.goal-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* حجم الصوره دي 300*200 */
.goal-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.goal-card:hover img {
  transform: scale(1.05);
}

.goal-title {
  background-color: #000;
  color: #fff;
  padding: 10px 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .category-item {
    width: calc(25% - 15px); /* 4 items per row on medium screens */
  }
}

@media screen and (max-width: 768px) {
  .category-item {
    width: calc(50% - 10px); /* 2 items per row on small screens */
  }

  .goal-card img {
    height: 200px;
  }

  .goal-title {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .category-item {
    width: calc(50% - 10px); /* 2 items per row on mobile screens */
  }

  .goal-card img {
    height: 150px;
  }

  .goal-title {
    font-size: 0.8rem;
    padding: 8px 0;
  }
}

@media screen and (max-width: 320px) {
  .categories-container {
    gap: 10px;
  }

  .category-item {
    width: calc(50% - 5px); /* 2 items per row on very small screens */
  }

  .goal-card img {
    height: 120px;
  }

  .goal-title {
    font-size: 0.7rem;
    padding: 6px 0;
  }
}

/* section category of health */

/* start section why us */
.why_us {
  margin: 70px auto;
}

.why_us h1 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 500;
  width: 60%;
  margin: 30px auto;
  line-height: 1.5;
}

.features {
  width: 100%;
  max-width: 700px;
  margin: 10px auto;
}

.features .feature-content {
  margin: 15px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "arial", sans-serif;
}

.features .feature-content i {
  font-size: 1.2rem;
  margin-right: .5rem;
  color: var(--text-white);
  padding: 15px;
  border-radius: 50%;
  background: linear-gradient(blue, red);
  -webkit-mask: radial-gradient(circle, #fff 65%, transparent 66%);
  mask: radial-gradient(circle, #fff 65%, transparent 66%);
}

.features .feature-content span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

@media screen and (max-width: 768px) {
  .why_us {
    margin: 50px auto;
  }

  .why_us h1 {
    font-size: 18px;
    width: 100%;
    margin: 20px auto;
  }

  .features .feature-content span {
    font-size: 12px;
  }
  .health-goals h2 {
    font-size: 22px;
  }
}

/* end section why us */

/* start section Best product */

/* .best-product {
  background-color: var(--bg-dark);
}

.product-figure {
  padding: 0px;
}

.product-figure img {
  max-width: 100%;
  height: 350px;
  border-radius: 5px;
  scale: 1.1;
} */
.best-product {
  margin: 50px 0;
  background-color: #e8e8e885;
}
.best-product h1 {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 600;
  padding: 30px 0;
  margin: 0;
}
.product-figure {
  padding: 20px;
}

.product-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.product-info {
  color: var(--text-dark);
  padding: 20px;
}

.product-info h3 {
  font-weight: bold;
  color: var(--text-dark);
  margin: 15px 0;
}

.product-overview {
  font-style: italic;
  font-size: 20px;
  color: var(--secondary);
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 30px;
  margin-bottom: 35px;
  text-align: justify;
}

/* Responsive */
@media (max-width: 767.98px) {
  .best-product { 
    margin: 30px 0;
  }
  .product-figure,
  .product-info {
    text-align: center;
    padding: 5px 20px;
  }

  .product-figure img {
    max-width: 100%;
    height: auto;
  }

  .button-group .btn {
    display: block;
    width: 100%;
    margin: 5px 0;
  }
  .best-product h1 {
    font-size: 22px;
  }
}

/* end section Best product */

/* start section technology behind */
/* Enhanced Timeline Container */
.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
}

.timeline-container h2 {
  color: var(--text-dark);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  margin-bottom: 2.5rem;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* Timeline Items Container */
.timeline-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 140px;
  max-width: 160px;
  text-align: center;
  padding: 1.2rem 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--btn-bg);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.timeline-item:hover,
.timeline-item.active {
  transform: translateY(-8px) scale(1.02);
  color: var(--text-white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.timeline-item:hover::before,
.timeline-item.active::before {
  opacity: 1;
}

.timeline-item small {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  font-weight: 600;
  display: block;
  margin-top: 0.4rem;
  line-height: 1.3;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.3rem;
  color: var(--color-red);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  box-shadow: 0 3px 12px rgba(231, 76, 60, 0.2);
}

.timeline-item:hover .icon-circle,
.timeline-item.active .icon-circle {
  color: var(--text-white);
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Results Section */
.results-section {
  background: var(--btn-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.results-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
}

.tab-pane {
  display: none;
  position: relative;
  z-index: 1;
}

.tab-pane.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-pane h2 {
  color: var(--text-white);
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.tab-pane p {
  color: var(--text-white);
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* CTA Buttons */
.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .timeline-wrapper {
    gap: 0.6rem;
  }

  .timeline-item {
    min-width: 120px;
    max-width: 140px;
    padding: 1rem 0.6rem;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .timeline-container {
    max-width: 100%;
    padding: 1rem;
  }

  .timeline-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .timeline-item {
    min-width: 150px;
    max-width: 110px;
    padding: 0.8rem 0.4rem;
  }

  .timeline-item small {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .results-section {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .cta-container {
    gap: 0.6rem;
  }


}

@media (max-width: 480px) {
  .timeline-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .timeline-item {
    width: 100%;
    max-width: 280px;
    padding: 1.2rem;
  }

  .timeline-item small {
    font-size: 1rem;
  }

  .results-section {
    padding: 1.8rem 1.2rem;
  }

  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .cta-container {
    /* flex-direction: column; */
    gap: 0.8rem;
  }

}

/* Connection Lines (Optional Enhancement) */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-red) 20%, var(--color-red) 80%, transparent 100%);
  z-index: -1;
}

@media (max-width: 768px) {
  .timeline-wrapper::before {
    display: none;
  }
}

/* end section technology behind */



/* start section testimonial */


.testimonial-section {
  display: flex !important;
  flex-wrap: wrap;
  margin: 20px 0;
  width: 100%;
}

.testimonial-image {
  padding: 0 !important;
}

.container-fluid,
.testimonial {
  width: 98.5%;
  margin: 70px auto;
}

.container-fluid h1 {
  font-size: 25px;
  color: var(--text-dark);
  font-weight: bold;
  margin: 15px 0;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: var(--text-dark) !important;
  width: 10px !important;
  height: 10px !important;

}

/* .swiper-pagination-bullet-active {
  background-color: var(--bg-white) !important;
} */

/* bubble in page home  */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 2px !important;
}

.testimonial-text {
  background-color: var(--bg-red);
  color: var(--text-white);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 7px;
}

.testimonial-quote img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

@media screen and (max-width: 768px) {
  .container-fluid h1 {
    font-size: 22px;
    margin: 7px 0;
  }

  .testimonial-image {
    padding: 0 !important;
  }

  .container-fluid,
  .testimonial {
    width: 96%;
    margin: 30px auto;
  }

  .testimonial-text {
    padding: 20px;
    margin: 5px 0;
  }

}

/* end section testimonial */
/* start section review */
.review {
  margin: 20px 0;
  padding: 2rem 0;
}

.review h1,
.patented-products h1 {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 30px;
  padding: 0 30px;
}
.patented-products .container-products {
  width: 95%;
  margin: 0 auto;
}
.container-review {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.review-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.review-list::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  padding: .8rem;
  border-radius: 8px;
  text-align: left;
  width: 280px;
  min-width: 280px;
  height: auto;
  /* border: 1px solid #ccc; */
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--bg-dark);
  background-color: var(--bg-white);
  margin-bottom: 10px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stars {
  font-size: 1rem;
}

.verified {
  font-size: .8rem;
  color: var(--verified);
}

.review-title {
  font-size: .9rem;
  font-weight: bold;
  margin-bottom: .5rem;
}

.review-content {
  font-size: .8rem;
  margin-bottom: .5rem;
}

.review-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.has-scrollbar {
  display: flex;
  overflow-x: scroll;
}

@media (min-width: 768px) {
  .review-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    overflow-x: hidden;
  }

  .review-card {
    width: 100%;
    min-width: unset;
  }
}

@media (min-width: 1024px) {
  .review-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .review h1,
.patented-products h1 {
  font-size: 22px !important;
}
  
}
/* end section review */

/* start section patented-products */
.patented-products {
  margin: 70px 0;
}

.patented-products .card {
  width: 100%;
  border: none;
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);

}

.patented-products .card .card-body {
  text-align: center !important;
  padding: 30px 0 10px 0;
  width: 70%;
  margin: 0 auto;
}

.patented-products .card .card-body .card-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
}

.patented-products .card .card-body .card-title span {
  color: var(--bg-red);
}

.patented-products .card img {
  height: 400px;
  object-fit: cover;
}

/* this code in page all products */
.patented-products .card .product-image {
  height: 250px;
  object-fit: cover;
}

.group-btn .btn-technology {
  color: var(--text-dark);
}

.group-btn .btn-technology:hover {
  color: var(--text-white);
}

@media screen and (max-width:1025px) {
  .patented-products {
    margin: 40px 0;
  }

  .patented-products .card .card-body {
    width: 96%;
  }

  .patented-products .card img {
    height: 280px;
  }

  /* this code in page all products */
  .patented-products .card .product-image {
    height: 250px;
  }

  .patented-products .card {
    width: 96%;
    margin: 0 auto;
  }
}

/* end section patented-products */
/* start section banner */
.banner-purose-section {
  position: relative;
  background: url(../../assets/image/bowder.jpg) no-repeat center center;
  background-size: cover;
  height: 100vh;
  /* align-items: center; */
  color: var(--text-white);
  text-align: left;
}

.banner-content-purpose {
  max-width: 450px;
  padding: 40px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

/* .banner-content-purpose .banner-title {
  font-size: 3rem;
  font-weight: bold;
} */
.banner-content-purpose .purose-title {
  font-size: 2.5rem;
  font-weight: 600;
}

.banner-content-purpose p {
  font-size: 1.2rem;
  margin: 20px 0;
  text-align: justify;
  font-style: 600;
}

@media (max-width: 768px) {
  .banner-content-purpose .banner-title {
    font-size: 2.5rem;
  }

  .banner-purose-section {
    height: 50vh;
  }
}

@media (max-width: 576px) {
  .banner-content-purpose .banner-title {
    font-size: 1.5rem;
  }

  .banner-purose-section {
    height: 40vh;
  }

  .banner-content-purpose .purose-title {
    font-size: 2rem;
  }
}

/* end section banner */

/* start section ingredients */
.section-ingredients {
  margin: 70px 0;
}

.card-ingredients {
  background-image: url(../../assets/image/ingredient-bg.png);
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  height: 550px;
  padding: 30px;
  position: relative;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Copy code to element you want to animate */
  animation: card-ingredients 6s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal both;
}

.card-ingredients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 7px;
}

/*
.card-ingredients:hover {
  border-top: 6px solid var(--bg-red);
  cursor: pointer;
} */

.container-ingredients {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.container-ingredients h1 {
  text-align: left;
  font-size: 30px;
  margin: 20px 0;
}

.text-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  text-align: left;
}

/* .card-ingredients {
  background-image: url(../../assets/image/product_hover.webp);
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  padding: 20px;
  height: 550px;
  position: relative;
  transition: all 0.3s ease;
} */

/* .card-ingredients::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9;
  border: 7px;
} */

/* .card-ingredients:hover {
  border-top: 6px solid var(--bg-red);
  cursor: pointer;
} */

/* .card-ingredients h4 {
  padding: 20px 0;
  font-size: 30px;
  color: var(--text-white);
  z-index: 99;
  transition: all 0.3s ease;
  font-weight: bold;
} */

/* .card-ingredients .content {
  z-index: 99;
  padding: 0 20px;
  color: var(--text-white);
  font-weight: bold;
  position: absolute;
  bottom: 5%;
  left: 10%;
  transform: translate(-10%, -10%);
} */

.card-research {
  height: 250px;
  background-color: var(--bg-red);
  color: var(--text-white);
  border-radius: 6px;
  transition: all .3s;
  animation: card-research 8s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal none;
}

@keyframes card-research {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-45px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(-24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(-12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}

/* .card-research:hover {
  border-top: 6px solid var(--text-white);
} */

.card-science {
  height: 250px;
  box-shadow: 4px 8px 8px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-radius: 6px;
  animation: card-science 8s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal both;
}

.card-science-shadow {
  height: 275px;
  background-color: var(--bg-white);
  box-shadow: 4px 8px 8px 8px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  border-radius: 6px;
  transition: all .3s;
}

/* Copy this code after the above code */
@keyframes card-science {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(45px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}


.card-research .content,
.card-science .content,
.card-science-shadow .content {
  padding: 40px;
}

.card-research .content small,
.card-science .content small,
.card-science-shadow .content small {
  padding-bottom: 10px;
}

/* .card-science .content small {
  color: var(--bg-red);
} */

.card-research .content h4,
.card-science .content h4,
.card-science-shadow .content h4 {
  font-size: 22px;
  font-weight: 600;
  padding: 7px 0;
}

.card-research .content p,
.card-science .content p,
.card-science-shadow .content p {
  width: 100%;
  margin-bottom: .5rem;
}

.card-research .content .data,
.card-science .content .data,
.card-science-shadow .content .data {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1024px) {

  .card-research,
  .card-science,
  .card-science-shadow {
    height: auto;
  }

  .card-research .content,
  .card-science .content,
  .card-science-shadow .content {
    padding: 10px 20px;
  }

  .card-research .content p,
  .card-science .content p,
  .card-science-shadow .content p {
    width: 90%;
  }

  .card-research .content h4,
  .card-science .content h4,
  .card-ingredients h4,
  .card-science-shadow .content h4 {
    font-size: 25px;
  }
}

@media (max-width: 1024px) {
  .card-ingredients {
    height: 400px;
    margin-bottom: 20px;
  }
}

/* end section ingredients */
/* start footer */
.footer {
  width: 100%;
  background: var(--bg-dark);
  /* border-radius: 6px; */
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}

.footer-row .footer-col h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col .links li a {
  text-decoration: none;
  color: var(--footer-text);
}

.footer-col .links li a:hover {
  color: var(--text-white);
}

.footer-col p {
  margin: 20px 0;
  color: var(--footer-text);
  max-width: 300px;
}

.footer-col form {
  display: flex;
  gap: 5px;
}

.footer-col input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid var(--footer-text);
  caret-color: var(--text-white);
  color: var(--text-white);
  padding-left: 10px;
}

.footer-col input::placeholder {
  color: var(--text-white);
}

.footer-col form button {
  background: var(--bg-red);
  color: var(--text-white);
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-col form button:hover {
  color: var(--text-dark);
  background: var(--bg-white);
}


.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  color: var(--icon-footer);
}

.footer-col .icons i:hover {
  color: var(--text-white);
}
.footer-logo .brand-name {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer-logo {
    width: 100%;
    margin: 15px 0;
  }

  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col form {
    display: block;
  }

  .footer-col form :where(input, button) {
    width: 100%;
  }

  .footer-col form button {
    margin: 10px 0 0 0;
  }
}

/* end footer */

/* start page product details  */
/* product details section  */
.header-page-details {
  background-color: var(--bg-dark);
}

.product-details {
  padding: .5rem 5rem;
  margin: 90px 20px 30px 20px;
}

.card-details .product-imgs {
  display: flex;
  flex-direction: row;
}

.product-imgs .img-display {
  overflow: hidden;
  width: 500px;
  margin: 0 2rem;
}

.img-display .img-showcase {
  display: flex;
  transition: all 0.5s ease;
}

.img-display .img-showcase img {
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
}

.product-imgs .img-select {
  display: flex;
  flex-direction: column;
  gap: .7rem;

}

.img-select .img-item img {
  width: 100%;
  height: 120px;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 5px;
}

.img-display .img-showcase img {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.img-display .img-showcase img.fade-out {
  opacity: 0;
}

.img-select .img-item:hover img {
  opacity: 0.8;
  border: 1px solid var(--bg-red);
}

.card-details .product-content {
  padding: 2rem 1rem;
}

.product-name {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 600;
}

.product-name span,
.product-name-mobile span {
  color: var(--bg-red);
}

.product-name-mobile {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 600;
  display: none;
}

.product-description {
  text-align: justify;
  color: var(--text-dark);
  margin: 1rem 0;
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.5;
}

.product-content .product-rating {
  color: var(--text-rating);
  padding: 10px 0;
}

/* according */
.faqs-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.accordion-section {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
}

.accordion-item {
  color: var(--text-dark);
  margin: 1rem 0;
}

.accordion-item-header {
  padding: 1.2rem 3rem 1.2rem 1rem;
  min-height: auto;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header h3 {
  font-size: 17px;
  font-weight: 600;
}

.accordion-item-body-content p {
  text-align: justify;
  font-size: 14px;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 1.3rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #e71010, transparent) 1;
}

/* chart  */
/* .chart-container {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.chart-container .chart {
  width: 100%;
  margin-bottom: 10px;
}

.chart-container .legend {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.chart-container .legend .legend-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.note {
  color: #666;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px;
} */
.chart-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  max-width: 700px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.chart-container.show {
  opacity: 1;
  transform: translateY(0);
}
    /* Chart Title */
    .chart-slider-container .chart-slider .chart-slides .chart-slide .chart-title {
      text-align: center;
      font-size: 1.2rem;
      font-weight: 600;
      color: #2c3e50;
      padding: 10px;
      background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
#chart {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .card-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }

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

  .product-imgs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .product-content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 1200px) {
  .product-details {
    padding: .5rem 1rem;
    margin: 60px 10px 15px 10px;
  }

  .card-details .product-imgs {
    display: flex;
    flex-direction: column;
  }

  .card-details {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-name {
    display: none;
  }

  .product-name-mobile {
    display: block;
    font-size: 1.5rem;
    margin: 20px 5px;
  }

  .accordion-item-header h3 {
    font-size: 15px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .img-item img {
    width: 80px;
    height: auto;

  }

  .product-details {
    padding: 1rem;
  }

  .product-imgs {
    flex-direction: column-reverse;
    align-items: center;
  }

  .img-display {
    margin-left: 0;
    width: 80%;
  }

  .img-select {
    flex-direction: row;
    margin-top: 1rem;
  }

  .product-imgs .img-select {
    flex-direction: row;
  }

  .product-imgs .img-display {
    margin: 1rem;
  }

  /* .chart-container .legend .legend-item {
    padding: 8px 10px;
    font-size: 12px;
  } */
}

@media screen and (max-width: 600px) {
  .product-imgs .img-display {
    width: 380px;
    margin: .5rem 1rem;
  }

  .card-details .product-content {
    padding: 1rem .5rem;
  }

  .product-details {
    padding: 0;
  }

  .img-select .img-item img {
    height: 95px;
  }

}

@media screen and (max-width: 400px) {
  .product-imgs .img-display {
    width: 300px;
  }
}

/* section product banner  */

.product_banner {
  background-image: url(../../assets/image/banner-details.webp);
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: var(--text-white);
  position: relative;
  margin: 70px 0 0 0;
}

.product_info_banner {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 50%;
}

.product_info_banner .product_info_subtitle {
  font-size: 22px;
  margin: 10px 0;
}

.product_info_banner p {
  text-align: justify !important;
}

.section-cell-health {
  margin: 70px 0;
}

.section-cell-health .description {
  text-align: center;
  margin-bottom: 30px;
  width: 50%;
  margin: 0 auto;
  color: var(--text-white);
}

.section-cell-health .description h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
}

.enhances-cell-health {
  display: flex;
  flex-direction: column;
}

.container-enhance {
  display: flex;
  flex-wrap: wrap;
  align-items: space-between;
  justify-content: center;
  padding: 20px;
  margin: 10px 0;
}

.container-enhance .text-cell {
  flex: 1 1 50%;
  max-width: 600px;
  padding: 20px;
  margin-top: 30px;
  color: var(--text-dark);
}

.container-enhance .text-cell h2 {
  font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    font-style: italic;
}

.container-enhance .text-cell p {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

.container-enhance .image-cell {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container-enhance .image-cell img {
  width: 60%;
  height: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.product_info_banner .features .feature-content span {
  color: var(--text-white);
}

/* section what is inside */
.whats-inside {
  background-color: var(--bg-white);
  /* padding: 70px 0 !important; */
}

.whats-inside .container {
  max-width: 750px;
}

.whats-inside .section-title {
  font-weight: 500;
  font-size: 2.5rem;
  background: var(--bg-red);
  background: linear-gradient(to right, #FF0000 0%, #111EC6 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.whats-inside .section-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

.whats-inside .feature-item {
  text-align: center;
}

.whats-inside .feature-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.whats-inside .feature-text {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* start section how-to-take */
.how-to-take {
  background: linear-gradient(90deg, #ba0306, #0357b1);
  color: var(--text-white);
  padding: 70px 0 !important;

}

.how-to-take .row-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.how-to-take .row-card .card-img-top {
  height: 300px !important;
  object-fit: cover;
}

.how-to-take .section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.how-to-take .row-card .card-text {
  font-size: 15px;
  color: var(--text-white);
  padding: 7px 5px !important;
  font-weight: 600;
}

@media screen and (max-width: 1025px) {

  .product_info_banner {
    width: 85%;
  }

  .section-cell-health .description {
    width: 70%;
  }

  .container-enhance .image-cell img {
    width: 100%;
    height: 400px;
  }

  .container-enhance .text-cell p {
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .container-enhance .text-cell {
    flex: 1 1 40%;
    max-width: 500px;
    padding: 10px;
    margin-top: 10px;
  }

  .how-to-take .row-card .card-img-top {
    height: 180px !important;
  }

  .how-to-take .row-card .card-text {
    font-size: 13px;
    margin: 7px 0;
    text-align: left;
    padding: 0 10px !important;
  }
}

@media screen and (max-width: 768px) {
  .product_banner {
    margin: 30px 0;
    height: 90vh;
  }

  .product_info_banner {
    width: 90%;
  }

  .product-content .img-detail {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .section-cell-health .description {
    text-align: center;
    width: 100%;
    padding: 0 15px;
  }

  .section-cell-health .description h2 {
    font-size: 22px;
  }

  .section-cell-health .description p {
    font-size: 14px;
  }

  .container-enhance {
    flex-direction: column;
    padding: 10px;
  }

  .container-enhance .text-section,
  .container-enhance .image-section {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .container-enhance .text-cell h2 {
    font-size: 1.2rem;
  }

  .container-enhance .text-cell p {
    font-size: 0.9rem;
    margin-bottom: 7px;
  }

  .container-enhance .image-cell img {
    width: 100%;
    height: 350px;
  }

  .first-cell {
    display: flex;
    flex-direction: column-reverse;
  }

  .how-to-take .box-data {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .how-to-take .row-card .card-img-top {
    height: 140px !important;
  }

  .section-cell-health {
    margin: 35px 0;
  }
}

/* =============== FEATURES SECTION WITH IMAGE =============== */
.features-layout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.product_info_banner {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  top: auto;
  transform: none;
  width: 100%;
  z-index: 2;
}

.features-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.features-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  /* border-radius: 25px; */
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(214, 41, 87, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); */
}

.features-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

/* .features-main-image:hover {
  transform: scale(1.08);
} */

.features-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  animation: floatDecoration 6s ease-in-out infinite;
}

.decorative-shape.shape-1 {
  width: 80px;
  height: 80px;
  top: 15px;
  right: 15px;
  background: rgba(214, 41, 87, 0.2);
  animation-delay: 0s;
}

.decorative-shape.shape-2 {
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.4);
  animation-delay: 2s;
}

.decorative-shape.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: -30px;
  background: rgba(214, 41, 87, 0.15);
  animation-delay: 4s;
}

@keyframes floatDecoration {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Features Grid Responsive Adjustments */
.product_info_banner .features .feature-content {
  margin-bottom: 1.2rem;
  padding: 0.8rem;
}

/* =============== RESPONSIVE FEATURES DESIGN =============== */

/* Large Desktop */
@media screen and (max-width: 1200px) {
  .features-layout-container {
    gap: 2rem;
  }
  
  .features-image-container {
    max-width: 450px;
  }
}

/* Desktop */
@media screen and (max-width: 1025px) {
  .features-layout-container {
    gap: 1.5rem;
  }
  
  .features-image-container {
    max-width: 400px;
  }
  
  .product_info_banner {
    width: 100%;
  }
}

/* Tablet */
@media screen and (max-width: 768px) {
  .product_banner {
    margin: 30px 0;
    height: auto;
    min-height: 80vh;
  }
  
  .features-layout-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
  }
  
  .features-image-section {
    order: -1;
  }
  
  .features-image-container {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .product_info_banner {
    width: 100%;
  }
  
  .product_info_banner .features {
    justify-content: center;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 576px) {
  .product_banner {
    height: auto;
    min-height: 70vh;
  }
  
  .features-layout-container {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .features-image-container {
    max-width: 280px;
  }
  
  .decorative-shape.shape-1 {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 10px;
  }
  
  .decorative-shape.shape-2 {
    width: 45px;
    height: 45px;
    bottom: 15px;
    left: 15px;
  }
  
  .decorative-shape.shape-3 {
    width: 80px;
    height: 80px;
    left: -25px;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 480px) {
  .features-layout-container {
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .features-image-container {
    max-width: 250px;
    aspect-ratio: 1.1;
  }
  
  .product_info_banner .product_info_title {
    font-size: 1.8rem;
  }
  
  .product_info_banner .product_info_decraption {
    font-size: 0.9rem;
  }
  
  .product_info_banner .features .feature-content {
    padding: 0.5rem;
    margin-bottom: 0.8rem;
  }
}

/* Extra Small */
@media screen and (max-width: 360px) {
  .features-image-container {
    max-width: 220px;
  }
  
  .decorative-shape {
    display: none;
  }
  
  .product_info_banner .product_info_title {
    font-size: 1.5rem;
  }
}

/* end page product details  */

/* Why choose us page */

.banner-hero {
  background-image: url(../../assets/image/why.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.secience-hero {
  background-image: url(../../assets/image/science.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.banner_technologyBehind {
  background-image: url(../../assets/image/technologyBehind.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.technology-hero {
  background-image: url(../../assets/image/technologybg.jpg);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.contact-hero {
  background-image: url(../../assets/image/contact.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.banner_product_list {
  /* background-image: url(../../assets/image/technologyBehind.webp); */
  background-color: red;
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.product-hero {
  background-image: url(../../assets/image/banner-list.jpg);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.banner-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* align-items: center; */
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  padding: 10px 20px;
  z-index: 9;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.banner-text h3 {
  padding: 7px 0;
  font-weight: 600;
  /* margin-bottom: 0; */
}

/* .banner-text h3, */
.banner-text p {
  /* padding: 7px 0;
  font-weight: 600; */
  margin-bottom: 0;
}

.section-Differentiators,
.section-proven_results {
  margin: 60px 0;
}

.section-Differentiators h1,
.section-proven_results h1 {
  font-size: 30px;
  text-align: center;
  margin: 30px 0;
  color: var(--text-dark);
}

.section-Differentiators .slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}

.card-list .card-item {
  height: auto;
  color: var(--text-white);
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--card-list-bg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid var(--text-white);
  padding: 4px;
}

.card-list .card-item .user-name {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

.card-list .card-item .user-profession {
  font-size: .9rem;
  color: var(secondary);
  font-weight: 500;
  margin: 10px 0 10px;
  text-align: center;
}


.section-Differentiators .slider-wrapper .swiper-pagination-bullet {
  background: var(--text-dark);
  height: 10px;
  width: 10px;
  opacity: 0.5;
}

.section-Differentiators .slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.section-Differentiators .slider-wrapper .swiper-slide-button {
  color: var(--text-white);
  margin-top: -35px;
  transition: 0.2s ease;
}

.section-Differentiators .slider-wrapper .swiper-slide-button:hover {
  color: var(--bg-red);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 25px !important;
}


/* about us section */

.section-about {
  margin: 40px 0;
  width: 100%;
}

.section-targets {
  margin: 40px 0;
}

.about-us,
.targets {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  justify-items: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us .main-img img,
.targets .main-img img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.targets .main-img img {
  height: 400px;
}

.about-us .main-img img:hover,
.targets .main-img img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.about-us .about-content,
.targets .targets-content {
  padding: 6% 0;
  opacity: 0;
  animation: fadeInText 1s ease-out forwards 0.5s;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

.about-content h1,
.targets-content h1 {
  color: var(--text-dark);
  line-height: 40px;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  ;
}

.targets-content h1 {
  text-align: left;
  line-height: 35px;
  font-size: 24px;
  text-align: justify;
}

.about-content p,
.targets-content p {
  max-width: 600px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
}

.targets-content p {
  text-align: left;
}

/* page science  */
.section-proven_results .box-result {
  padding: 10px 30px;
  color: var(--text-white);
  margin: 15px 0;
}

.section-proven_results .box-result i {
  font-size: 20px;
  margin-bottom: 10px;
  margin-right: .5rem;
  color: var(--text-white);
  padding: 15px;
  border-radius: 50%;
  background: linear-gradient(blue, red);
  -webkit-mask: radial-gradient(circle, #fff 65%, transparent 66%);
  mask: radial-gradient(circle, #fff 65%, transparent 66%);
}

.section-proven_results .box-result h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-proven_results .box-result p {
  font-size: 16px;
  color: var(--text-dark);
}

.main-container-tabs {
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px;
}

/* ===== Tab navigation content ===== */
.tab-nav-bar {
  margin: 20px 0;
}

.tab-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.tab-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  /* background-color: var(--body-color); */
  padding: 10px !important;
  border-radius: 50px;
  box-shadow: var(--body-color);
  overflow-x: auto;
  scrollbar-width: none;
  width: 1200px;
  margin: 0 auto !important;
}

.tab-menu::-webkit-scrollbar {
  height: 6px;
}

.tab-menu::-webkit-scrollbar-thumb {
  background-color: var(--text-secondary);
  border-radius: 10px;
}

.tab-btn {
  color: var(--text-dark);
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--bg-red);
  color: var(--text-white);
}

.left-btn,
.right-btn {
  font-size: 1.5rem;
  color: var(--text-white);
  cursor: pointer;
}

/* ===== Tab content ===== */
.tab-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
}

.img-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  /* object-fit: cover; */
}

.info {
  padding: 10px;
}

.city {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.description p {
  line-height: 1.6;
  color: var(--secondary);
  text-align: justify;
  font-size: 18px;
}

.description ul li {
  line-height: 2;
  color: var(--secondary);
  text-align: justify;
  font-size: 18px;
  margin-bottom: 5px;
}

.country {
  color: var(--text-secondary);
  font-size: 4em;
  font-weight: 700;
  text-align: center;
  text-shadow: var(--text-shadow);
  margin-top: 15px;
}

/* ===== Responsive design ===== */
@media (max-width: 768px) {
  .tab-navigation {
    flex-direction: column;
  }

  .tab-menu {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0 !important;
  }

  .tab-btn {
    font-size: 1.1rem;
    padding: 8px 15px;
  }

  .country {
    font-size: 2rem;
    margin-top: 5px;
  }

  .left-column,
  .right-column {
    padding: 0;
  }

  .targets .targets-content {
    padding: 2% 0;
  }

  .chart-container {
    max-width: 100%;
    width: 100%;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .city {
    font-size: 1.5rem;
  }

  .description p {
    font-size: 0.9rem;
  }

  /* .tab-btn {
    padding: 5px 10px;
  } */
}

/* page technology */
.benefit-icon {
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 50%;
}

.video-container {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

#dropdownDefaultButton {
  color: var(--text-white);
  background-color: var(--bg-red);
  padding: 7px 20px;
  border-radius: 10px;
  margin: 10px 0;
}

#dropdown ul li a {
  color: var(--text-dark) !important;
}

.main-container-tabs-technology {
  margin: 0 auto;
  padding: 20px;
  max-width: 1450px;
}

.tab-menu-technology {
  width: 1450px;
}

.chart-style {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 300px;
}


/* page product list */

.banner_product_list {
  /* background-image: url(../../assets/image/technologyBehind.webp); */
  background-color: var(--background-red);
  background-size: cover;
  background-position: center;
  height: 65vh;
  color: var(--text-white);
}

.banner_product_list .banner_product_text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 50px;
}

.banner_product_text h3 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 600;
}

.banner_product_text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.banner_product_list .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.section_product_list {
  background-color: var(--bg-white);
}

.container_product_list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.container_product_list .row {
  padding: 50px 0;
}

.container_product_list .row .product-image {
  position: relative;
}

.container_product_list .row .details-box {
  border-left: 3px solid var(--color-red);
  padding-left: 10px;
}

.container_product_list .row .details-box .card {
  border: none;
  background-color: var(--bg-card);
}

.details-box .card img {
  height: 200px;
}

.details-box .card span {
  font-weight: bold;
  color: var(--color-red);
}

.details-box .card h4 {
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.details-box .card .card-body a {
  font-size: 14px;
  color: var(--color-red);
  font-weight: 500;
}

.container_product_list .row .box h2 {
  color: var(--color-red);
  margin-top: 25px;
  margin-bottom: 10px;
}

.container_product_list .row .box .text {
  font-size: 1.1rem;
}

.related_articles {
  background: linear-gradient(90deg, #ba0306, #0357b1);
  margin: 0 !important;
  padding: 60px 0;
}

@media (max-width: 768px) {

  .banner-hero,
  .secience-hero,
  .banner_technologyBehind,
  .technology-hero,
  .contact-hero,
  .product-hero {
    height: 50vh;
  }

  .banner-text {
    top: 55%;
  }

  .section-Differentiators .slider-wrapper {
    margin: 0 10px 40px;
  }

  .section-Differentiators .slider-wrapper .swiper-slide-button {
    display: none;
  }

  .section-Differentiators .slider-wrapper {
    margin: 0 35px 35px;
  }

  .section-targets {
    margin: 25px 0;
  }

  .about-us,
  .targets {
    margin: 25px 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out forwards;
  }

  .targets {
    display: flex;
    flex-direction: column;
  }

  .about-us .main-img img,
  .targets .main-img img {
    max-width: 100%;
  }

  .about-content,
  .targets-content {
    padding: 4% 0;
  }

  .about-content h1,
  .targets-content h1 {
    font-size: 24px;
  }

  .about-content p,
  .targets-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-content hr,
  .about-content hr {
    width: 50%;
    margin-bottom: 10px;
  }

  .reverse-colum {
    display: flex;
    flex-direction: column-reverse;
  }

  .targets .main-img img {
    height: 300px;
  }

  .technology-container {
    padding: .7rem;
  }

  .section-proven_results .box-result {
    padding: 5px 30px;
    color: var(--text-white);
    margin: 10px 0;
  }

  .video-container {
    height: 250px;
    margin-top: 15px;
  }

  .banner_product_list .banner_product_text {
    padding: 50px 40px;
  }

  .banner_product_text h3 {
    font-size: 2.5rem;
  }

  .banner_product_text p {
    font-size: 1rem;
  }

  .banner_product_list {
    height: 50vh;
  }

  .container_product_list .row .details-box {
    border-left: none;
    border-top: 3px solid var(--color-red);
    padding: 10px 5px;
  }

  .container_product_list .row .box .text {
    font-size: 1rem;
  }

  .container_product_list .row {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .banner_product_list .banner_product_text {
    padding: 50px 10px;
  }

  .about-us,
  .targets {
    margin: 15px 0;
    grid-template-columns: 1fr;
    gap: .5rem;
    padding: 0 10px;
    animation: fadeInUp 1s ease-out forwards;
  }

}

/* page about us  */

.about-us-page {
  margin: 40px 0;
}

.about-us-page h1 {
  text-align: center;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.about-us-page .about-info {
  max-width: 600px;
  margin: 0 auto;
}

.about-us-page .about-info h2 {
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.about-us-page .about-info p {
  font-weight: 300;
  color: var(--text-dark) !important;
  font-size: 17px;
  text-align: left;
  text-align: justify;
}

.about-us-page .about-info {
  padding-right: 60px;
}

.about-us-page .btn-black {
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 1);
  transition: 0.5s;
  border-radius: 1;
}

.about-us-page .btn-black:hover {
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
}

@media (max-width:576px) {
  .about-us-page .about-info {
    padding-right: 0;
  }

  .about-us-page .about-info h2 {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .about-us-page .about-info p {
    font-size: 16px;
  }

  .about-us-page .about-info {
    max-width: 100%;
  }
}

/*
---------------------------------------------
Contact Page
---------------------------------------------
*/
.contact-page {
  margin: 50px 0;
}

/* .contact-page .left-text { */
  /* background-color: var(--bg-white); */
  /* box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1); */
  /* border-radius: 25px; */
  /* padding: 60px; */
/* } */

/* .contact-page .left-text .section-heading {
  margin-bottom: 50px;
} */
.contact-page .left-text .section-heading h2 {
  font-size: 5.5rem ;
  font-weight: 700 ;
  color: var(--text-dark) ;
  margin-bottom: 20px ;
  line-height: 1.2 ;
  text-align: center ;
  text-transform: uppercase ;
  display: contents ;
}
.contact-page .left-text p {
  margin-bottom: 50px;
}

.contact-page .left-text ul li {
  display: block;
  font-size: 16px;
  color: var(--text-secondary);
  font-size: 300;
  margin-bottom: 30px;
}

.contact-page .left-text ul li:last-child {
  margin-bottom: 0px;
}

.contact-page .left-text ul li span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-page .left-text ul li a {

  color: var(--text-secondary);
}

.contact-page .right-content {
  margin-left: 50px;
}

.contact-page .right-content #map {
  margin-bottom: 60px;
}

.contact-page .right-content form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  padding: 0px 20px;
  background-color: var(--bg-white);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 30px;
  border: 1px solid #cccccc72;
}

.contact-page .right-content form textarea {
  width: 100%;
  height: 130px;
  border-radius: 25px;
  padding: 20px 20px;
  background-color: var(--bg-white);
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 30px;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #cccccc72;
}

.contact-page .right-content form button {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background-color: var(--bg-red);
  color: var(--text-white);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0px 25px;
  border: none;
  border-radius: 10px;
  transition: all .5s;
}

.contact-page .right-content form button:hover {
  background-color: var(--color-red);
}

@media screen and (max-width: 1024px) {
  .contact-page .right-content {
    margin-left: 0px;
    margin-top: 45px;
  }

  .contact-page .left-text .section-heading h2 { 
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-page .left-text .section-heading h2 { 
    font-size: 3rem;
  }
}

/* page category  */

#main {
  width: 100%;
  min-height: 100vh;
  background-color: black;
}

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

.d-flex-c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section {
  width: 100%;
  height: 100vh;
}

.section1 {
  /* background-image: url(./assets/Assets2/cell1.webp); */
  background-size: cover;
  background-position: center;
}

.section1 h1 {
  font-size: 11vw;
  color: #fff;
}

.section1 img {
  position: absolute;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

#leaf1 {
  left: 20%;
  top: 20%;
}

#fanta {
  width: 35vw;
}

#orange {
  top: 65%;
  left: 48%;
  width: 15vw;
}

#leaf2 {
  top: 55%;
  left: 75%;
  width: 15vw;
}

#orange2 {
  top: 10%;
  left: 35%;
  width: 15vw;
}

/* -------section-2 */
.section2 .lft {
  width: 50%;
  height: 100%;
  /* background-color: red; */
}

.section2 .rght {
  width: 50%;
  height: 100%;
  align-items: start;
  gap: 5vh;
  padding: 0vw 10vw 0vw 0vw;
  /* background-color: orange; */
}

.magicpattern {
  width: 50%;
  height: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  background: linear-gradient(99deg,
    rgb(126, 1, 1) 0%,
    rgb(2, 31, 123) 95%);
  border-radius: 123% 54% 88% 44%;
  /* background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath fill=%22currentColor%22 d=%22M835.5 673.5Q700 847 508 833T202 659.5Q88 500 217.5 368T499 237.5q152 1.5 312 132t24.5 304Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23a)%22%3E%3Cpath fill=%22%23f77f45%22 d=%22M835.5 673.5Q700 847 508 833T202 659.5Q88 500 217.5 368T499 237.5q152 1.5 312 132t24.5 304Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); */
}

.mainHeading {
  font-size: 3vw;
  color: rgb(240, 64, 64);
  font-weight: 600;
}

.mainP {
  font-size: 1.2vw;
  color: #919191;
  font-weight: 400;
  text-align: justify;
}



@media screen and (max-width: 1200px) {
  .section1 h1 {
    font-size: 11vw;
    color: #fff;
  }
}

@media (max-width: 799px) {
  .section1 h1 {
    font-size: 10vw;
    color: #fff;
  }

  .cntr-nav {
    display: none;
  }

  .ri-menu-line {
    font-size: 7vw;
  }

  #fanta {
    width: 85vw;
  }

  #orange2 {
    top: 15%;
    left: 10%;
    width: 35vw;
  }

  #leaf1 {
    top: 14%;
    left: 67%;
    width: 19vw;
  }

  #orange {
    top: 58%;
    left: 47%;
    width: 38vw;
  }

  #leaf2 {
    top: 76%;
    left: 12%;
    width: 20vw;
  }

  .section2 {
    flex-direction: column;
    height: 200vh;
  }

  .magicpattern {
    width: 80%;
    height: 40%;
  }

  .section2 .lft {
    width: 100%;
    height: 40%;
  }

  .section2 .rght {
    width: 100%;
    padding: 5vw;
    height: 60%;
  }

  .mainHeading {
    font-size: 8vw;
  }

  .mainP {
    font-size: 5vw;
  }


}

@media screen and (max-width: 600px) {
  .section1 h1 {
    font-size: 11vw;
    color: #fff;
  }
}

.container-rotating {
  width: 100%;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* background-color: #000; */
}

.container-rotating .text {
  color: dark;
  font-size: 2em;
  margin-right: 20px;
  margin-left: 70px;
  flex: 1;
  text-align: left;
}

.container-rotating .text .highlight {
  background: linear-gradient(45deg, #ff0000, #ff00ff, #0000ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.image-container .rotating-image {
  width: 500px;
  height: auto;
  animation: rotate 7s linear infinite;
  transform-style: preserve-3d;
}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@media screen and (max-width: 1200px) {
  .container-rotating .text {
    font-size: 1.5rem;
    text-align: left;
    margin-right: 0;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .image-container .rotating-image {
    width: 200px;
  }

  .container-rotating .text {
    font-size: 1.5em;
  }

  .container-rotating {
    padding: 20px 10px;
    justify-content: center;
  }

  .container-rotating .text {
    font-size: 4em;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .image-container .rotating-image {
    width: 350px;
  }

  .container-rotating .text {
    font-size: 2.5em;
  }
}

/* how it works  */
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

:root {
  --pr-white: #fff;
  --second-color: #0a0a0a;
  --color-1-1: #BE2518;
  --color-1-2: #ff6b4f;
  --cubicbz: cubic-bezier(.9, 0, .1, 1);
  --fz-big: 60px;
  --pd: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.wrapp-scrolldown {
  background-color: var(--pr-white);
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 20px;
  z-index: 1;
}


.content {
  width: 100%;
  height: auto;
}

/* GSAP - scrollTrigger-pinned image Animation */
/* .spacer {
  width: 100%;
  height: 50vh;
  background-color: #ddd;
} */

.work {
  display: flex;
  padding: 30px 60px;
}

.work__left {
  position: relative;
  width: 55%;
  z-index: 2;
  /* outline: 1px solid red; */
}

.work__text {
  margin: auto;
  width: 80%;
}

.work__info {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* outline: 1px solid green; */
}

.work__info p {
  font-size: 20px;
  text-align: justify;
  color: var(--text-dark);
  line-height: 1.5;
}

.work__num {
  display: block;
  line-height: .9;
  text-align: left;
  font-size: 18px;
  transform: skewY(10deg);
  color: var(--color-1-1);
}

.work__left-h1 .title {
  text-align: left;
  font-size: 35px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: bold;
  margin-bottom: 15px;
}

.work__left-h1 .title .stroke {
  display: block;
  /* color: transparent; */
  -webkit-text-stroke: 1px solid var(--color-1-1);
}

.work__link {
  display: block;
  width: 365px;
  margin-top: 50px;
  /* margin-left: auto; */
  padding: 18px 0;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
  letter-spacing: 4px;
  border: 2px solid var(--color-1-1);
  border-radius: 30px;
  transition: .4s;
}

.work__link:hover {
  background-color: var(--color-1-1);
  color: var(--pr-white);
  letter-spacing: 6px;
}

.work__right {
  width: 45%;
  height: auto;
  /* outline: 1px solid red; */
}

.work__right-b1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  width: 100%;
  height: 100vh;
  top: 0;
  /* height: 80vh;
  top: 10vh;
  background: #ff6b4f; */
}

.work__photo {
  width: 40vw;
  height: 30vw;
  position: relative;
}

.work__photo-item {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 80px;
  overflow: hidden;
}

.work__photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}



/* section how-it-works */
.how-it-works {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 60px;
  margin: 120px auto;
}

.how-it-works .text-section {
  flex: 1 1 50%;
  padding: 20px;
}

.how-it-works .text-section .section-title {
  color: red;
  font-size: 20px;
  margin-bottom: 10px;
}

.how-it-works .text-section .subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.how-it-works .text-section .steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.how-it-works .text-section .steps .step {
  border-bottom: 1px solid var(--text-secondary);
  padding: 10px 0;
  cursor: pointer;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.steps .step .step-number {
  color: var(--bg-red);
  font-weight: bold;
  margin-right: 10px;
}

.steps .step .step-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.steps .step .step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  margin-top: 10px;
  color: var(--secondary);
}

.steps .step.active .step-content {
  max-height: 200px;
  opacity: 1;
}

.how-it-works .image-section {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* background-color: var(--bg-dark); */
  border-radius: 10px 0 0 10px;
  /* border: 1px solid var(--text-border); */
}

.how-it-works .image-section .image-card {
  width: 70%;
  height: auto;
  display: none;
  padding: 60px 0;
}

.small-screen {
  display: none;
}

.how-it-works .image-section .image-card.active {
  display: block;
}

@media screen and (max-width: 1400px) {
  .work {
    padding: 10px;
  }
}


@media screen and (max-width: 1200px) {
  .wrapp-scrolldown {
    display: none;
  }

  .small-screen {
    display: block;
  }

  .how-it-works {
    padding: 20px 10px 20px 10px;
    margin: 50px auto;
  }

  .how-it-works .image-section {
    border-radius: 10px;
  }
}

@media screen and (max-width: 768px) {
  .how-it-works {
    flex-direction: column;
    margin: 15px auto;
    padding: 10px;
  }

  .how-it-works .text-section,
  .how-it-works .image-section {
    flex: 1 1 100%;
    padding: 10px;
  }

  .step-title {
    font-size: 20px;
  }

  .how-it-works .image-section .image-card {
    width: 100%;
    height: 280px;
    display: none;
    padding: 0;
    border-radius: 10px;
  }

  .steps .step .step-title {
    font-size: 18px;
  }
}

/* end page category  */




/* ingredients list */
.section_product_list {
  padding: 2rem 0;
  background-color: var(--body-background);
}

.container_product_list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.container_product_list .row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.container_product_list .row .col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

.container_product_list .row .col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.container_product_list .row .box {
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container_product_list .row .box .product-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.container_product_list .row .box .product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}



.container_product_list .row .box h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.container_product_list .row .box h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.container_product_list .row .box .data {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border-left: 4px solid var(--bg-red);
}

.container_product_list .row .box .data h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.container_product_list .row .box .data p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.container_product_list .row .box .data p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.container_product_list .row .box .data .fw-semibold {
  color: var(--text-primary);
  font-weight: 600;
}

.container_product_list .row .box .data .text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.container_product_list .row .box .view-product {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--text-white);
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.container_product_list .row .box .view-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 5, 118, 0.3);
  color: var(--text-white);
}

.details-box {
  background: var(--bg-white);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 2rem;
}

.details-box>p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: var(--small-font-size);
}

.details-box>p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.details-box .card {
  margin-top: 1.5rem;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.details-box .card:hover {
  transform: translateY(-2px);
}

.details-box .card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.details-box .card .card-body {
  padding: 1.5rem;
}

.details-box .card .card-body span {
  color: var(--bg-red);
  font-size: var(--small-font-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.details-box .card .card-body h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.details-box .card .card-body .card-text {
  color: var(--text-secondary);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

.details-box .card .card-body:last-child {
  padding-top: 0;
  border-top: 1px solid var(--color-hover);
}

.details-box .card .card-body .card-link {
  color: var(--bg-red);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--small-font-size);
  transition: color 0.3s ease;
}

.details-box .card .card-body .card-link:hover {
  color: var(--text-primary);
}

.details-box .card .card-body small {
  color: var(--text-gray);
  font-size: var(--smaller-font-size);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .container_product_list .row .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .container_product_list .row .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .details-box {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .container_product_list .row .box {
    padding: 1.5rem;
  }

  .container_product_list .row .box h2 {
    font-size: 1.5rem;
  }

  .details-box {
    padding: 1.5rem;
  }

  .container_product_list {
    padding: 0 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .container_product_list .row .box {
    padding: .2rem;
  }

  .container_product_list .row .box h2 {
    font-size: 1.3rem;
  }

  .container_product_list .row .box .data {
    padding: .5rem;
  }

  .details-box {
    padding: 1rem;
  }
}

/* Technology Behind DATA PAGE */

/* nav tabs section - Enhanced with root variables */

.tech-tabs-main-container {
  margin: 50px 0;
  overflow: hidden;
  position: relative;
}


/* Enhanced Tab Navigation */
.tech-tabs-nav-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--body-background) 100%);
  padding: 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-hover);
}


.tech-tabs-navigation-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Enhanced Navigation Arrows */
.tech-tabs-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--btn-bg);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px var(--shadow);
}

.tech-tabs-nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px var(--shadow);
}

.tech-tabs-nav-arrow.tech-tabs-nav-left {
  left: 20px;
}

.tech-tabs-nav-arrow.tech-tabs-nav-right {
  right: 20px;
}

/* Enhanced Tab Menu */
.tech-tabs-menu-list {
  display: flex;
  list-style: none;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 70px;
  margin: 0;
  position: relative;
}

.tech-tabs-menu-list::-webkit-scrollbar {
  display: none;
}

/* Enhanced Tab Buttons */
.tech-tabs-menu-item {
  white-space: nowrap;
  padding: 10px 15px;
  margin: 0 5px;
  /* background: transparent; */
  border:16px solid var(--btn-bg) !important;
  border-radius: 35px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  min-width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



.tech-tabs-menu-item:hover {
  border-color: var(--text-primary);
  box-shadow: 0 8px 25px var(--shadow);
  background: var(--body-background);
}



.tech-tabs-menu-item.tech-tabs-active {
  background: var(--btn-bg);
  color: var(--text-white);
  border-color: transparent;
  font-weight: 700;
  transform: translateY(0px) !important;
  /* box-shadow: 0 15px 40px var(--shadow); */
}


/* Enhanced Content Container */
.tech-tabs-content-wrapper {
  padding: 3rem;
  position: relative;
  min-height: 500px;
}

.tech-tabs-content-panel {
  display: none;
  animation: tech-tabs-fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tech-tabs-content-panel.tech-tabs-active {
  display: block;
}

@keyframes tech-tabs-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* challenges-title */
.challenges-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Enhanced Grid Layout */
.tech-tabs-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  
}

/* Enhanced Info Cards */
.tech-tabs-info-card {
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--color-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Enhanced Info Cards */
.tech-tabs-info-card {
  padding: 3rem 1rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* .tech-tabs-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--btn-bg);
} */
.image-tech-tabs-info-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-tech-tabs-info-card img {
  border-radius: 10px;
  height: auto;
  width: 80%;
  object-fit: cover;
}

.tech-tabs-info-title {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.tech-tabs-info-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.tech-tabs-info-description p {
  margin-bottom: .5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.tech-tabs-info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-tabs-info-list li {
  margin-bottom: 2rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.tech-tabs-info-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--text-rating);
}

/* Enhanced Overview Image Section */
.tech-tabs-overview-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--body-background) 0%, var(--bg-white) 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--color-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.tech-tabs-overview-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow);
}

.tech-tabs-overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tech-tabs-overview-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced Challenges Section */
.tech-tabs-challenges-section {
  padding: 2rem 0;
}

.tech-tabs-challenges-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  position: relative;
}

.tech-tabs-challenges-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.tech-tabs-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.tech-tabs-challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--body-background) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--color-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tech-tabs-challenge-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--btn-bg);
}

.tech-tabs-challenge-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px var(--shadow);
  background: var(--bg-white);
  border-color: var(--text-primary);
}

.tech-tabs-challenge-icon {
  min-width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-red) 0%, var(--color-red) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(214, 41, 87, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tech-tabs-challenge-item:hover .tech-tabs-challenge-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(214, 41, 87, 0.4);
}

.tech-tabs-challenge-content h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tech-tabs-challenge-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Enhanced Cell Health Section */
.tech-tabs-cell-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tech-tabs-cell-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--body-background) 100%);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-hover);
}

.tech-tabs-cell-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--btn-bg);
}



.tech-tabs-cell-text h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.tech-tabs-cell-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.tech-tabs-cell-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.tech-tabs-cell-image {
  text-align: center;
  position: relative;
}

.tech-tabs-cell-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow);
  transition: all 0.4s ease;
}

.tech-tabs-cell-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px var(--shadow);
}

/* Enhanced Results Grid */
.tech-tabs-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
}

.tech-tabs-result-card {
  padding: 2rem 1rem;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}


.tech-tabs-result-icon {
  width: 50px;
  height: 50px;
  background: var(--btn-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--text-white);
  font-size: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.tech-tabs-result-icon i {
  font-size: 20px;
}
.tech-tabs-result-icon img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.tech-tabs-result-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tech-tabs-result-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Enhanced Section Header */
.tech-tabs-section-header {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--card-list-bg), var(--body-background));
  border-radius: 20px;
  border: 2px solid var(--color-hover);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-tabs-section-header::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--btn-bg);
  border-radius: 0 0 8px 8px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .tech-tabs-main-container {
    margin: 1rem 0;
    border-radius: 15px;
  }

  .tech-tabs-nav-wrapper {
    padding: 1.5rem;
  }

  .tech-tabs-menu-list {
    padding: 0 50px;
    gap: 10px;
  }

  .tech-tabs-menu-item {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .tech-tabs-content-wrapper {
    padding: 2rem 1rem;
  }

  .tech-tabs-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  
  
  }

  .tech-tabs-info-title {
    font-size: 1.5rem;
  }

 

  .tech-tabs-cell-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .tech-tabs-info-card {
    padding: 2rem .5rem;
  }

  .tech-tabs-section-header {
    font-size: 2rem;
    padding: 1.5rem;
  }

  .tech-tabs-results-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-tabs-challenges-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-tabs-challenge-item {
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .tech-tabs-challenge-icon {
    min-width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .tech-tabs-challenges-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .tech-tabs-challenge-content h3 {
    font-size: 1.2rem;
  }
  .image-tech-tabs-info-card img {
    width: 100%;
  }
  .tech-tabs-cell-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tech-tabs-challenge-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .tech-tabs-challenge-icon {
    align-self: center;
  }
  .tech-tabs-cell-text p {
    margin-bottom: .5rem;
  }
  .tech-tabs-cell-text h2 {
    font-size: 1.2rem;
  }
}

/* Focus States for Better Accessibility */
.tech-tabs-menu-item:focus,
.tech-tabs-nav-arrow:focus {
  outline: 3px solid var(--verified);
  outline-offset: 3px;
}

/* Enhanced hover effects for better UX */
.tech-tabs-menu-item:hover,
.tech-tabs-info-card:hover,
.tech-tabs-result-card:hover,
.tech-tabs-challenge-item:hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* product list enhance  */
.section-product-list {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--body-background) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.section-product-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--btn-bg);
  z-index: 1;
}
.section-product-list h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  /* margin-bottom: 1rem; */
  position: relative;
  padding-top: 1.5rem;
  background: linear-gradient(135deg, var(--card-list-bg), var(--body-background));
}
/* Container */
.section-product-list .container-product-list {
  padding: 2rem 2rem;
  position: relative;
  z-index: 2;
}

/* Grid Layout - Maximum 3 products per row */
.section-product-list .row-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  gap: 2.5rem;
  align-items: stretch;
}

/* Ensure maximum 3 columns on large screens */
@media (min-width: 1200px) {
  .section-product-list .row-product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 570px) {
  .section-product-list h1 {
    font-size: 22px;
    padding: 1rem;
    margin: .5rem;
  }
}

/* Column */
.section-product-list .col-product-list {
  display: flex;
  width: 100%;
}

/* Product Card */
.section-product-list .product-card {
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid var(--color-hover);
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateY(0);
}


/* Product Image */
.section-product-list .product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--body-background) 0%, var(--bg-white) 100%);
}

.section-product-list .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}


/* Product Badge */
.section-product-list .product-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--btn-bg);
  color: var(--text-white);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.section-product-list .product-card-badge-sale {
  background: var(--bg-red);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

.section-product-list .product-card-badge-featured {
  background: var(--verified);
}

/* Product Content */
.section-product-list .product-card-content {
  padding: 2.5rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: .75rem;
}

/* Product Header */
.section-product-list .product-card-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

/* Product Title */
.section-product-list .product-card-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  width: 100%;
  transition: color 0.3s ease;
}



/* Product Description */
.section-product-list .product-card-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.section-product-list .product-card:hover .product-card-description {
  opacity: 1;
}

/* Product Actions - Always in same row */
.section-product-list .product-card-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  flex-wrap: nowrap;
}

/* Product Links */
.section-product-list .product-card-actions .product-card-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
}

.section-product-list .product-card-actions .product-card-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.section-product-list .product-card-actions .product-card-link:hover i {
  transform: scale(1.2) rotate(5deg);
}

.section-product-list .product-card-actions .product-card-link span {
  transition: transform 0.3s ease;
}

.section-product-list .product-card-actions .product-card-link:hover span {
  transform: translateX(2px);
}

.section-product-list .product-card-actions .product-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.section-product-list .product-card-actions .product-card-link:hover::before {
  left: 100%;
}

/* Primary Link - Buy Now */
.section-product-list .product-card-actions .product-card-link-primary {
  background: var(--btn-bg);
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(184, 5, 118, 0.3);
  border: none;
  border-radius: 12px;
  font-size: .8rem;
}

.section-product-list .product-card-actions .product-card-link-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(184, 5, 118, 0.4);
  color: var(--text-white);
}

.section-product-list .product-card-actions .product-card-link-primary i {
  color: var(--text-white);
}

/* Secondary Link - Product Details */
.section-product-list .product-card-actions .product-card-link-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  border-radius: 12px;
  font-size: .8rem;
  padding: .5rem 1rem;
}

.section-product-list .product-card-actions .product-card-link-secondary:hover {
  background: var(--text-primary);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow);
}

.section-product-list .product-card-actions .product-card-link-secondary i {
  color: inherit;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .section-product-list .row-product-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .section-product-list {
    padding: 3rem 0;
  }
  
  .section-product-list .container-product-list {
    padding: 0 1.5rem;
  }
  
  .section-product-list .row-product-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    max-width: 700px;
  }
  
  .section-product-list .product-card-content {
    padding: 2rem 1.5rem 1.5rem;
    gap: 1.2rem;
  }
  
  .section-product-list .product-card-title {
    font-size: 1.3rem;
  }
  
  .section-product-list .product-card-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .section-product-list .container-product-list {
    padding: 0 1rem;
  }
  
  .section-product-list .row-product-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
  }
  
  .section-product-list .product-card-image {
    height: 220px;
  }
  
  .section-product-list .product-card-content {
    padding: 1.8rem 1.2rem 1.2rem;
    gap: 1rem;
  }
  
  .section-product-list .product-card-title {
    font-size: 1.2rem;
  }
  
  .section-product-list .product-card-description {
    font-size: 0.95rem;
  }
  
  .section-product-list .product-card-actions {
    gap: 0.8rem;
    flex-wrap: nowrap;
  }
  
  .section-product-list .product-card-actions .product-card-link {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }
  
  .section-product-list .product-card-actions .product-card-link i {
    font-size: 0.9rem;
  }
  
  .section-product-list .product-card-actions .product-card-link span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-product-list {
    padding: 2rem 0;
  }
  
  .section-product-list .container-product-list {
    padding: 0 0.5rem;
  }
  
  .section-product-list .row-product-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 350px;
  }
  
  .section-product-list .product-card-content {
    padding: 1.5rem 1rem 1rem;
    gap: 0.8rem;
  }
  
  .section-product-list .product-card-image {
    height: 200px;
  }
  
  .section-product-list .product-card-title {
    font-size: 1.1rem;
  }
  
  .section-product-list .product-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .section-product-list .product-card-actions {
    gap: 0.6rem;
    flex-wrap: nowrap;
  }
  
  .section-product-list .product-card-actions .product-card-link {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
    gap: 0.3rem;
    min-height: 42px;
  }
  
  .section-product-list .product-card-actions .product-card-link i {
    font-size: 0.85rem;
  }
  
  .section-product-list .product-card-actions .product-card-link span {
    font-size: 0.75rem;
  }
  
  .section-product-list .product-card-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
    top: 10px;
    right: 10px;
  }
}

/* Animation on Scroll */
.section-product-list .product-card {
  opacity: 0;
  transform: translateY(40px);
  animation: productFadeInUp 0.8s ease forwards;
}

.section-product-list .col-product-list:nth-child(1) .product-card { animation-delay: 0.1s; }
.section-product-list .col-product-list:nth-child(2) .product-card { animation-delay: 0.2s; }
.section-product-list .col-product-list:nth-child(3) .product-card { animation-delay: 0.3s; }
.section-product-list .col-product-list:nth-child(4) .product-card { animation-delay: 0.4s; }
.section-product-list .col-product-list:nth-child(5) .product-card { animation-delay: 0.5s; }
.section-product-list .col-product-list:nth-child(6) .product-card { animation-delay: 0.6s; }

@keyframes productFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* research section in product details */

.research-section-product-details {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1400px; /* Changed from fixed width to max-width */
  width: 100%; /* Added for responsiveness */
  margin: 0 auto;
}

.research-section-product-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.container-research-section {
  max-width: min(var(--container), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.research-header-product-details {
  text-align: center;
  margin-bottom: 2rem;
}

.research-title-product-details {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 600px; /* Changed from fixed width to max-width */
  width: 100%; /* Added for responsiveness */
  margin: 0 auto;
}

.research-subtitle-product-details {
  font-size: .9rem;
  color: #111;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

.research-grid-product-details {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.research-card-product-details {
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-title-product-details {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content-product-details {
  font-size: var(--normal-font-size);
  color: #222;
  line-height: 1.7;
}

.highlight-number-product-details {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--btn-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-button-product-details {
  background: var(--btn-bg);
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(216, 41, 87, 0.3);
}

.cta-button-product-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(216, 41, 87, 0.4);
}

.cta-container-product-details {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .research-section-product-details {
      padding: 2rem 1rem; /* Reduced padding for tablets */
      width: 100%; /* Ensure full width on tablets */
  }

  .research-title-product-details {
      width: 100%; /* Full width on tablets */
      font-size: 1.2rem; /* Slightly smaller font */
  }

  .research-grid-product-details {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .research-card-product-details {
      padding: 2rem 1.5rem;
  }

  .highlight-number-product-details {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .research-section-product-details {
      padding: 1.5rem 0.5rem; /* Further reduced padding for mobile */
      width: 100%;
  }

  .research-title-product-details {
      font-size: 1.1rem; /* Smaller font for mobile */
      width: 100%;
      padding: 0 1rem; /* Add some padding for better readability */
      line-height: 1.3;
  }

  .research-header-product-details {
      margin-bottom: 2rem; /* Reduced margin */
  }

  .research-card-product-details {
      padding: 1.5rem 1rem;
  }

  .card-title-product-details {
      font-size: 1.1rem; /* Smaller title font */
  }

  .card-content-product-details {
      font-size: 0.9rem; /* Smaller content font */
  }

  .cta-button-product-details {
      padding: 0.875rem 2rem;
      font-size: 1rem;
      width: 100%; /* Full width button on mobile */
      max-width: 300px; /* But not too wide */
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.research-card-product-details {
  animation: fadeInUp 0.6s ease forwards;
}

.research-card-product-details:nth-child(1) { animation-delay: 0.1s; }
.research-card-product-details:nth-child(2) { animation-delay: 0.2s; }
.research-card-product-details:nth-child(3) { animation-delay: 0.3s; }


/* Blog section in home page */

/* section Blogs  */
.blog-section {
  padding: 2rem 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-container-center {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.blog-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow);
}

.blog-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.blog-slide {
  min-width: 100%;
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  overflow: hidden;
}

.blog-slide-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  gap: 3rem;
}

.blog-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-image:hover {
  transform: scale(1.05);
}

.blog-content {
  flex: 1;
  color: var(--text-white);
}

.blog-content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--bg-red);
}

.blog-content-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: var(--text-dark);
}

.blog-read-more {
  display: inline-block;
  background: var(--bg-white);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-read-more:hover {
  background: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.blog-navigation {
  position: absolute;
  bottom: 10px;
  left: 55%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.blog-nav-btn {
  background: var(--bg-red);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.2rem;
}

.blog-nav-btn:hover {
  background: var(--color-hover);
  transform: scale(1.1);
}

.blog-view-all {
  display: flex;
  justify-content: center;
  align-self: center;
  background: var(--bg-red);
  color: var(--text-white);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: fit-content;
  margin: 20px auto;
}

.blog-view-all:hover {
  background: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-title {
      font-size: 2rem;
  }

  .blog-slide {
      height: auto;
      min-height: 400px;
  }

  .blog-slide-content {
      flex-direction: column;
      padding: 1.5rem;
      gap: 1.5rem;
  }

  .blog-image-container {
      width: 100%;
      max-width: 400px;
  }

  .blog-content-title {
      font-size: 1.5rem;
  }

  .blog-content-description {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-container-center {
      padding: 0 0.5rem;
  }

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

  .blog-slide-content {
      padding: 1rem;
  }

  .blog-content-title {
      font-size: 1.3rem;
  }


}
/* section Blogs  */
.blog-section {
  padding: 2rem 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-container-center {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.blog-slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow);
}

.blog-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.blog-slide {
  min-width: 100%;
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  overflow: hidden;
}

.blog-slide-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  gap: 3rem;
}

.blog-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-image:hover {
  transform: scale(1.05);
}

.blog-content {
  flex: 1;
  color: var(--text-white);
}

.blog-content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--bg-red);
}

.blog-content-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: var(--text-dark);
}

.blog-read-more {
  display: inline-block;
  background: var(--bg-white);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-read-more:hover {
  background: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.blog-navigation {
  position: absolute;
  bottom: 10px;
  left: 55%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}


.blog-view-all {
  display: flex;
  justify-content: center;
  align-self: center;
  background: var(--bg-red);
  color: var(--text-white);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: fit-content;
  margin: 20px auto;
}

.blog-view-all:hover {
  background: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-title {
      font-size: 2rem;
  }

  .blog-slide {
      height: auto;
      min-height: 400px;
  }

  .blog-slide-content {
      flex-direction: column;
      padding: 1.5rem;
      gap: 1.5rem;
  }

  .blog-image-container {
      width: 100%;
      max-width: 400px;
  }

  .blog-content-title {
      font-size: 1.5rem;
  }

  .blog-content-description {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-container-center {
      padding: 0 0.5rem;
  }

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

  .blog-slide-content {
      padding: 1rem;
  }

  .blog-content-title {
      font-size: 1.3rem;
  }

}
/* Blog section in home page */

/* page Blogs and article */


/* page articles */
.blog-hero {
  background-image: url("../../assets/image/about.jpeg");
  background-size: cover;
  background-position: center;
  height: 55vh;
  color: var(--text-white);
}
.article-hero {
  background-image: url("../../assets/image/products.webp");
  background-size: cover;
  background-position: center;
  height: 55vh;
  color: var(--text-white);
}

.blog-hero p , .article-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

/* Articles page specific styles */
.articles-hero-actives {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
      var(--footer-bg) 0%,
      var(--secondary) 50%,
      var(--accent-teal) 100%
      );
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  }

.articles-hero-actives::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(6,144,162,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(6,144,162,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="400" r="150" fill="url(%23grad)"/><circle cx="400" cy="800" r="120" fill="url(%23grad)"/></svg>')
      center/cover;
  animation: float 8s ease-in-out infinite;
  }

@keyframes float {
  0%, 100% {
      transform: translateY(0px) rotate(0deg) scale(1);
      opacity: 0.8;
  }
  25% {
      transform: translateY(-15px) rotate(2deg) scale(1.02);
      opacity: 1;
  }
  50% {
      transform: translateY(-25px) rotate(5deg) scale(1.05);
      opacity: 0.9;
  }
  75% {
      transform: translateY(-15px) rotate(3deg) scale(1.02);
      opacity: 1;
  }
}

.hero-content-actives {
  text-align: center;
  z-index: 2;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

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

.hero-content-actives h1 {
font-size: 3.5rem;
font-weight: 900;
color: var(--text-white);
margin-bottom: 1rem;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  to {
      text-shadow: 0 4px 25px rgba(6, 144, 162, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
}
        }

.hero-content-actives p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;  
  animation: fadeInUp 1s ease-out 0.3s both; 
 }

.articles-container-actives {
    padding: 4rem 0;
    background: var(--bg-white);
}

.articles-grid-actives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem; 
}

.article-card-actives {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--bg-card);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    position: relative;
    animation: cardFadeIn 0.6s ease-out;  
}

        .article-card-actives:nth-child(1) { animation-delay: 0.1s; }
        .article-card-actives:nth-child(2) { animation-delay: 0.2s; }
        .article-card-actives:nth-child(3) { animation-delay: 0.3s; }
        .article-card-actives:nth-child(4) { animation-delay: 0.4s; }
        .article-card-actives:nth-child(5) { animation-delay: 0.5s; }
        .article-card-actives:nth-child(6) { animation-delay: 0.6s; }

        @keyframes cardFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .article-card-actives::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(6, 144, 162, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .article-card-actives:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 25px 50px rgba(6, 144, 162, 0.25), 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: transparent;
            background: rgba(255, 255, 255, 0.12);
        }

        .article-card-actives:hover::before {
            opacity: 1;
        }

        .article-image-actives {
            height: 250px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .article-image-actives img {
            width: 100%;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Fallback styles for articles without images */
        .article-image-actives:not(:has(img))::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .article-image-actives:not(:has(img))::after {
            content: "\f15c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .article-card-actives:hover .article-image-actives:not(:has(img))::before {
            background: rgba(6, 144, 162, 0.3);
            transform: translate(-50%, -50%) scale(1.1);
        }

          .article-card-actives:hover .article-image-actives:not(:has(img))::after {
            color: var(--accent-teal);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .article-content-actives {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .article-category-actives {
            display: inline-block;
            background: var(--bg-red);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--bg-red);
        }

        .article-card-actives:hover .article-category-actives {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--bg-red);
        }

        .article-title-actives {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        .article-excerpt-actives {
            color: var(--text-dark);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            transition: color 0.3s ease;
        }

        .article-meta-actives {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--bg-card);
            transition: border-color 0.3s ease;
        }

        .article-card-actives:hover .article-meta-actives {
            border-color: var(--bg-card);
        }

        .article-date-actives {
            color: var(--text-dark);
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .article-card-actives:hover .article-date-actives {
            color: var(--text-dark);
        }

        .read-more-actives {
            color: var(--bg-red);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            background: var(--bg-card);
        }

        .read-more-actives::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-red);
            border-radius: 10px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
            z-index: -1;
        }

          .read-more-actives:hover {
            color: white;
            transform: translateX(5px);
        }

        .read-more-actives:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .section-title-actives {
            text-align: center;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .section-title-actives h2 {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-white), var(--bg-red));
            -webkit-background-clip: text;
            /* -webkit-text-fill-color: transparent; */
            background-clip: text;
        }

        .section-title-actives p,
        .section-product-list-description {
            color: var(--text-dark);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content-actives h1 {
                font-size: 2.5rem;
            }

            .hero-content-actives p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .articles-grid-actives {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .section-title-actives h2 {
                font-size:22px;
            }
        }

        @media (max-width: 480px) {
            .articles-hero-actives {
                height: 40vh;
            }

            .hero-content-actives h1 {
                font-size: 2rem;
            }

            .articles-container-actives {
                padding: 2rem 0;
            }

            .articles-grid-actives {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .article-content-actives {
              padding: 1rem;
            }
        }

/* ==============================
  SINGLE ARTICLE PAGE STYLES
   ============================== */

/* Article Main Container */
.article-main-actives {
    
    padding: 2rem 0;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Article Header */
.article-header-actives {
    margin-bottom: 2rem;
    text-align: center;
    animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-breadcrumb-actives {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.article-breadcrumb-actives .breadcrumb-link-actives {
    color: var(--bg-red);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.article-breadcrumb-actives .breadcrumb-link-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    border-radius: 15px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* .article-breadcrumb-actives .breadcrumb-link-actives:hover {
    color: var(--text-white);
    transform: translateX(5px);
} */

.article-breadcrumb-actives .breadcrumb-link-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.article-breadcrumb-actives .breadcrumb-separator-actives {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.article-breadcrumb-actives .breadcrumb-current-actives {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.article-meta-info-actives {
    margin-bottom: 1rem;
}

.article-category-badge-actives {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-red), #0580a0);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--bg-red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px var(--bg-red);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px var(--bg-red);
    }
}

  .article-meta-details-actives {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* .article-meta-details-actives span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
} */

.article-title-main-actives {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    /* background: linear-gradient(135deg, var(--text-dark), var(--bg-red)); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    /* animation: titleGlow 3s ease-in-out infinite alternate; */
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 5px var(--bg-red));
    }
    to {
        filter: drop-shadow(0 0 15px var(--bg-red));
    }
}

.article-subtitle-actives {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Image */
.article-featured-image-actives {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.featured-image-container-actives {
    position: relative;
    width: 100%;
    height: 450px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px var(--bg-card);
    transition: all 0.4s ease;
    animation: imageSlideIn 1s ease-out 0.5s both;
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.featured-image-actives {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-image-container-actives:hover .featured-image-actives {
    transform: scale(1.05);
}

.featured-image-container-actives:hover {
    box-shadow: 0 35px 70px var(--bg-card), 0 25px 50px var(--bg-card);
}

.image-overlay-actives {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--bg-card));
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.featured-image-container-actives:hover .image-overlay-actives {
    opacity: 1;
}

.image-caption-actives {
    color: white;
    font-size: 1rem;
    text-align: center;
}

/* Article Content Wrapper */
    .article-content-wrapper-actives {
    margin-top: 3rem;
}

.article-content-main-actives {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--bg-card);
    transition: all 0.4s ease;
    animation: contentSlideIn 1s ease-out 0.8s both;
      box-shadow: 0 15px 35px var(--bg-card);
}

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

.article-content-main-actives:hover {
    background: var(--bg-card);
    border-color: var(--bg-card);
    box-shadow: 0 20px 45px var(--bg-card), 0 15px 35px var(--bg-card);
}

/* Content Sections */
.content-section-actives {
    margin-bottom: 3rem;
}

.content-heading-actives {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.content-heading-actives::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-red), #0580a0);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.content-heading-actives:hover::after {
    width: 80px;
}

.content-heading-actives:hover {
    color: var(--bg-red);
    transform: translateX(10px);
}

.content-paragraph-actives {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Quote Styling */
.content-quote-actives {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card));
    border-left: 5px solid var(--bg-red);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 0 15px 15px 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-quote-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, var(--bg-card) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.content-quote-actives:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card));
    box-shadow: 0 10px 30px var(--bg-card);
}

    .content-quote-actives:hover::before {
    transform: translateX(0);
}

.quote-text-actives {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-author-actives {
    color: var(--bg-red);
    font-weight: 600;
}

/* Strategy List */
.strategy-list-actives {
    margin-top: 2rem;
}

.strategy-item-actives {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 2px solid var(--bg-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.strategy-item-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, var(--bg-card) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.strategy-item-actives:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--bg-card);
    border-color: var(--bg-card);
    box-shadow: 0 15px 35px var(--bg-card);
}

.strategy-item-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.strategy-number-actives {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-red), #0580a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--bg-red);
    position: relative;
    z-index: 2;
}

.strategy-item-actives:hover .strategy-number-actives {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px var(--bg-red);
}

.strategy-title-actives {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.strategy-description-actives {
    color: var(--text-dark);
    line-height: 1.6;
}


/* Social Share */
      .social-share-actives {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--bg-card);
}

.share-heading-actives {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons-actives {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button-actives {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-button-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.share-button-actives.facebook-actives {
    background: #1877f2;
    color: white;
}

.share-button-actives.twitter-actives {
    background: #1da1f2;
    color: white;
}

.share-button-actives.linkedin-actives {
    background: #0077b5;
    color: white;
}

.share-button-actives.email-actives {
    background: var(--bg-red);
    color: white;
}

.share-button-actives:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--bg-card);
    color: white;
}

.share-button-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

/* Sidebar */
.article-sidebar-actives {
    padding-left: 2rem;
}

    .sidebar-section-actives {
      background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 2px solid var(--bg-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-section-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, var(--bg-card) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.sidebar-section-actives:hover {
    transform: translateY(-5px);
    background: var(--bg-card);
    border-color: var(--bg-card);
    box-shadow: 0 15px 35px var(--bg-card);
}

.sidebar-section-actives:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.sidebar-heading-actives {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-heading-actives::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bg-red);
}

/* Related Articles */
.related-articles-actives {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-item-actives {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid var(--bg-card);
    position: relative;
    overflow: hidden;
}

.related-item-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-card) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.related-item-actives:hover {
    background: var(--bg-card);
    transform: translateX(8px) scale(1.02);
    border-color: var(--bg-card);
    box-shadow: 0 10px 25px var(--bg-card);
}

.related-item-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.related-image-actives {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .related-image-actives img {
    width: 100%;
    height: 100%;
    
}

.related-title-actives {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-date-actives {
    font-size: 0.85rem;
      color: var(--text-dark);
}

/* Newsletter */
/* .newsletter-actives {
    text-align: center;
}

.newsletter-description-actives {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form-actives {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-actives {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-input-actives:focus {
    outline: none;
    border-color: var(--bg-red);
    background: var(--bg-card);
}

.newsletter-input-actives::placeholder {
    color: var(--text-dark);
}

    .newsletter-button-actives {
    background: var(--bg-red);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
        color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-button-actives:hover {
        background: var(--bg-red);
    transform: translateY(-2px);
} */

/* Responsive Design for Article Page */
@media (max-width: 1200px) {
  .featured-image-container-actives{
    height: auto;
  }
}
@media (max-width: 768px) {
    .article-main-actives {
        padding: 1rem 0;
    }
    
    .article-title-main-actives {
        font-size: 2rem;
    }
    
    .article-subtitle-actives {
        font-size: 1rem;
    }
    
    .article-content-main-actives {
        padding: 1.5rem;
    }
    
    .benefits-grid-actives {
        grid-template-columns: 1fr;
    }
    
    .strategy-item-actives {
        flex-direction: column;
        text-align: center;
    }
    
    .article-sidebar-actives {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .article-meta-details-actives {
        flex-direction: column;
        gap: 0.5rem;
    }

    
    /* .share-buttons-actives {
        justify-content: center;
    } */
}

@media (max-width: 480px) {
    .article-header-actives {
        margin-bottom: 2rem;
    }
    
    .article-title-main-actives {
        font-size: 1.8rem;
    }
    
    .content-heading-actives {
        font-size: 1.5rem;
    }
    
    .article-content-main-actives {
        padding: 1rem;
    }
    
    .benefit-item-actives,
    .strategy-item-actives {
        padding: 1rem;
    }
    
    .sidebar-section-actives {
        padding: 1.5rem;
    }
}



/* related Article */

.section-related-articles {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.section-related-articles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23cbd5e0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23a0aec0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Articles Container */
.section-related-articles .articles-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-related-articles .articles-header {
  margin-bottom: 3rem;
}

.section-related-articles .articles-header .header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 15px;
}

.section-related-articles .articles-header .articles-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-related-articles .articles-header .articles-subtitle {
  font-size: 1.1rem;
  color: #606b7b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Articles Grid */
.section-related-articles .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
}

/* Article Card */
.section-related-articles .article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

/* Card Media */
.section-related-articles .article-card .card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
}

.section-related-articles .article-card .card-media .article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.section-related-articles .article-card .card-media .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-related-articles .article-card:hover .card-media .card-overlay {
  opacity: 1;
}

.section-related-articles .article-card .card-media .read-time {
  background: rgba(255, 255, 255, 0.9);
  color: #4a5568;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
}

.section-related-articles .article-card .card-media .read-time i {
  font-size: 0.8rem;
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(10px);
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge.health {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge.nutrition {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge.lifestyle {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Card Content */
.section-related-articles .article-card .card-content {
  padding: 1.5rem;
}

.section-related-articles .article-card .card-content .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 10px;
}

.section-related-articles .article-card .card-content .article-meta span {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-related-articles .article-card .card-content .article-meta i {
  font-size: 0.8rem;
  color: #94a3b8;
}

.section-related-articles .article-card .card-content .article-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.section-related-articles .article-card .card-content .card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn {
  background-color: var(--bg-red);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  color: white;
  text-decoration: none;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn
  i {
  transition: transform 0.3s ease;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn:hover
  i {
  transform: translateX(3px);
}

/* Articles Footer */
.section-related-articles .articles-footer .view-all-articles-btn {
  background: white;
  color: var(--bg-red);
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--bg-red);
  font-size: 1rem;
}

.section-related-articles .articles-footer .view-all-articles-btn:hover {
  background: var(--bg-red);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  text-decoration: none;
}

.section-related-articles .articles-footer .view-all-articles-btn i {
  transition: transform 0.3s ease;
}

.section-related-articles .articles-footer .view-all-articles-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-related-articles .articles-container {
      padding: 0 15px;
  }

  .section-related-articles .articles-header .articles-main-title {
      font-size: 2rem;
  }

  .section-related-articles .articles-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .section-related-articles .article-card .card-content {
      padding: 1.25rem;
  }

  .section-related-articles .article-card .card-content .article-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
  }

  .section-related-articles .article-card .card-content .card-actions {
      gap: 15px;
      align-items: stretch;
  }

  .section-related-articles
      .article-card
      .card-content
      .card-actions
      .social-share {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-related-articles
      .articles-header
      .header-decoration
      .decoration-line {
      width: 40px;
  }

  .section-related-articles .articles-header .header-decoration .header-icon {
      font-size: 1.5rem;
      padding: 12px;
  }

  .section-related-articles .articles-header .articles-main-title {
      font-size: 1.75rem;
  }

  .section-related-articles .article-card .card-media {
      height: 180px;
  }

  .section-related-articles .article-card .card-content .article-title {
      font-size: 1.1rem;
  }
}
/* end related Article */


/* start related products */

/* Featured Products Section */
.featured-products-section-related {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.featured-products-section-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
          circle at 20% 80%,
          rgba(120, 119, 198, 0.3) 0%,
          transparent 50%
      ),
      radial-gradient(
          circle at 80% 20%,
          rgba(255, 119, 198, 0.3) 0%,
          transparent 50%
      );
  pointer-events: none;
}

.featured-products-section-related::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-featured" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-featured)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Container Styles */
.featured-products-section-related .container-related {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header Section Styles */
.header-section-related {
  margin-bottom: 4rem;
}

.main-title-related {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: linear-gradient(
      90deg,
      #ff6b6b 0%,
      #feca57 50%,
      #48dbfb 100%
  ) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
  letter-spacing: -0.02em !important;
}

.main-description-related {
  font-size: 1.2rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  text-align: center !important;
  line-height: 1.6 !important;
}

/* Products Container Styles */
.products-container-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Featured Card Styles */
.featured-card-related {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 25px !important;
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 600px !important;
}

.featured-card-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.featured-card-related:hover::before {
  opacity: 1;
}

/* Card Image Section Styles */
.card-image-section-related {
  position: relative !important;
  height: 350px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.main-image-related {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  filter: brightness(1.1) contrast(1.1) !important;
}

.category-badge-related {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  background: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Card Content Section Styles */
.card-content-section-related {
  padding: 2rem !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

/* Product Category Styles */
.product-category-related {
  margin-bottom: 0.5rem !important;
}

.category-tag-related {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%) !important;
  color: white !important;
  padding: 6px 12px !important;
  border-radius: 15px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.category-tag-related i {
  font-size: 0.7rem !important;
}

/* Product Name Styles */
.product-name-related {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: white !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
}

/* Product Description Styles */
.product-desc-related {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  flex-grow: 1 !important;
}

/* Action Buttons Styles */
.action-buttons-related {
  display: flex !important;
  gap: 1rem !important;
  margin-top: auto !important;
}

.view-product-btn-related {
  flex: 1 !important;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%) !important;
  color: white !important;
  border: none !important;
  padding: 15px 25px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.view-product-btn-related:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4) !important;
  background: linear-gradient(135deg, #feca57 0%, #ff6b6b 100%) !important;
}

.view-product-btn-related i {
  font-size: 1.1rem !important;
  transition: transform 0.3s ease !important;
}

.view-product-btn-related:hover i {
  transform: translateX(3px) !important;
}

/* Responsive Design - Large Screens First */
@media (max-width: 1199.98px) {
  .main-title-related {
      font-size: 2.5rem !important;
  }

  .products-container-related {
      grid-template-columns: 1fr;
      gap: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .main-title-related {
      font-size: 2.2rem !important;
  }

  .main-description-related {
      font-size: 1.1rem !important;
  }

  .featured-card-related {
      min-height: 550px !important;
  }
}

@media (max-width: 767.98px) {
  .featured-products-section-related {
      padding: 3rem 0 !important;
      min-height: auto !important;
  }

  .main-title-related {
      font-size: 2rem !important;
  }

  .featured-products-section-related .container-related {
      padding: 0 15px !important;
  }

  .products-container-related {
      gap: 2rem !important;
  }

  .card-image-section-related {
      height: 200px !important;
  }

  .featured-card-related {
      min-height: 500px !important;
  }

  .product-name-related {
      font-size: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .main-title-related {
      font-size: 1.8rem !important;
  }

  .main-description-related {
      font-size: 1rem !important;
  }

  .card-content-section-related {
      padding: 1rem !important;
  }

  .product-name-related {
      font-size: 1.3rem !important;
  }

  .product-desc-related {
      font-size: 0.9rem !important;
  }

  .view-product-btn-related {
      padding: 12px 20px !important;
      font-size: 0.9rem !important;
  }

  .featured-card-related {
      min-height: 450px !important;
  }
}

@media (max-width: 479.98px) {
  .main-title-related {
      font-size: 1.6rem !important;
  }

  .header-section-related {
      margin-bottom: 2.5rem !important;
  }

  .card-image-section-related {
      height: 180px !important;
  }

  .category-badge-related {
      top: 15px !important;
      right: 15px !important;
      padding: 6px 12px !important;
      font-size: 0.75rem !important;
  }

  .products-container-related {
      gap: 1.5rem !important;
  }
}

/* Animation Keyframes */
@keyframes slideInFromBottom {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

/* Animation Classes */
.featured-card-related {
  animation: slideInFromBottom 0.8s ease forwards !important;
}

.featured-card-related:nth-child(1) {
  animation-delay: 0.2s !important;
}

.featured-card-related:nth-child(2) {
  animation-delay: 0.4s !important;
}

.main-title-related {
  animation: fadeInScale 1s ease forwards !important;
}
/* end related product */

/* section mechanism of action */
  /* Parent container styles */
  .mechanism-section {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    margin: 3rem auto;
}

.mechanism-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.mechanism-section .content-wrapper .text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mechanism-section .content-wrapper .image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mechanism-section .content-wrapper .points-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Child elements - Title styles */
.mechanism-section .content-wrapper .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: left;
}

/* Child elements - Point styles */
.mechanism-section .content-wrapper .point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.05),
        rgba(118, 75, 162, 0.05)
    );
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}
.mechanism-section .content-wrapper .point-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
}
.mechanism-section .content-wrapper .point-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.02),
        rgba(118, 75, 162, 0.02)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.mechanism-section .content-wrapper .point-item:hover::before {
    opacity: 1;
}
.mechanism-section .content-wrapper .point-item:nth-child(1) {
    animation-delay: 0.1s;
}
.mechanism-section .content-wrapper .point-item:nth-child(2) {
    animation-delay: 0.2s;
}
.mechanism-section .content-wrapper .point-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mechanism-section .content-wrapper .point-number {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mechanism-section .content-wrapper .point-text {
    flex: 1;
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Image styles (real image inside .image-content) */
.mechanism-section .content-wrapper .mechanism-image {
    width: 100%;
    /* max-width: 420px; */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    display: block;
}
.mechanism-section .content-wrapper .image-content:hover .mechanism-image {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Optional: subtle floating glow behind the image */
.mechanism-section .content-wrapper .image-content::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 999px;
    filter: blur(40px);
    background: radial-gradient(
        circle at 50% 50%,
        rgba(102, 126, 234, 0.25),
        rgba(118, 75, 162, 0.15),
        transparent 60%
    );
    z-index: -1;
}

/* Responsive styles */
@media (max-width: 768px) {
    .mechanism-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .mechanism-section .content-wrapper .section-title {
        font-size: 2rem;
        text-align: center;
    }
    .mechanism-section .content-wrapper .point-item {
        padding: 1rem;
    }
    .mechanism-section .content-wrapper .point-text {
        font-size: 1rem;
    }
    .mechanism-section .content-wrapper .mechanism-image {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
  
    .mechanism-section .content-wrapper {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .mechanism-section .content-wrapper .section-title {
        font-size: 1.8rem;
    }
    .mechanism-section .content-wrapper .point-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    .mechanism-section .content-wrapper .point-number {
        align-self: center;
    }

}

/* Animation for loading effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* section mechanism of action */

/* Enhanced Responsive Design */
/* Large screens */
@media (max-width: 1440px) {
  .blog-section {
    width: 95%;
    padding: 1.5rem;
  }
  
  .blog-slide-content {
    max-width: 1000px;
    gap: 2.5rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .blog-section {
    width: 100%;
    padding: 1.5rem;
  }
  
  .blog-title {
    font-size: 2.2rem;
  }
  
  .blog-slide-content {
    max-width: 900px;
    gap: 2rem;
    padding: 1.8rem;
  }
  
  .blog-image {
    height: 280px;
  }
  
  .blog-content-title {
    font-size: 1.8rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .blog-section {
    padding: 2.5rem 1rem;
  }
  
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-slide-content {
    gap: 1.8rem;
    padding: 1.5rem;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .blog-content-title {
    font-size: 1.6rem;
  }
  
  .blog-content-description {
    font-size: 1rem;
  }
  
  .blog-navigation {
    left: 50%;
    bottom: 15px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .blog-section {
    padding: 2.5rem 0.5rem;
  }
  
  .blog-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .blog-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .blog-slide {
    height: auto;
    min-height: 450px;
  }

  .blog-slide-content {
    flex-direction: column;
    padding: 1.2rem;
    gap: 1.5rem;
    text-align: center;
  }

  .blog-image-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .blog-image {
    height: 220px;
  }

  .blog-content-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .blog-content-description {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  
  .blog-read-more {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .blog-navigation {
    bottom: 10px;
    left: 50%;
  }
  
  .blog-view-all {
    margin: 15px auto;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Mobile landscape */
@media (max-width: 576px) {
  .blog-section {
    padding: 2rem 0.3rem;
  }
  
  .blog-container-center {
    padding: 0 0.5rem;
  }

  .blog-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  
  .blog-subtitle {
    font-size: 0.9rem;
  }

  .blog-slide-content {
    padding: 1rem;
    gap: 1.2rem;
  }
  
  .blog-image-container {
    max-width: 300px;
  }
  
  .blog-image {
    height: 200px;
  }

  .blog-content-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .blog-content-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .blog-read-more {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .blog-nav-btn {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  
  .blog-view-all {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .blog-section {
    padding: 2rem 0.2rem;
  }
  
  .blog-container-center {
    padding: 0 0.3rem;
  }

  .blog-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-subtitle {
    font-size: 0.85rem;
  }

  .blog-slide {
    min-height: 400px;
  }

  .blog-slide-content {
    padding: 0.8rem;
    gap: 1rem;
  }
  
  .blog-image-container {
    max-width: 280px;
  }
  
  .blog-image {
    height: 180px;
  }

  .blog-content-title {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .blog-content-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  
  .blog-read-more {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .blog-navigation {
    bottom: 8px;
    gap: 0.3rem;
  }

  
  .blog-view-all {
    margin: 10px auto;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .blog-title {
    font-size: 1.2rem;
  }
  
  .blog-slide-content {
    padding: 0.6rem;
  }
  
  .blog-image-container {
    max-width: 260px;
  }
  
  .blog-image {
    height: 160px;
  }
  
  .blog-content-title {
    font-size: 1rem;
  }
  
  .blog-content-description {
    font-size: 0.8rem;
  }
}

/* =============== ENHANCED MODAL STYLES =============== */
/* Parent: Modal Container */
.modal {
  --modal-primary: var(--bg-red);
  --modal-primary-dark: #b91c42;
  --modal-secondary: #6c757d;
  --modal-success: #28a745;
  --modal-warning: #ffc107;
  --modal-danger: #dc3545;
  --modal-info: #17a2b8;
  --modal-light: #f8f9fa;
  --modal-dark: #343a40;
  --modal-gradient: linear-gradient(135deg, var(--modal-primary) 0%, var(--modal-primary-dark) 100%);
  --modal-shadow: 0 15px 50px rgba(214, 41, 87, 0.25);
  --modal-backdrop: rgba(0, 0, 0, 0.6);
  z-index: 1055;
}

.modal.fade {
  transition: opacity 0.4s ease-in-out;
}

.modal.show {
  backdrop-filter: blur(8px);
}

/* Child: Modal Dialog */
.modal .modal-dialog {
  margin: 2rem auto;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.9) translateY(-30px);
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal .modal-dialog.modal-lg {
  max-width: 850px;
}

.modal .modal-dialog.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 4rem);
}

/* Child: Modal Content */
.modal .modal-dialog .modal-content {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: none;
  border-radius: 20px;
  box-shadow: var(--modal-shadow);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(214, 41, 87, 0.08);
}

.modal .modal-dialog .modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--modal-gradient);
  z-index: 1;
}

.modal .modal-dialog .modal-content::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(214, 41, 87, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: modalFloat 6s ease-in-out infinite;
}

/* Child: Modal Header */
.modal .modal-dialog .modal-content .modal-header {
  background: var(--modal-gradient);
  color: white;
  padding: 1rem;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.modal .modal-dialog .modal-content .modal-header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.modal .modal-dialog .modal-content .modal-header::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -30px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

/* Child: Modal Title */
.modal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

/* Child: Modal Title Icon */
.modal .modal-dialog .modal-content .modal-header .modal-title i {
  font-size: 1.4rem;
  padding: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Child: Close Button */
.modal .modal-dialog .modal-content .modal-header .btn-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 12px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal .modal-dialog .modal-content .modal-header .btn-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.05);
}

.modal .modal-dialog .modal-content .modal-header .btn-close::before {
  content: '×';
  font-size: 24px;
  color: white;
  font-weight: 300;
  line-height: 1;
}

/* Child: Modal Body */
.modal .modal-dialog .modal-content .modal-body {
  padding: 1.5rem;
  background: #ffffff;
  position: relative;
}

.modal .modal-dialog .modal-content .modal-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--modal-primary) 50%, transparent 100%);
  opacity: 0.3;
  border-radius: 1px;
}

/* Child: Form Container */
.modal .modal-dialog .modal-content .modal-body #contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Child: Form Row (Two inputs side by side) */
.modal .modal-dialog .modal-content .modal-body #contactForm .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal .modal-dialog .modal-content .modal-body #contactForm .form-row.single-column {
  grid-template-columns: 1fr;
}

/* Child: Input Group */
.modal .modal-dialog .modal-content .modal-body .input-group {
  margin-bottom: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(214, 41, 87, 0.08);
  position: relative;
}

.modal .modal-dialog .modal-content .modal-body .input-group:hover {
  box-shadow: 0 8px 25px rgba(214, 41, 87, 0.15);
  transform: translateY(-2px);
  border-color: rgba(214, 41, 87, 0.12);
}

.modal .modal-dialog .modal-content .modal-body .input-group:focus-within {
  box-shadow: 0 10px 30px rgba(214, 41, 87, 0.2);
  transform: translateY(-3px);
  border-color: var(--modal-primary);
}

/* Child: Input Group Text (Icon) */
.modal .modal-dialog .modal-content .modal-body .input-group .input-group-text {
  /* background: var(--modal-gradient); */
  border: none;
  color: #666;
  padding: 1rem 1.2rem;
  font-weight: 600;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
}

.modal .modal-dialog .modal-content .modal-body .input-group .input-group-text i {
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}

/* Child: Form Floating */
.modal .modal-dialog .modal-content .modal-body .input-group .form-floating {
  flex: 1;
  margin-bottom: 0;
  position: relative;
}

/* Child: Form Control */
.modal .modal-dialog .modal-content .modal-body .input-group .form-floating .form-control {
  border: none;
  border-radius: 0;
  background: white;
  padding: 1.5rem 1.2rem 0.6rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  height: auto;
  min-height: 58px;
  font-weight: 500;
}

.modal .modal-dialog .modal-content .modal-body .input-group .form-floating .form-control:focus {
  box-shadow: inset 0 0 0 2px rgba(214, 41, 87, 0.1);
  background: #fafbfc;
}

/* .modal .modal-dialog .modal-content .modal-body .input-group .form-floating .form-control:valid {
  background: #f8fff9;
  border-right: 3px solid var(--modal-success);
} */

/* Child: Form Label */
.modal .modal-dialog .modal-content .modal-body .input-group .form-floating label {
  padding: 1rem 1.2rem;
  color: #6c757d;
  font-weight: 600;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  font-size: 0.95rem;
}

.modal .modal-dialog .modal-content .modal-body .input-group .form-floating .form-control:focus + label,
.modal .modal-dialog .modal-content .modal-body .input-group .form-floating .form-control:not(:placeholder-shown) + label {
  color: var(--modal-primary);
  font-weight: 700;
  font-size: 0.8rem;
  transform: translateY(-0.5rem);
}

/* Child: Required Asterisk */
.modal .modal-dialog .modal-content .modal-body .input-group .form-floating label .required {
  color: var(--modal-danger);
  font-weight: 800;
  margin-left: 4px;
  font-size: 1.1em;
}

/* Child: Invalid Feedback */
.modal .modal-dialog .modal-content .modal-body .input-group .form-floating .invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--modal-danger);
  background: rgba(220, 53, 69, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border-left: 3px solid var(--modal-danger);
}

/* Child: Form Notice */
.modal .modal-dialog .modal-content .modal-body .form-notice {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
  padding: 1.2rem;
  border-radius: 12px;
  border-left: 4px solid var(--modal-info);
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Child: Form Notice Icon */
.modal .modal-dialog .modal-content .modal-body .form-notice i {
  color: var(--modal-info);
  font-size: 1.1rem;
  padding: 6px;
  background: rgba(23, 162, 184, 0.15);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Child: Form Notice Required */
.modal .modal-dialog .modal-content .modal-body .form-notice .required {
  color: var(--modal-danger);
  font-weight: 700;
  background: rgba(220, 53, 69, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Child: Modal Footer */
.modal .modal-dialog .modal-content .modal-footer {
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  padding: 1.5rem;
  border-top: 1px solid rgba(214, 41, 87, 0.08);
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
}

/* Child: Footer Buttons */
.modal .modal-dialog .modal-content .modal-footer .btn {
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  min-width: 120px;
  justify-content: center;
}

.modal .modal-dialog .modal-content .modal-footer .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.modal .modal-dialog .modal-content .modal-footer .btn:hover::before {
  left: 100%;
}

/* Child: Secondary Button */
.modal .modal-dialog .modal-content .modal-footer .btn.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  border-color: #6c757d;
  box-shadow: 0 3px 12px rgba(108, 117, 125, 0.2);
}

.modal .modal-dialog .modal-content .modal-footer .btn.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

/* Child: Primary Button */
.modal .modal-dialog .modal-content .modal-footer .btn.btn-primary {
  background: var(--modal-gradient);
  color: white;
  border-color: var(--modal-primary);
  box-shadow: 0 3px 12px rgba(214, 41, 87, 0.2);
}

.modal .modal-dialog .modal-content .modal-footer .btn.btn-primary:hover {
  background: linear-gradient(135deg, var(--modal-primary-dark) 0%, #a0173a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 41, 87, 0.4);
}

/* =============== RESPONSIVE MODAL STYLES =============== */
@media (max-width: 992px) {
  .modal .modal-dialog .modal-content .modal-body #contactForm .form-row {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
}

@media (max-width: 768px) {
  .modal .modal-dialog {
    margin: 1.5rem;
    max-width: calc(100% - 3rem);
  }
  
  .modal .modal-dialog .modal-content .modal-header {
    padding: 1rem;
  }
  
  .modal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 1.2rem;
    gap: 10px;
  }
  
  .modal .modal-dialog .modal-content .modal-body {
    padding: 1rem;
  }
  
  .modal .modal-dialog .modal-content .modal-footer {
    padding: 1.8rem 1rem;
    flex-direction: column;
  }
  
  .modal .modal-dialog .modal-content .modal-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modal .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  

  .modal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 1.1rem;
    gap: 10px;
  }
  
  .modal .modal-dialog .modal-content .modal-body {
    padding: 1rem;
  }
  
  .modal .modal-dialog .modal-content .modal-footer {
    padding: 1.5rem 1rem;
  }
}

/* =============== MODAL ANIMATIONS =============== */
@keyframes modalFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  60% {
    opacity: 0.9;
    transform: scale(1.02) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8) translateY(-30px);
  }
}

.modal.show .modal-dialog .modal-content {
  animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.fade:not(.show) .modal-dialog .modal-content {
  animation: modalFadeOut 0.3s ease-in;
}

