/* =========================================================
   ABOUT SECTION
========================================================= */

.about-nutiv-section {
    background: #fff;
}

.about-content {
    padding: 10px 15px;
}

.about-label {
    display: inline-block;
    padding: 14px 22px;
    border: 1px solid #b6cdb8;
    border-radius: 9px;
    color: #205f23;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-content h1 {
    margin: 25px 0 20px;
    font-size: clamp(38px, 3vw, 58px);
    line-height: .92;
    font-weight: 800;
    letter-spacing: -2px;
}

.about-content h1 .green {
    color: #176b20;
}

.about-content h1 .blue {
    color: #123663;
}

.about-line {
    width: 100px;
    height: 4px;
    margin: 20px 0 30px;
    background: #287626;
}

.about-content p {
    margin-bottom: 28px;

    font-size: 18px;
    line-height: 1.55;
    color: #171717;
}

.about-content p strong {
    color: #176b20;
}


/* =========================================================
   RIGHT SIDE CARDS
========================================================= */

.biomolecule-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bio-card {
    position: relative;
    min-height: 245px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}


/* Background Images */

.botanical-card {
    background-image:
        linear-gradient(
            90deg,
            rgba(2, 27, 0, .85),
            rgba(2, 27, 0, .25)
        ),
        url('../images/about/card-01.png');
}

.enzymes-card {
    background-image:
        linear-gradient(
            90deg,
            rgba(2, 26, 62, .9),
            rgba(2, 26, 62, .2)
        ),
        url('../images/about/card-02.png');
}

.ingredients-card {
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 48, 56, .9),
            rgba(0, 48, 56, .2)
        ),
        url('../images/about/card-03.png');
}


/* Card Content */

.bio-card-content {
    position: relative;
    z-index: 2;

    width: 55%;
    padding: 30px;
}

.bio-card h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
}

.bio-card p {
    margin: 0;

    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.bio-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 15px;

    border: 1px solid rgba(255,255,255,.9);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
}

.card-line {
    width: 70px;
    height: 3px;
    margin: 15px 0;
}

.botanical-card .card-line {
    background: #5fcf18;
}

.enzymes-card .card-line {
    background: #13a8ff;
}

.ingredients-card .card-line {
    background: #00d7d7;
}


/* =========================================================
   STATISTICS
========================================================= */

.company-stats {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border: 1px solid #e1e5eb;
    border-radius: 15px;

    padding: 25px 20px;
}

.stat-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 0;

    width: 1px;
    height: 100%;

    background: #dce1e7;
}

.stat-icon {
    flex: 0 0 85px;

    width: 85px;
    height: 85px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 35px;
}

.green-bg {
    background: #176b20;
}

.blue-bg {
    background: #123663;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content strong,
.stat-content strong > span {
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.stat-content span {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #151515;
}

.stat-item:nth-child(odd) .stat-content strong,
.stat-item:nth-child(odd) .stat-content strong > span  {
    color: #176b20;
}

.stat-item:nth-child(even) .stat-content strong,
.stat-item:nth-child(even) .stat-content strong > span {
    color: #123663;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .company-stats {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }

    .stat-item:nth-child(3)::after {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-nutiv-section {
        padding: 40px 0 !important;
    }

    .about-content {
        padding: 0;
    }

    .about-label {
        font-size: 14px;
        padding: 10px 15px;
    }

    .about-content h1 {
        font-size: 48px;
        letter-spacing: -1px;
        margin-top: 20px;
    }

    .about-content p {
        font-size: 16px;
    }

    .bio-card {
        min-height: 230px;
    }

    .bio-card-content {
        width: 80%;
        padding: 25px;
    }

    .bio-card h3 {
        font-size: 24px;
    }

    .bio-card p {
        font-size: 15px;
    }

    .bio-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }


    /* Statistics */

    .company-stats {
        grid-template-columns: 1fr;

        padding: 10px 15px;
    }

    .stat-item {
        justify-content: flex-start;

        padding: 18px 10px;
    }

    .stat-item:not(:last-child)::after {
        top: auto;
        bottom: 0;

        width: 100%;
        height: 1px;
    }

    .stat-item:nth-child(3)::after {
        display: block;
    }

    .stat-icon {
        flex-basis: 65px;

        width: 65px;
        height: 65px;

        font-size: 27px;
    }

    .stat-content strong {
        font-size: 30px;
    }

}






/* ==========================================
   NUTIV ADVANTAGE SECTION
========================================== */

.nutiv-advantage-section {
    background: #fff;
}


/* Section Title */

.advantage-title {
    display: inline-block;
}

.advantage-title span {
    display: inline-block;

    padding: 13px 20px;

    border: 1px solid #5b9a5c;
    border-radius: 7px;

    color: #1b5d20;

    font-size: 20px;
    font-weight: 700;
}


/* ==========================================
   CARD
========================================== */

.advantage-card {
    position: relative;

    height: 100%;
    min-height: 400px;

    padding: 20px 35px 35px;

    text-align: center;

    background: #fff;

    border-radius: 15px;

    border: 1px solid #eeeeee;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition: all .3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);
}


/* ==========================================
   CIRCLE ICON
========================================== */

.advantage-icon {
    width: 105px;
    height: 105px;

    margin: 0 auto 12px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 55px;
}


/* Green Icon */

.green-card .advantage-icon {
    background: #edf4e8;
    color: #176a1c;
}


/* Blue Icon */

.blue-card .advantage-icon {
    background: #eaf2fb;
    color: #0b4b96;
}


/* ==========================================
   HEADING
========================================== */

.advantage-card h3 {
    position: relative;
    z-index: 2;

    margin: 0;

    font-size: 23px;
    line-height: 1.25;

    font-weight: 700;
}

.green-card h3 {
    color: #185f1c;
}

.blue-card h3 {
    color: #0b4b96;
}


/* ==========================================
   LINE
========================================== */

.advantage-line {
    width: 55px;
    height: 2px;

    margin: 12px auto 8px;
}

.green-card .advantage-line {
    background: #176a1c;
}

.blue-card .advantage-line {
    background: #0b4b96;
}


/* ==========================================
   DOTS
========================================== */

.advantage-dots {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-bottom: 14px;
}

.advantage-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;
}

.green-card .advantage-dots span {
    background: #176a1c;
}

.blue-card .advantage-dots span {
    background: #0b4b96;
}


/* ==========================================
   DESCRIPTION
========================================== */

.advantage-card p {
    position: relative;
    z-index: 2;

    max-width: 360px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.55;

    color: #161d2a;
}


/* ==========================================
   DECORATIVE ICON
========================================== */

.card-decoration {
    position: absolute;

    right: 15px;
    bottom: -15px;

    font-size: 80px;

    opacity: .10;

    pointer-events: none;
}

.green-card .card-decoration {
    color: #176a1c;
}

.blue-card .card-decoration {
    color: #0b4b96;
}



/* Certificate */
.nature-intro-section {
    width: 100%;
    background: #fff;
}


/* =====================================
   RESEARCH BADGE
===================================== */

.research-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    color: #15579a;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
}

.research-badge span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #10a642;
}


/* =====================================
   MAIN HEADING
===================================== */

.nature-heading h2 {
    margin: 12px 0 0;

    color: #075198;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 400;
}

.nature-description {
    padding-top: 22px;
}

.nature-description p {
    margin: 0;

    color: #747987;

    font-size: 16px;
    line-height: 1.7;
}

.nature-description strong {
    color: #626774;
    font-weight: 700;
}


/* =====================================
   IMAGE
===================================== */

.nature-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    border-radius: 22px;
}

.nature-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =====================================
   FEATURE CARDS
===================================== */
.nature-feature-card {
    position: relative;
    height: 100%;
    min-height: 100px;
    padding: 25px;
    border-radius: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.scientific-card {
    background: #fff;
    border: solid 2px #003a82;
}

/* Green */
.scientific-about-card {
    background: #00551d;
}

/* Blue */
.impact-card {
    background: #07396f;
}


/* =====================================
   ICON
===================================== */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    //margin-bottom: auto;
    //border-radius: 120%;
    //padding: 25px;
    //background: #319b82;
    //color: #fff;
}
.about-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    background: #319b82;
    color: #fff;
    font-size: 28px;
}
.feature-icon img{
    width: auto;
    height: 120px;
}
.feature-content {
    margin-top: 20px;
}
.feature-content h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}
.feature-content h4 {
    margin: 0 0 12px;
    color: #000;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}
.feature-content p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}




/* =====================================
   Certificate Cards
===================================== */
.certificate-feature-card {
    position: relative;
    height: auto;
    padding: 25px;
    border-radius: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.certificate-card {
    background: #fff;
    border: solid 2px #003a82;
}


/* =====================================
   ICON
===================================== */
.certificate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    //margin-bottom: auto;
    //border-radius: 120%;
    //padding: 25px;
    //background: #319b82;
    //color: #fff;
}
.certificate-icon img{
    width: auto;
    height: 120px;
}
.certificate-content {
    margin-top: 20px;
}
.certificate-content h4 {
    margin: 0 0 12px;
    color: #000;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}



@media (max-width: 1199px) {

    .nature-heading h2 {
        font-size: 36px;
    }

    .nature-feature-card {
        padding: 22px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 15px;
    }
}


@media (max-width: 991px) {

    .nature-heading {
        margin-bottom: 25px;
    }

    .nature-description {
        padding-top: 0;
    }

    .nature-image-box {
        min-height: 350px;
    }

    .nature-feature-card {
        min-height: 200px;
    }
}


@media (max-width: 767px) {

    .nature-intro-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .nature-heading h2 {
        font-size: 32px;
    }

    .nature-description p {
        font-size: 15px;
    }

    .nature-image-box {
        min-height: 300px;
    }

    .nature-feature-card {
        min-height: 200px;
    }

    .feature-content {
        margin-top: 20px;
    }
}


@media (max-width: 575px) {

    .feature-content h3 {
        font-size: 16px;
    }

    .nature-heading h2 {
        font-size: 29px;
    }

    .feature-icon img{
      width: auto;
      height: 100px;
    }

    .nature-image-box {
        min-height: 280px;
        border-radius: 18px;
    }

    .nature-feature-card {
        min-height: 180px;
        border-radius: 18px;
    }
}



/* Why Us */

.why-nutiv-section {
    background: #eefaff;
}

/* Main box */
.why-nutiv-box {
    position: relative;
    padding: 50px 0px 50px;
    //background: #034653;
    //border-radius: 38px;
    overflow: hidden;
}


/* =====================================
   INTRO
===================================== */
.why-nutiv-intro {
    margin-bottom: 55px;
}
.why-nutiv-title {
    margin: 0;
    color: #08abc0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
}

.why-nutiv-description {
    max-width: 500px;
    margin-left: auto;
}

.why-nutiv-description p {
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
}


/* =====================================
   STATISTICS
===================================== */

.why-nutiv-stats {
    row-gap: 0;
}


/* Individual stat */
.nutiv-stat {
    min-height: 125px;

    display: flex;
    align-items: center;

    padding: 25px 45px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}


/* Remove bottom border from last row */
.why-nutiv-stats
.col-lg-6:nth-last-child(-n+1)
.nutiv-stat {
    border-bottom: 0;
}


/* =====================================
   ICON
===================================== */

.nutiv-stat-icon {
    flex: 0 0 70px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #00a9c1;

    font-size: 35px;
}


/* =====================================
   TEXT
===================================== */

.nutiv-stat-text {
    padding-left: 30px;

    color: #fff;

    font-size: 17px;
    line-height: 1.45;

    font-weight: 600;
}


.why-nutiv-stats > .col-lg-6:nth-child(odd) {
    padding-right: 25px;
}

.why-nutiv-stats > .col-lg-6:nth-child(even) {
    padding-left: 25px;
}


@media (max-width: 991px) {

    .why-nutiv-box {
        padding: 55px 40px 30px;
        border-radius: 30px;
    }

    .why-nutiv-title {
        margin-bottom: 25px;
        font-size: 36px;
    }

    .why-nutiv-description {
        max-width: 100%;
        margin-left: 0;
    }

    .nutiv-stat {
        padding: 25px 15px;
    }

    .why-nutiv-stats > .col-lg-6:nth-child(odd),
    .why-nutiv-stats > .col-lg-6:nth-child(even) {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media (max-width: 767px) {

    .why-nutiv-box {
        padding: 45px 25px 25px;
        border-radius: 25px;
    }

    .why-nutiv-intro {
        margin-bottom: 25px;
    }

    .why-nutiv-title {
        font-size: 32px;
    }

    .why-nutiv-description p {
        font-size: 14px;
    }

    .nutiv-stat {
        min-height: 100px;
        padding: 20px 0;
    }

    .nutiv-stat-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        font-size: 27px;
    }

    .nutiv-stat-text {
        padding-left: 15px;
        font-size: 15px;
    }

    .why-nutiv-stats
    .col-lg-6:last-child
    .nutiv-stat {
        border-bottom: 0;
    }
}


/* Solutions */

/* =========================================
   MAIN SECTION
========================================= */

.solutions-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================================
   DECORATIVE RIGHT SIDE
========================================= */

.solutions-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: -80px;
    width: 55%;
    height: 100%;
    background-image: url("../images/solutions-lines.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}


/* Keep content above decoration */

.solutions-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   LEFT CONTENT
========================================= */


.solutions-content h2 {
    margin: 0 0 25px;
    color: #111827;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;
}
.solutions-content h2 span {
    color: #006b7a;
}

.solutions-content p {
    max-width: 340px;

    margin: 0 0 45px;

    color: #163a57;

    font-size: 16px;
    line-height: 1.55;
}


/* =========================================
   KNOW MORE BUTTON
========================================= */

.solutions-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    min-width: 145px;

    padding: 9px 15px;

    border: 2px solid;
    border-color: #36aeca #ff9b55;

    border-radius: 30px;

    background: #fff;

    color: #173653;

    font-size: 14px;

    text-decoration: none;

    transition: all .3s ease;
}

.solutions-btn i {
    font-size: 12px;
}

.solutions-btn:hover {
    background: #00aabd;
    border-color: #00aabd;

    color: #fff;
}



/* =========================================
   STATISTICS GRID
========================================= */

.solutions-stats {
    position: relative;

    display: grid;

    grid-template-columns: repeat(2, 220px);

    gap: 20px;

    justify-content: center;
}


/* =========================================
   CARD
========================================= */

.solution-stat-card {
    position: relative;

    height: 145px;

    padding: 30px 25px;

    border-radius: 20px;

    overflow: hidden;

    display: flex;
    align-items: center;

    z-index: 2;
}


/* Card colors */

.card-one {
    background: #08b0d0;
}

.card-two {
    background: #11b099;
}

.card-three {
    background: #48ccdf;
}

.card-four {
    background: #08b0d0;
}


/* =========================================
   GEOMETRIC PATTERN
========================================= */

.solution-stat-card::after {
    content: "";

    position: absolute;

    right: -15px;
    bottom: -30px;

    width: 150px;
    height: 150px;

    opacity: .22;

    background-image:
        linear-gradient(30deg, transparent 45%, #fff 46%, #fff 48%, transparent 49%),
        linear-gradient(150deg, transparent 45%, #fff 46%, #fff 48%, transparent 49%),
        linear-gradient(90deg, transparent 45%, #fff 46%, #fff 48%, transparent 49%);

    background-size: 45px 45px;

    transform: rotate(30deg);

    pointer-events: none;
}


/* =========================================
   CARD CONTENT
========================================= */

.stat-abt-content {
    position: relative;
    z-index: 2;
}

.stat-abt-content strong {
    display: block;

    margin-bottom: 5px;

    color: #000;

    font-size: 40px;
    line-height: 1;

    font-weight: 600;
}

.stat-abt-content span {
    display: block;

    max-width: 170px;

    color: #000;

    font-size: 15px;
    line-height: 1.35;
}



@media (max-width: 1199px) {

    .solutions-content h2 {
        font-size: 36px;
    }

    .solutions-stats {
        grid-template-columns: repeat(2, 200px);
    }

    .solution-stat-card {
        height: 140px;
    }

    .stat-abt-content strong {
        font-size: 36px;
    }
}


@media (max-width: 991px) {

    .solutions-section {
        padding: 60px 0;
    }

    .solutions-section::after {
        opacity: .5;
        width: 50%;
    }

    .solutions-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .solution-stat-card {
        height: 140px;
    }
}


@media (max-width: 767px) {

    .solutions-section {
        padding: 50px 0;
    }

    .solutions-section::after {
        display: none;
    }

    .solutions-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .solutions-content h2 {
        font-size: 32px;
    }

    .solutions-content p {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .solutions-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .solution-stat-card {
        height: 130px;
        padding: 20px;
        border-radius: 16px;
    }

    .stat-abt-content strong {
        font-size: 30px;
    }

    .stat-abt-content span {
        font-size: 13px;
    }
}


@media (max-width: 480px) {

    .solutions-stats {
        grid-template-columns: 1fr 1fr;
    }

    .solution-stat-card {
        height: 125px;
        padding: 16px;
    }

    .stat-abt-content strong {
        font-size: 27px;
    }
}

.solutions-section::after {
    background-image: url("../images/about/bg-wave.png");
}





/* Logo Effect */
.logo-smoke {
    position: relative;
}
.header-inner::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse,
        rgba(255,255,255,0.40) 0%,
        rgba(255,255,255,0.40) 25%,
        rgba(255,255,255,0.40) 50%,
        rgba(255,255,255,0.40) 68%,
        transparent 80%
    );
    filter: blur(25px);
    z-index: 0;
}
.logo-smoke img {
    position: relative;
    z-index: 1;
    width: 300px;
    max-width: 80vw;
    height: auto;
}


/* Product Spec Table */

.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    margin: 0;
    font-size: 15px;
    color: #555;
}
.product-spec-table tr {
    border-bottom: 1px solid #fff;
}
.product-spec-table th,
.product-spec-table td {
    padding: 5px 10px;
    border: 0;
    text-align: left;
    vertical-align: middle;
    font-weight: 400;
}
.product-spec-table th {
    width: 35%;
    background: #eeeeee;
    color: #555;
}
.product-spec-table td {
    width: 65%;
    background: #f8f8f8;
    color: #555;
}
.product-spec-table th,
.product-spec-table td {
    height: 40px;
    padding: 8px 14px;
}

@media (max-width: 767px) {

    .product-spec-table {
        font-size: 14px;
    }

    .product-spec-table th {
        width: 35%;
    }

    .product-spec-table td {
        width: 65%;
    }

    .product-spec-table th,
    .product-spec-table td {
        padding: 9px 10px;
    }
}

/* Second column alternating background */
.product-spec-table tbody tr:nth-child(odd) td {
    background-color: #f6f6f6;
}

.product-spec-table tbody tr:nth-child(even) td {
    background-color: #fafafa;
}




/* =========================================
   SECTION
========================================= */

.health-category-section {
    width: 100%;
    background: #fff;
}

.health-category-slider {
    position: relative;
}


/* =========================================
   SWIPER
========================================= */

.healthCategorySwiper {
    width: 100%;
    overflow: hidden;
}

.healthCategorySwiper .swiper-wrapper {
    align-items: stretch;
}

.healthCategorySwiper .swiper-slide {
    height: auto;
}


/* =========================================
   CARD
========================================= */

.health-category-card {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 8px;

    background: #eee;
}


/* =========================================
   IMAGE
========================================= */

.category-card-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.health-category-card:hover .category-card-img {
    transform: scale(1.03);
}


/* =========================================
   TOP TITLE
========================================= */
.category-card-content {
    position: absolute;
    z-index: 2;
    padding: 35px 38px;
}
.category-card-content h3 {
    margin: 0;
    font-size: 24px;
    line-height: .95;
    font-weight: 700;
    color: #087d72;
    text-align: center;
}

/* Slide 2 */
.swiper-slide:nth-child(2)
.category-card-content h3 {
    color: #c9681f;
}
/* Slide 3 */
.swiper-slide:nth-child(3)
.category-card-content h3 {
    color: #007886;
}


/* Slide 4 */
.swiper-slide:nth-child(4)
.category-card-content h3 {
    color: #b51d43;
}


/* Slide 5 */
.swiper-slide:nth-child(5)
.category-card-content h3 {
    color: #087d72;
}


/* =========================================
   BOTTOM CONTENT
========================================= */

.category-bottom {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 16px;

    z-index: 3;

    min-height: 100px;

    padding: 14px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: rgba(255, 255, 255, .88);

    border-radius: 6px;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.category-bottom p {
    margin: 0 0 12px;

    color: #3e4148;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 400;
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.category-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 86px;

    padding: 9px 18px;

    border-radius: 25px;

    background: #202631;

    color: #fff;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: all .3s ease;
}

.category-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================
   BOTTOM CONTROLS
========================================= */

.category-slider-controls {
    position: relative;

    min-height: 45px;

    margin-top: 20px;
}


/* =========================================
   PAGINATION
========================================= */

.category-slider-controls .swiper-pagination {
    position: absolute;

    left: 0;
    right: auto;
    bottom: 0;

    width: auto;

    display: flex;
    align-items: center;

    gap: 8px;
}

.category-slider-controls
.swiper-pagination-bullet {
    width: 24px;
    height: 4px;

    margin: 0 !important;

    border-radius: 4px;

    background: #d2d4d7;

    opacity: 1;
}

.category-slider-controls
.swiper-pagination-bullet-active {
    width: 36px;
    background: #202631;
}


/* =========================================
   NAVIGATION
========================================= */
.category-navigation {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 35px;
}
.category-navigation button {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #202631;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}
.category-navigation button i {
    font-size: 20px;
}
.category-navigation button:hover {
    color: #000;
    transform: scale(1.15);
}


/* Why-Us */
.product-feature-card {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    overflow: hidden;
}

/* Green and Blue color layer */
.product-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1;
}

/* Odd = Green */
.row > .col-xl-4:nth-child(odd) .product-feature-card::before {
    background: linear-gradient(
        90deg,
        #078b76 0%,
        rgba(7, 139, 118, 0.95) 25%,
        rgba(7, 139, 118, 0.65) 50%,
        rgba(7, 139, 118, 0.20) 75%,
        rgba(7, 139, 118, 0) 100%
    );
}

/* Even = Blue */
.row > .col-xl-4:nth-child(even) .product-feature-card::before {
    background: linear-gradient(
        90deg,
        #07558c 0%,
        rgba(7, 85, 140, 0.95) 25%,
        rgba(7, 85, 140, 0.65) 50%,
        rgba(7, 85, 140, 0.20) 75%,
        rgba(7, 85, 140, 0) 100%
    );
}
.product-feature-card-content {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}
.product-feature-card-content h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}
.product-feature-card-content p {
    margin: 0 0 25px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .product-feature-card {
        height: 250px;
        border-radius: 20px;
    }
    .product-feature-card-content {
        left: 20px;
        right: 20px;
    }
    .product-feature-card-content h3 {
        font-size: 26px;
    }
    .product-feature-card-content p {
        font-size: 13px;
    }
}
.key-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}
.key-benefits li {
    position: relative;
    padding: 5px 0 5px 22px;
    //border-bottom: 1px solid #e5e5e5;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}
.key-benefits li::before {
    content: "\00BB";
    position: absolute;
    left: 0;
    top: 0px;
    color: #11a21b;
    font-size: 22px;
    font-weight: 700;
}
.key-benefits li:last-child {
    border-bottom: none;
}



/* Product Specification */
.product-spec-section {
    border-bottom: 1px solid #ddd;
}
.product-image {
    width: 100%;
    border: 2px solid #16777a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image img {
    display: block;
    width: auto;
    //max-width: 100%;
    height: auto;
    margin: 0 auto;
}


/* Buttons */
.product-buttons a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: #20252a;
    border-radius: 5px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}
.product-buttons a:hover {
    color: #fff;
    transform: translateY(-2px);
}
.product-buttons .btn-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.product-buttons a > span:last-child {
    padding: 0 12px;
}
.enquiry-btn .btn-icon {
    background: #0876c9;
}
.whatsapp-btn .btn-icon {
    background: #35b957;
}

/* Product Details */
.product-details {
    padding-top: 5px;
}
.product-details h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    color: #1d1d1d;
}
.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-features li {
    position: relative;
    padding: 7px 0 7px 40px;
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    font-weight: 600;
}
.product-features li::before {
    font-family:"Font Awesome 5 Free";
    content: "\f00c";
    position: absolute;
    left: 3px;
    top: 8px;
    width: 17px;
    height: 17px;
    border: 2px solid #222;
    border-radius: 3px;
    font-size: 12px;
    line-height: 13px;
    text-align: center;
    color: #111;
    font-weight: 700;
}





.upload-wrap { display:inline-block; min-width:320px; max-width:100%; font-family:system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; position:relative; }
.upload-input { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* dashed drop area */
.upload-label {
  display:block;
  box-sizing:border-box;
  border:2px dashed #9aa4b2;
  border-radius:12px;
  padding:12px 14px;
  min-height:72px;
  width:280px;
  background:#f8fafc;
  cursor:pointer;
  transition:border-color .15s, background .15s, box-shadow .15s;
}

/* inner layout */
.upload-inner { display:flex; align-items:center; gap:12px; position:relative; }
.upload-icon { font-size:20px; }
.upload-content { flex:1 1 auto; min-width:0; }
.file-name { font-size:14px; color:#0f172a; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.file-sub { font-size:12px; color:#64748b; margin-top:4px; }

/* clear button (appears when file selected) */
.clear-btn {
  border:0; background:rgba(0,0,0,0.6); color:#fff; width:28px; height:28px; border-radius:50%;
  display:inline-grid; place-items:center; cursor:pointer; font-size:13px; line-height:1;
  box-shadow:0 1px 0 rgba(0,0,0,0.12); margin-left:8px;
}
.clear-btn:focus { outline:2px solid #3b82f6; }

/* highlight on dragover */
.upload-wrap.is-dragover .upload-label { border-color:#3b82f6; background:#eef5ff; box-shadow:0 0 0 4px rgba(59,130,246,0.06) inset; }

/* helper text */
.upload-help { margin:8px 2px 0; font-size:12px; color:#64748b; }

/* small screens */
@media (max-width:480px) { .upload-wrap, .upload-label { width:100%; min-width:0; } }
