/*=============== GOOGLE FONTS ===============*/
@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: 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;
    --body-font: "Open Sans", sans-serif;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    --container: 124rem;
    --nav-height: 4rem;
}

@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.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-gray);
}

/* 🔹 اخفاء البانر اللي فوق */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

/* 🔹 منع الشيفت للبودي بسبب البانر */
body {
    top: 0 !important;
    position: relative !important;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background: var(--body-background) !important;
    color: var(--text-color);
}

/* 🔹 اخفاء أي بوب أب أو عناصر تخص الترجمة (تولتيب، بالون، إلخ) */
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-balloon-frame,
/* .VIpgJd-ZVi9od-a4fUwd-6vB6of-ibnC6b, */
.goog-te-menu-frame {
    display: none !important;
    visibility: hidden !important;
}

/* 🔹 الغاء الخلفية اللي بتظهر على النصوص عند الهوفر أو السليكت */
.goog-text-highlight {
    background: transparent !important;
    background-color: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* 🔹 اخفاء أي عناصر أخرى من جوجل (مثل اللينك للترجمة أو الجادجيت) */
.goog-te-gadget,
.goog-logo-link {
    display: none !important;
}
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 0.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 0.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: 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: 10px;
    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: 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: center;
}

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

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

.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 {
  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;
}
.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(--text-rating);
}

.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 .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-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: 450px) {
    .header .logo a {
        font-size: 15px;
    }
    .header .logo a img {
        height: 40px;
    }
}
/* 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;
    }
}
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

}
/* 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;
    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: 0.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;
  position: relative;
  background-color: rgba(232, 232, 232, 0.52) !important;
  border-radius: 20px;
  overflow: hidden;
}

.best-product .container {
  position: relative;
  z-index: 1;
}

/* Section Header Enhancement */
.best-product .text-center h2 {
  font-size: 32px;
  font-weight: 800;
  position: relative;
}


.best-product .text-center p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}

/* Slider Container Enhancement */
.best-product .best-product-slider-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1rem;
}


/* Individual Slide Enhancement */
.best-product .best-product-slide {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

/* Product Figure Enhancement */
.best-product .product-figure {
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.best-product .product-figure img {
    max-width: 100%;
  height: 350px;
  border-radius: 15px;
    object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1)); */
  position: relative;
  z-index: 1;
}

/* Product Info Enhancement */
.best-product .product-info {
    color: var(--text-dark);
  padding: 30px;
  position: relative;
}

.best-product .product-info h3 {
  font-weight: 700;
    color: var(--text-dark);
  margin: 20px 0;
  font-size: 2.2rem;
  line-height: 1.2;
  position: relative;
}

.best-product .product-info h3 .text-danger {
  color: #ef4444 !important;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.best-product .product-overview {
    font-style: italic;
  font-size: 1.1rem;
  color: #64748b;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 25px;
  margin-bottom: 30px;
    text-align: justify;
  line-height: 1.7;
  position: relative;
}

.best-product .product-overview::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 1px;
}

/* Button Enhancement */
.best-product .buttons {
  margin-top: 2rem;
}

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

.best-product .view-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.best-product .view-product:hover::before {
  left: 100%;
}

.best-product .view-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

/* Swiper Pagination Enhancement */
.best-product .swiper-pagination {
  position: relative;
  margin-top: 2rem;
  padding: 20px;
}

.best-product .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.best-product .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.best-product .swiper-pagination-bullet:hover {
  background: #667eea;
  transform: scale(1.1);
}

/* Swiper Navigation Enhancement */
.best-product .swiper-button-next,
.best-product .swiper-button-prev {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.best-product .swiper-button-next:hover,
.best-product .swiper-button-prev:hover {
  background: #667eea;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.best-product .swiper-button-next::after,
.best-product .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Responsive Design Enhancement */
@media (max-width: 767.98px) {
  .best-product {
      padding: 2rem 0;
      margin: 20px 0;
  }

  .best-product .text-center h2 {
      font-size: 2rem;
  }

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

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

  .best-product .product-info h3 {
      font-size: 1.8rem;
  }

  .best-product .product-overview {
      font-size: 1rem;
  }

  .best-product .view-product {
        width: 100%;
      text-align: center;
      margin: 10px 0;
  }

  .best-product .swiper-button-next,
  .best-product .swiper-button-prev {
      width: 40px;
      height: 40px;
  }

  .best-product .swiper-button-next::after,
  .best-product .swiper-button-prev::after {
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .best-product .text-center h2 {
      font-size: 1.8rem;
  }

  .best-product .product-figure img {
      height: 200px;
  }

  .best-product .product-info h3 {
      font-size: 1.5rem;
  }

  .best-product .product-overview {
      font-size: 0.95rem;
  }

  .best-product .product-figure,
  .best-product .product-info {
      padding: 15px;
  }
}

/* Animation Enhancements */
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.best-product .best-product-slide {
  animation: slideInUp 0.6s ease-out;
}

/* Loading State */
.best-product.loading .best-product-slide {
  opacity: 0.7;
  pointer-events: none;
}

.best-product.loading .product-figure img {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

/* end best product slider enhanced */

/* Timeline Slider - CSS Only (Fixed Layout) */

/* Timeline Slider Container */
.timeline-wrapper .timeline-slider-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible; /* Allow vertical overflow for icons */
    
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.timeline-wrapper .timeline-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Timeline Slider Wrapper */
.timeline-wrapper .timeline-slider-wrapper {
    display: flex;
    width: max-content;
    gap: 1rem; /* Increase gap between items */
    padding: 10px 20px; /* Add padding to prevent cutting */
    align-items: flex-start; /* Align to top instead of stretch */
}

/* Timeline Item - Fixed Width and Height */
.timeline-wrapper .timeline-item {
    flex: 0 0 auto;
    min-width: 180px; /* Fixed width for all items */
    max-width: 180px; /* Maximum width for consistency */
    min-height: 140px; /* Fixed height for all items - Desktop */
    max-height: 140px; /* Maximum height for consistency */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px; /* Add internal padding */
    position: relative;
    box-sizing: border-box;
}

/* Icon Circle - Ensure proper size and visibility */
.timeline-wrapper .timeline-item .icon-circle {
    margin-bottom: 10px; /* Space between icon and text */
    flex-shrink: 0; /* Prevent shrinking */
    width: 70px; /* Fixed width */
    height: 70px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text positioning */
.timeline-wrapper .timeline-item small {
    margin-top: auto; /* Push text to bottom */
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

/* Mobile Styles - Horizontal Scroll */
@media (max-width: 768px) {
    .timeline-wrapper .timeline-slider-container {
        padding: 15px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .timeline-wrapper .timeline-slider-wrapper {
        gap: 1.5rem;
        padding: 10px 15px;
    }
    
    .timeline-wrapper .timeline-item {
        min-width: 120px;
        max-width: 120px;
        min-height: 120px;
        max-height: 120px;
        padding: 8px;
    }
    
    .timeline-wrapper .timeline-item .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .timeline-wrapper .timeline-item small {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .timeline-wrapper .timeline-slider-container {
        padding: 10px 0;
    }
    
    .timeline-wrapper .timeline-slider-wrapper {
        gap: 1rem;
        padding: 10px;
    }
    
    .timeline-wrapper .timeline-item {
        min-width: 100px;
        max-width: 100px;
        min-height: 110px;
        max-height: 110px;
        padding: 5px;
    }
    
    .timeline-wrapper .timeline-item .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .timeline-wrapper .timeline-item small {
        font-size: 0.8rem;
    }
}

/* Ensure proper z-index for icons */
.timeline-wrapper .timeline-item .icon-circle {
    z-index: 2;
    position: relative;
}

/* end timeline slider css only */

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

.timeline-container h2 {
    color: var(--text-dark);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    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: 180px;
    /* max-width: 160px; */
    text-align: center;
    padding: 1.2rem 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 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 12px rgba(0, 0, 0, 0.1);
    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.01);
    color: var(--text-white);
}

.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: 700;
    font-size: 25px;
    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: 0.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: 0.8rem;
    color: var(--verified);
}

.review-title {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.review-content {
    font-size: 0.8rem;
    margin-bottom: 0.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 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: 90%;
    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/banner-image.png) 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: 275px;
    background-color: var(--bg-red);
    color: var(--text-white);
    border-radius: 6px;
    transition: all 0.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 0.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: 0.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: 0.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: 0.7rem;
}

.img-select .img-item img {
    width: 120px;
    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: 0.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: 0.5rem 1rem;
    }

    .card-details .product-content {
        padding: 1rem 0.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: 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;
    }

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

/* 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/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 {
    position: absolute  ;
    top: 50%;
    left: 3%;
    transform: translate(0%, -50%);
    text-align: left;
    padding: 10px 20px;
    z-index: 9;
    width: 40%;
}

.banner-text h3,
.banner-text p {
    padding: 7px 0;
    font-weight: 600;       
    text-align: left;
}
.banner-text h3 {
    font-size: 2.5rem;
}
.banner-text p {
    font-size: 1.3rem;
}
.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: 0.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: 0.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: 15px;
}

.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 {
        width: 94%;
        left: 0%;
    }
    .banner-text h3 {
        font-size: 1.8rem;
    }
    .banner-text p {
        font-size: 1rem;
    }
    .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: 0.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: 0.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 .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(0.9, 0, 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: 0.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: 0.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: 0.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: 8px;
    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: 0.2rem;
    }

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

    .container_product_list .row .box .data {
        padding: 0.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);
    }
}

/* 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);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.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: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.tech-tabs-info-list {
    list-style: none;
    padding: 0;
}

.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(--verified);
    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-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-cell-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

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

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

@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: 0.5rem;
    }
}

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

/* section Blogs  */
.blog-section {
    padding: 2rem 0;
    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: 25px;
    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: 25px;
    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-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* 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: 25px;
  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 */
/* end blogs-section-centered */

/* page blogs */
/* Main Container */
.blog-container {
    max-width: 1400px;
    margin: 4rem auto;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-header p {
    font-size: var(--normal-font-size);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Area */
.main-content {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px var(--shadow);
    padding: 1rem;
    margin-bottom: 1rem;
}
.main-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.main-content h2 i {
    color: var(--bg-red);
}

/* Card Styles */
.blog-cards-container {
    display: grid;
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px var(--shadow);
    border: 1px solid var(--color-hover);
    transition: var(--transition);
    position: relative;
}

.blog-card .card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--card-list-bg);
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card .card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bg-red);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--smaller-font-size);
    font-weight: 500;
    z-index: 2;
}

.blog-card .card-content {
    padding: 1.5rem;
}

.blog-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card .card-title a:hover {
    color: var(--bg-red);
}

.blog-card .card-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-hover);
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: var(--small-font-size);
}

.blog-card .card-meta i {
    color: var(--bg-red);
}

.blog-card .read-more {
    background: var(--btn-bg);
    color: var(--text-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--small-font-size);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-card .read-more:hover {
    background: var(--bg-red);
    transform: translateX(2px);
}

/* Sidebar Styles */
.sidebar {
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title i {
    color: var(--bg-red);
}

/* Featured Posts in Sidebar */
.featured-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-hover);
    transition: all 0.3s ease;
}

.featured-post:hover {
    background: var(--card-list-bg);
    padding-left: 0.5rem;
}

.featured-post .post-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    flex-shrink: 0;
}

.featured-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post .post-info h4 {
    font-size: var(--small-font-size);
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.featured-post .post-info h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-post .post-info h4 a:hover {
    color: var(--bg-red);
}

.featured-post .post-info span {
    color: var(--text-secondary);
    font-size: var(--smaller-font-size);
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--smaller-font-size);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-hover);
    cursor: pointer;
}

.tag:hover,
.tag.active {
    background: var(--btn-bg);
    color: var(--text-white);
    border-color: transparent;
    transform: scale(1.05);
}

/* Recent Comments */
.recent-comment {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-hover);
}

.recent-comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-comment p {
    font-size: var(--small-font-size);
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.recent-comment .comment-meta {
    font-size: var(--smaller-font-size);
    color: var(--text-gray);
}

/* Social Media */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--bg-red);
}

/* Newsletter Form */
.newsletter-form .input-group {
    position: relative;
}

.newsletter-form input {
    border: 1px solid var(--color-hover);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: var(--small-font-size);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--bg-red);
    box-shadow: 0 0 0 3px rgba(214, 41, 87, 0.1);
    outline: none;
}

.newsletter-form button {
    background: var(--btn-bg);
    border: none;
    border-radius: 50px;
    padding: 0.2rem 1rem;
    color: var(--text-white);
    font-size: var(--small-font-size);
    transition: all 0.3s ease;
    width: 100px !important;
}

.newsletter-form button:hover {
    background: var(--bg-red);
}

/* pagination */
.pagination-container {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.pagination-info {
  text-align: center;
}

.pagination-info .results-text {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.pagination-nav {
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-item {
  display: flex;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 0.75rem;
  color: #475569;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.page-link:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
  color: #1e293b;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-item.active .page-link {
  background-color: var(--bg-red);
  border-color: var(--bg-red);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.page-item.active .page-link:hover {
  background-color: var(--bg-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.page-item.disabled .page-link {
  color: #cbd5e0;
  cursor: not-allowed;
  background: #f8fafc;
  border-color: #f1f5f9;
}

.page-item.disabled .page-link:hover {
  background: #f8fafc;
  border-color: #f1f5f9;
  color: #cbd5e0;
  transform: none;
  box-shadow: none;
}

.page-item.dots .page-link {
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: default;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-item.dots .page-link:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.page-link.prev,
.page-link.next {
  padding: 0.5rem 1rem;
  font-weight: 600;
  min-width: auto;
}

.page-link.prev i,
.page-link.next i {
  font-size: 0.8rem;
}

.page-size-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.page-size-selector label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.page-size-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: white;
  color: #475569;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 70px;
}

.page-size-select:hover {
  border-color: #cbd5e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-size-select:focus {
  outline: none;
  border-color: var(--bg-red);
  box-shadow: 0 0 0 3px rgba(var(--bg-red), 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pagination-container {
    margin-top: 2rem;
    padding: 1.5rem 0;
    gap: 1rem;
  }

  .pagination {
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-link {
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .page-link.prev,
  .page-link.next {
    padding: 0.5rem 0.75rem;
  }

  .page-link.prev span,
  .page-link.next span {
    display: none;
  }

  .page-size-selector {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 0.2rem;
  }

  .page-link {
    min-width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* Hide some page numbers on very small screens */
  .pagination .page-item:nth-child(n+6):nth-child(-n+7) {
    display: none;
  }
}

/* end pagination */

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container {
        padding: 0rem;
    }

    .blog-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .main-content,
    .sidebar {
        padding: 1.5rem;
    }

    .blog-card .card-image {
        height: 160px;
    }

    .blog-card .card-content {
        padding: 1rem;
    }

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

@media (max-width: 576px) {
    .blog-header h1 {
        font-size: 1.75rem;
    }

    .blog-card .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-content,
    .sidebar {
        padding: 1rem;
    }
}

/* Loading Animation */
.loading-placeholder {
    background: linear-gradient(
        90deg,
        var(--color-hover) 25%,
        #e0e0e0 50%,
        var(--color-hover) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* page blogs */

/* page articles */

.section-articles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: var(--body-background, #f8fafc);
    padding: 40px 0;
}

.section-articles > .section-articles__wrapper {
    background: var(--bg-white, #fff);
    border-radius: 28px;
    box-shadow: 0 8px 32px var(--shadow, rgba(32, 7, 65, 0.14));
    max-width: 1200px;
    width: 98vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-bottom: 32px;
}

.section-articles > .section-articles__wrapper > .section-articles__image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 28px 28px 0 0;
    margin-bottom: 0;
}

.section-articles > .section-articles__wrapper > .section-articles__content {
    width: 100%;
    padding: 36px 40px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__title {
    font-size: 2.2rem;
    color: var(--bg-red, #d62957);
    font-weight: bold;
    margin-bottom: 18px;
    text-align: center;
    font-family: var(--body-font, "Open Sans", sans-serif);
}

.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__desc {
    color: var(--text-secondary, #667085cc);
    font-size: 1.15rem;
    margin-bottom: 22px;
    text-align: center;
    max-width: 600px;
}

.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__body {
    color: var(--text-dark, #111);
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: left;
    width: 100%;
    max-width: 1200px;
}

.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__body
    h2 {
    color: var(--bg-red, #d62957);
    font-size: 1.3rem;
    margin: 1.5em 0 0.7em 0;
    font-weight: bold;
}

.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__body
    ul {
    padding-left: 1.2em;
    margin-bottom: 1.2em;
}

.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__body
    li {
    margin-bottom: 0.5em;
}
.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__divider {
    border: none;
    border-top: 1.5px solid var(--bg-card, #dddddd40);
    margin: 32px 0 18px 0;
    width: 100%;
}

.section-articles__date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    background: var(--bg-card, #f5f5f5);
    color: var(--text-secondary, #667085cc);
    font-size: 1rem;
    border-radius: 18px;
    padding: 8px 18px;
    box-shadow: 0 2px 8px var(--shadow, rgba(32, 7, 65, 0.07));
    font-family: var(--body-font, "Open Sans", sans-serif);
    letter-spacing: 0.5px;
    transition: background 0.2s;
    width: fit-content;
}

.section-articles
    > .section-articles__wrapper
    > .section-articles__content
    > .section-articles__date
    i {
    color: var(--bg-red, #d62957);
    font-size: 1.1em;
    margin-right: 4px;
}

@media (max-width: 900px) {
    .section-articles > .section-articles__wrapper {
        max-width: 99vw;
        border-radius: 18px;
    }
    .section-articles > .section-articles__wrapper > .section-articles__image {
        height: 180px;
        border-radius: 18px 18px 0 0;
    }
    .section-articles
        > .section-articles__wrapper
        > .section-articles__content {
        padding: 22px 10px 0 10px;
    }
    .section-articles
        > .section-articles__wrapper
        > .section-articles__content
        > .section-articles__title {
        font-size: 1.3rem;
    }
    .section-articles
        > .section-articles__wrapper
        > .section-articles__content
        > .section-articles__desc {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    .section-articles
        > .section-articles__wrapper
        > .section-articles__content
        > .section-articles__body {
        font-size: 0.98rem;
        max-width: 100%;
    }
    .section-articles
        > .section-articles__wrapper
        > .section-articles__content
        > .section-articles__divider {
        margin: 18px 0 10px 0;
    }
    .section-articles
        > .section-articles__wrapper
        > .section-articles__content
        > .section-articles__date {
        font-size: 0.95rem;
        padding: 6px 12px;
        border-radius: 12px;
    }
}
/* end page articles */

/* 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 */
.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: 10px !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;
    }

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

/* 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: 10px;
    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 */


    
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
    background-color : transparent !important;
    box-shadow: none !important;
}