/*=============== 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);
  --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;
  --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;
}

.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: 25px;
  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: 25px;
  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: 10px 20px;
  background-color: transparent;
  color: var(--text-white);
  background-color: var(--bg-red);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 25px;
  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: 7px 10px;
  background: var(--btn-bg) !important;
  color: var(--text-white) !important;
  text-decoration: none;
  border-radius: 25px !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: 25px;
  color: var(--text-white);
  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: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

@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;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
} */

.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.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);
}

/* 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: 991px) {
  .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 .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;
    background-color: var(--bg-dark);

    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-white);
    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;
  }
}

/* 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: 4rem;
  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 h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 30px;

}

.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 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
}

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

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

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

}

/* 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;
}

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

.features .feature-content {
  margin: 15px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.features .feature-content i {
  font-size: 1rem;
  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;
  }
}

/* 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: 30px 0;
}

.product-figure {
  padding: 20px;
}

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

.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) {

  .product-figure,
  .product-info {
    text-align: center;
    padding: 5px 20px;
  }

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

  .button-group .btn {
    display: block;
    width: 100%;
    margin: 5px 0;
  }
}

/* end section Best product */

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

.technology-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

.timeline-container h2,
.technology-container h2 {
  color: var(--text-dark);
  font-size: 30px;
  font-weight: bold;
}

.technology-container .row {
  display: flex;
  justify-content: center;
}

.timeline-item {
  text-align: center;
  padding: .5rem;
  transition: transform 0.3s ease;
  color: var(--text-dark);
  cursor: pointer;
  margin-top: 30px;
}

.timeline-item:hover {
  transform: translateY(-5px);
  background: var(--btn-bg);
  border-radius: 8px;
  color: var(--text-white);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .4rem auto;
  font-size: 1rem;
  color: var(--color-red);
}

.results-section {
  background: var(--btn-bg);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.timeline-item.active {
  background: var(--btn-bg);
  color: var(--text-white);
  border-radius: 8px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  background: var(--bg-red);
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.3s ease;
}

/* .nav-arrow:hover {
  background: rgba(128, 0, 128, 0.5);
} */

.nav-arrow.prev {
  left: 1rem;
}

.nav-arrow.next {
  right: 1rem;
}

.cta-button {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.science-btn {
  background: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-dark);
}

.science-btn:hover {
  background: var(--color-hover);
  color: var(--text-dark);
}

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

.shop-btn:hover {
  background: var(--bg-red);
}

.days-box {
  background: var(--btn-bg);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text-white);
}

.tab-pane h2 {
  color: var(--text-white);
  font-size: 20px;
  font-weight: bold;
}

.tab-pane p {
  color: var(--text-white);
  font-size: 15px;
  text-align: justify;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

@media (max-width: 768px) {

  .timeline-item {
    margin-bottom: .5rem;
    margin-top: .5rem;
  }

  .results-section {
    padding: 2rem 1rem;
  }

  .technology-container .timeline-item {
    margin: 10px 0;
  }

  .cta-button {
    width: 100%;
    margin-bottom: 1rem;
  }

  .icon-circle {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
  }
}

/* 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: 700;
  font-size: 25px;
  color: var(--text-dark);
  margin-bottom: 30px;
  padding: 0 30px;
}

.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);
  }
}

/* end section review */

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

.patented-products .card {
  width: 100%;
  border: none;
  box-shadow: 4px 4px 4px 8px 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: 350px;
  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: 220px;
  }

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

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

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

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

.banner-content-purpose .banner-title {
  font-size: 3rem;
  font-weight: bold;
}


@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;
  }
}

/* end section banner */

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

.card-ingredients {
  background-image: url(../../assets/image/product_hover.webp);
  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: 275px;
  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: 30px;
  padding: 10px 0;
}

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

.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);
}

@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: 120px 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 {
  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: 20px 0;
}

.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: flex-start;
  justify-content: center;
  padding: 20px;
  margin: 10px 0;
}

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

.container-enhance .text-cell h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

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

.container-enhance .image-cell img {
  width: 94%;
  height: 600px;
  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: 85vh;
  }

  .product_info_banner {
    width: 95%;
  }

  .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;
  }
}

/* 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/about.webp);
  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/products.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.banner-text {
  display: flex;
  justify-content: center;
  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,
.banner-text p {
  padding: 7px 0;
  font-weight: 600;
}

.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;
  }
}

@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: 35px 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out forwards;
  }

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

  .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;
  }

}

/* 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: 60px 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 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: 25px;
  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 {
    padding: 20px 25px;
  }
}

/* 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: 14vw;
  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: 20vw;
}

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

#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: 70%;
  height: 70%;
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  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(252, 145, 13);
}

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



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

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

  .cntr-nav {
    display: none;
  }

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

  #fanta {
    width: 95vw;
  }

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

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

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

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

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

  .magicpattern {
    width: 100%;
    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: 14vw;
    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: 4em;
  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: 3.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: 3em;
  }

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

  .container-rotating .text {
    font-size: 6em;
    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: left;
  color: var(--text-dark);
  line-height: 2;
}

.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: 60px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.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: 35px auto;
  }

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

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

/* end page category  */


/* section Blogs  */
.blogs-section-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--body-background);
  padding: 20px 0 30px 0;
}

.blogs-section-centered .blogs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blogs-section-centered .blogs-header h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--bg-red);
}
.blogs-section-centered .blogs-header p {
  font-size: 16px;
  color: var(--text-secondary);
}
.blog-card-centered {
  width: 1100px;
  max-width: 98vw;
  background: var(--bg-white);
  border-radius: 32px;
  box-shadow: 0 8px 32px var(--shadow);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  animation: fadeInUp 0.8s cubic-bezier(.4,2,.6,1) both;
  margin-bottom: 32px;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}

.blog-card-img {
  flex: 0 0 340px;
  max-width: 340px;
  min-width: 220px;
  /* background: var(--bg-card); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1), filter 0.3s;
  border-radius: 0;
}

.blog-card-content {
  flex: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, var(--bg-white) 80%, var(--bg-card) 100%);
}

.blog-card-title {
  font-family: var(--body-font);
  font-size: 2.1rem;
  color: var(--bg-red);
  margin: 0 0 18px 0;
  background-size: 100% 38%;
  background-repeat: no-repeat;
  background-position: 0 85%;
  padding: 0 4px;
  box-decoration-break: clone;
  transition: background-size 0.4s;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.blog-card-centered:hover .blog-card-title {
  background-size: 100% 80%;
}

.blog-card-desc {
  font-family: var(--body-font);
  font-size: 1.13rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.blog-card-btn {
  align-self: flex-start;
  padding: 0.7em 2.2em;
  border-radius: 24px;
  background: var(--btn-bg);
  color: var(--text-white);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px var(--shadow);
  border: none;
  transition: background 0.3s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
  margin-top: auto;
  margin-bottom: 0;
  cursor: pointer;
  outline: none;
}

.blog-card-btn:hover {
  background: var(--bg-red);
  color: var(--text-white);
  box-shadow: 0 4px 16px var(--shadow);
  transform: translateY(-2px) scale(1.04);
}

.blog-card-actions {
  max-width: 98vw;
  display: flex;
  justify-content: center;
}

.blog-card-viewall {
  display: inline-block;
  padding: 0.7em 2.5em;
  border-radius: 24px;
  background: var(--bg-card);
  color: var(--bg-red);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 2px 12px var(--shadow);
  border: none;
  transition: background 0.3s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 10px;
  margin-bottom: 0;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.5px;
  display: flex;
}

.blog-card-viewall:hover {
  background: var(--bg-red);
  color: var(--text-white);
  box-shadow: 0 4px 16px var(--shadow);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1200px) {
  .blog-card-centered, .blog-card-actions {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .blog-card-centered, .blog-card-actions {
    width: 98vw;
    min-width: 0;
    max-width: 100vw;
  }
  .blog-card-centered {
    flex-direction: column;
    border-radius: 32px;
  }
  .blog-card-img, .blog-card-img img {
    max-width: 100%;
    min-width: 0;
    height: 220px;
    border-radius: 32px 32px 0 0;
  }
  .blog-card-content {
    padding: 32px 18px;
  }
  .blog-card-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .blogs-section-centered {
    padding: 18px 0 32px 0;
  }
  .blog-card-centered, .blog-card-actions {
    width: 95vw;
    max-width: 100vw;
    min-width: 0;
    margin-bottom: 18px;
  }
  .blog-card-img {
    max-width: 100%;
    min-width: 0;
    height: 180px; /* Adjusted height for small screens */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .blog-card-img img {
    height: 180px; /* Consistent height with container */
    border-radius: 24px 24px 0 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    display: block;
    image-rendering: optimizeQuality; /* Enhance image rendering */
  }
  .blog-card-content {
    padding: 18px 10px;
  }
  .blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .blog-card-desc {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }
  .blog-card-btn, .blog-card-viewall {
    font-size: 0.98rem;
    padding: 0.6em 1.3em;
    border-radius: 18px;
  }
}
/* end blogs-section-centered */