:root {
    --orange: #f15a00;
    --green: #0d6b3c;
    --dark: #171922;
    --text: #3c4150;
    --soft: #fff7ee;
    --border: #f0dfcf;
    --shadow: 0 18px 50px rgba(31, 24, 16, .10);
    --radius: 22px;
}

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

body {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--dark);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}



/* --- HERO SECTION --- */

.nutra-hero-v2-main {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-image: url('../images/slider/banner-1.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    background-color: #fff6ed;
}


.nutra-hero-v2-main:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            #fffcf8 0%,
            rgba(255, 246, 237, 0.8) 35%,
            rgba(255, 246, 237, 0) 65%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.3), transparent 40%);

    z-index: 1;
    pointer-events: none;
}

.nutra-hero-v2-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 110px;
    width: 100%;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 16px;
}

.nutra-hero-v2-content {
    max-width: 580px;
}

/* --- TYPOGRAPHY --- */
.nutra-hero-v2-title {
    font-size: 52px;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #141822;
}

.nutra-hero-v2-orange {
    color: #f15a00;
}

.nutra-hero-v2-small-line {
    display: block;
    font-size: 34px;
    letter-spacing: -.8px;
    margin-top: 8px;
    font-weight: 800;
}

.nutra-hero-v2-copy {
    max-width: 440px;
    color: #444a59;
    font-size: 16.5px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 32px;
}

/* --- ACTIONS & BUTTONS --- */
.nutra-hero-v2-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.nutra-hero-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nutra-hero-v2-btn i {
    font-size: 16px;
}

.nutra-hero-v2-btn-primary {
    background: #f15a00;
    color: #fff;
    box-shadow: 0 10px 20px rgba(241, 90, 0, 0.2);
}

.nutra-hero-v2-btn-primary:hover {
    background: #d44f00;
    transform: translateY(-2px);
}

.nutra-hero-v2-btn-light {
    background: #fff;
    border-color: #f0dfcf;
    color: #f15a00;
}

.nutra-hero-v2-btn-light:hover {
    background: #fff7ee;
    border-color: #f15a00;
}

.nutra-hero-v2-btn-outline {
    background: #fff;
    border-color: #b8d3c6;
    color: #141822;
}

.nutra-hero-v2-btn-outline:hover {
    background: #f4f9f7;
    border-color: #0d6b3c;
}

.nutra-hero-v2-btn svg {
    width: 18px;
    height: 18px;
}

/* --- BADGES SECTION --- */
.nutra-hero-v2-badges-wrap {
    position: relative;
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 0 20px;
    z-index: 10;
}

.nutra-hero-v2-badges {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.nutra-hero-v2-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.nutra-hero-v2-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #171922;
    line-height: 1.2;
}

.nutra-hero-v2-badge-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* --- IMPROVED RESPONSIVE QUERIES --- */

/* Tablet View */
@media (max-width: 1024px) {
    .nutra-hero-v2-main {
        background-position: center right -150px;
    }

    .nutra-hero-v2-inner {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }

    .nutra-hero-v2-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Mobile View (Corrected) */
@media (max-width: 767px) {
    .nutra-hero-v2-main {
        padding-top: 80px;
        background-position: bottom center;
        /* Image niche shift ho jayegi */
        background-size: 80%;
        min-height: auto;
        text-align: center;
    }

    .nutra-hero-v2-inner {
        padding-bottom: 100px;
    }

    .nutra-hero-v2-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .nutra-hero-v2-title {
        font-size: 32px;
    }

    .nutra-hero-v2-small-line {
        font-size: 20px;
    }

    .nutra-hero-v2-copy {
        margin: 0 auto 30px;
        font-size: 15px;
    }

    .nutra-hero-v2-actions {
        flex-wrap: wrap;
        /* Allows wrapping on small phones so icons don't break */
        justify-content: center;
    }

    .nutra-hero-v2-btn {
        width: 100%;
        /* Full width on mobile for better UX */
        max-width: 320px;
    }

    .nutra-hero-v2-badges-wrap {
        margin-top: -40px;
    }

    .nutra-hero-v2-badges {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row */
        gap: 25px 10px;
    }
}

@media (max-width: 480px) {
    .nutra-hero-v2-title {
        font-size: 28px;
    }

    .nutra-hero-v2-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ======== SOLUTIONS SECTION (EXACT IMAGE MATCH) ======== */
.solutions-section {
    width: 100%;
    padding: 40px 0 40px;
    background: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.section-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #171922;
    margin-bottom: 44px;
    letter-spacing: -1px;
}

/* Exact Match Brand Orange Accent */
.section-heading .accent {
    color: #f15a00;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sol-card {
    border: 1px solid #f0e6dc;
    border-radius: 16px;
    /* Soft curved geometry matching the banner cards */
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sol-card:hover {
    box-shadow: 0 14px 35px rgba(31, 24, 16, 0.08);
    transform: translateY(-4px);
}

/* Image wrapper matching placeholders to realistic photography bounds */
.sol-card-img-ph {
    width: 100%;
    height: 154px;
    /* Optimized premium aspect ratio box */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Image styling */
.science-new-nuta-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures the image fills the area without stretching */
    object-position: center;
    /* Keeps the product centered */
    display: block;
    transition: transform 0.5s ease;
    /* Adds a nice hover effect */
}

/* Optional: Hover effect to make it look premium */
.sol-card:hover .science-new-nuta-card-img {
    transform: scale(1.05);
}

/* Color palettes dynamically blended with image aesthetics */
.bg-fiber {
    background: linear-gradient(135deg, #f7ede2 0%, #ecd9c6 100%);
}

.bg-sweet {
    background: linear-gradient(135deg, #edf7f2 0%, #d6edd3 100%);
}

.bg-lipid {
    background: linear-gradient(135deg, #fffbe8 0%, #fff2be 100%);
}

.bg-emulsi {
    background: linear-gradient(135deg, #fff3e3 0%, #ffe4c4 100%);
}

.bg-protein {
    background: linear-gradient(135deg, #f4f0ea 0%, #e6ded4 100%);
}

.sol-card-img-ph svg {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.04));
}

.sol-body {
    padding: 22px 20px 24px;
}

.sol-body h3 {
    font-size: 16px;
    font-weight: 900;
    color: #00683b;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.sol-body p {
    font-size: 14px;
    color: #444a59;
    /* Soft dark reading slate color */
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 500;
}

.sol-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f15a00;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: gap 0.2s ease;
}

.sol-link span {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.sol-link:hover {
    text-decoration: none;
    gap: 9px;
}

/* ======== RESPONSIVE BREAKPOINTS FOR INGREDIENTS GRID ======== */
@media(max-width: 1024px) {
    .cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media(max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }

    .inner {
        padding: 0 20px;
    }

    .cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px) {
    .inner {
        padding: 0 20px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}






/* ======== APPLICATIONS SECTION ======== */
.apps-section {
    width: 100%;
    padding: 40px 0 60px;
    background-color: #ffffff;

    /* Yahan aapki single image aayegi jisme left aur right dono designs hain */
    background-image: url('../images/bg/apps-full-decoration.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    /* Ye image ko responsive banata hai */

    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.apps-section .inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.apps-section .section-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.apps-section .section-heading .accent {
    color: #f15a00;
}

/* Apps Grid */
.apps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
}

.app-item:hover {
    transform: translateY(-10px);
}

.app-icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fff;
    border-radius: 50%; */
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.05);  */
}

.app-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.app-item span {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    white-space: nowrap;
}

/* ======== RESPONSIVENESS ======== */

/* Tablet View */
@media(max-width: 1024px) {
    .apps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 items per row */
        gap: 40px 20px;
    }

    .apps-section {
        background-size: cover;
        /* Background fills area on smaller screens */
        padding: 60px 0;
    }
}

/* Mobile View */
@media(max-width: 767px) {
    .apps-section .section-heading {
        font-size: 28px;
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row */
        gap: 30px 10px;
    }

    .apps-section {
        background-position: bottom center;
        background-size: 150% auto;
        /* Background ko thoda bada rakha mobile par detail ke liye */
    }

    .app-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .app-icon-img {
        width: 35px;
        height: 35px;
    }
}

@media(max-width: 480px) {
    .apps-section {
        padding: 40px 0;
    }

    .apps-section .section-heading {
        font-size: 28px;
    }
}























/* Container Setup */
.science-new-nuta-banner {
    width: 100%;
    min-height: 300px;
    background-image: url('../images/bg/science-new-nuta-bg.jpeg');
    /* The pipette image */
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    /* Use your brand font here */
}

.science-new-nuta-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.science-new-nuta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content Styles */
.science-new-nuta-content {
    flex: 2;
    max-width: 400px;
}

.science-new-nuta-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.science-new-nuta-title span {
    color: #f36f21;
    /* Target orange color */
}

.science-new-nuta-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 400px;
}

.science-new-nuta-btn {
    display: inline-block;
    background-color: #f36f21;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.science-new-nuta-btn:hover {
    background-color: #d65a10;
}

/* Stats Cards Styles */
.science-new-nuta-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    flex: 2;
}

.science-new-nuta-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 140px;
}

.science-new-nuta-icon {
    color: #f38521d4;
    font-size: 28px;
    display: block;
}

.science-new-nuta-number {
    font-size: 28px;
    font-weight: 800;
    color: #f36f21;
    margin-bottom: 10px;
}

.science-new-nuta-label {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

/* --- Responsive Adjustments --- */

/* Tablet View */
@media (max-width: 1024px) {
    .science-new-nuta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .science-new-nuta-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .science-new-nuta-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .science-new-nuta-banner {
        background-position: top center;
        /* Shift BG for better focus on mobile */
    }

    .science-new-nuta-stats-grid {
        grid-template-columns: 1fr;
    }

    .science-new-nuta-title {
        font-size: 28px;
    }
}




.science-new-nuta-global {
    width: 100%;
    padding: 40px 0;
    background-color: #ffffff;
    background-image: url('../images/bg/nuta-global.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    /* Font family matched to high-end UI templates */
    /* border-bottom: 5px solid #f36f21; */
}

.science-new-nuta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.science-new-nuta-global-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Typography Tweaks */
.science-new-nuta-global-title {
    font-size: 34px;
    font-weight: 800;
    /* Extra bold for exact match */
    line-height: 1.1;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.science-new-nuta-global-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 300px;
}

/* Button with exact border-radius and color */
.science-new-nuta-outline-btn {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #f36f21;
    color: #f36f21;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Location Item Styling */
.science-new-nuta-loc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.science-new-nuta-loc-icon {
    color: #f36f21;
    font-size: 24px;
    /* Exact size of the pin in image */
    padding-top: 5px;
}

.science-new-nuta-loc-text strong {
    display: block;
    font-size: 17px;
    color: #000;
    font-weight: 700;
    margin-bottom: 4px;
}

.science-new-nuta-loc-text span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* Responsiveness */
@media (max-width: 991px) {
    .science-new-nuta-global-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .science-new-nuta-global-title {
        font-size: 28px;
    }

    .science-new-nuta-global-desc {
        max-width: 100%;
    }

    .science-new-nuta-loc-item {
        justify-content: center;
        text-align: left;
    }
}



.science-new-nuta-cta {
    width: 100%;
    /* Added your background image URL alongside the gradient */
    background: url('../images/bg/molecular-overlay.webp');
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    padding: 20px 0;
    position: relative;
    overflow: hidden;
}


.science-new-nuta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.science-new-nuta-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Text Styles */
.science-new-nuta-cta-text {
    flex: 1;
}

.science-new-nuta-cta-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.2px;
}

.science-new-nuta-cta-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    max-width: 400px;
}

/* Buttons Container */
.science-new-nuta-cta-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* White Button Style */
.science-new-nuta-btn-white {
    background-color: #ffffff;
    color: #f36f21;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.science-new-nuta-icon-right {
    border-left: 1px solid #f36f21;
    padding-left: 10px;
    margin-left: 5px;
    font-size: 18px;
}

/* Transparent/Outline Button Style */
.science-new-nuta-btn-transparent {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.science-new-nuta-btn-transparent:hover {
    background: rgba(255, 255, 255, 0.1);
}

.science-new-nuta-icon-left {
    font-size: 18px;
}

/* --- Responsiveness --- */
@media (max-width: 991px) {
    .science-new-nuta-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .science-new-nuta-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .science-new-nuta-btn-white,
    .science-new-nuta-btn-transparent {
        width: 100%;
        justify-content: center;
    }
}


/* Mobile responsive CTA */
@media (max-width: 767px) {

    .science-new-nuta-cta {
        padding: 45px 20px;
        text-align: center;
    }

    .science-new-nuta-cta-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        width: 100%;
    }

    .science-new-nuta-cta-text {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .science-new-nuta-cta-title {
        margin: 0 0 16px;
        font-size: 27px;
        line-height: 1.25;
        letter-spacing: -0.4px;
    }

    /* Allow the heading to wrap naturally on mobile */
    .science-new-nuta-cta-title br {
        display: none;
    }

    .science-new-nuta-cta-desc {
        max-width: 340px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.7;
    }

    .science-new-nuta-cta-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .science-new-nuta-btn-white,
    .science-new-nuta-btn-transparent {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 56px;
        padding: 14px 18px;
        margin: 0;
        border-radius: 12px;
        font-size: 15px;
        line-height: 1.2;
        text-align: center;
        box-sizing: border-box;
    }

    .science-new-nuta-btn-white i,
    .science-new-nuta-btn-transparent i {
        flex-shrink: 0;
    }

    .science-new-nuta-icon-left,
    .science-new-nuta-icon-right {
        margin: 0;
    }
}

/* Extra-small mobile */
@media (max-width: 380px) {

    .science-new-nuta-cta {
        padding: 38px 16px;
    }

    .science-new-nuta-cta-title {
        font-size: 24px;
    }

    .science-new-nuta-cta-desc {
        font-size: 14px;
    }

    .science-new-nuta-btn-white,
    .science-new-nuta-btn-transparent {
        min-height: 54px;
        font-size: 14px;
    }
}



/* --- BASE STYLES --- */
.science-new-nuta-footer {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 5px solid #f36f21;
}

.science-new-nuta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.science-new-nuta-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
}

/* --- COLUMN STYLING --- */
.science-new-nuta-footer-col {
    flex: 1;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Needed for the custom double border */
}

/* Logo Column (Single Border) */
.science-new-nuta-footer-col:nth-child(1) {
    padding-left: 0;
    border-right: 1px solid #eeeeee;
}

/* Quick Links Column (Double Border Logic) */
.science-new-nuta-footer-col:nth-child(2) {
    border-right: 1px solid #eeeeee;
    /* First Line */
}

/* Adding the gap and the second line using ::after */
.science-new-nuta-footer-col:nth-child(2)::after {
    content: "";
    position: absolute;
    right: -4px;
    /* Adjust this for the gap between || lines */
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #eeeeee;
    /* Second Line */
}

/* Resources Column (Ensuring spacing from the double lines) */
.science-new-nuta-footer-col:nth-child(3) {
    padding-left: 45px;
    /* Extra padding for clear gap from || */
    border-right: 1px solid #eeeeee;
    /* Single line before social col */
}

/* Social Column (Right Aligned) */
.science-new-nuta-footer-col:last-child {
    border-right: none;
    padding-right: 0;
    align-items: flex-end;
    text-align: right;
}

/* --- CONTENT STYLING --- */
.science-new-nuta-footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.science-new-nuta-tagline {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.science-new-nuta-footer-heading {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    white-space: nowrap;
}

.science-new-nuta-link-grid {
    display: flex;
    gap: 30px;
}

.science-new-nuta-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.science-new-nuta-footer-links li {
    margin-bottom: 0px;
}

.science-new-nuta-footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.science-new-nuta-footer-links a:hover {
    color: #f36f21;
}

/* --- SOCIAL & LEGAL --- */
.science-new-nuta-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.science-new-nuta-social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s ease;
}

.science-new-nuta-social-icons a:hover {
    border-color: #f36f21;
    color: #f36f21;
}

.science-new-nuta-legal-links {
    font-size: 11px;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

.science-new-nuta-legal-links a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
}

.science-new-nuta-copyright {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.science-new-nuta-show-mobile {
    display: none;
}

/* --- FULL RESPONSIVE QUERIES --- */

@media (max-width: 1024px) {
    .science-new-nuta-footer-main {
        flex-wrap: wrap;
    }

    .science-new-nuta-footer-col {
        flex: 0 0 50%;
        border-right: none !important;
        padding: 20px;
        box-sizing: border-box;
    }

    .science-new-nuta-footer-col::after {
        display: none;
    }

    /* Hide double line on tablet */

    .science-new-nuta-footer-col:nth-child(odd) {
        border-right: 1px solid #eeeeee !important;
    }

    .science-new-nuta-footer-col:last-child {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .science-new-nuta-footer-col {
        flex: 0 0 100%;
        border-right: none !important;
        text-align: center;
        align-items: center !important;
        padding: 20px 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .science-new-nuta-footer-col:last-child {
        border-bottom: none;
    }

    .science-new-nuta-link-grid {
        justify-content: center;
    }

    .science-new-nuta-social-icons {
        justify-content: center;
    }

    .science-new-nuta-legal-links {
        justify-content: center;
    }

    .science-new-nuta-hide-mobile {
        display: none;
    }

    .science-new-nuta-show-mobile {
        display: block;
    }

    /* Resources Column (Ensuring spacing from the double lines) */
    .science-new-nuta-footer-col:nth-child(3) {
        padding-left: 5px;
    }
}






/* ______________________________________________________ */







.nutra-v3-about {
    padding: 40px 0;
    background: linear-gradient(180deg, #fff 0%, #fffbf8 100%);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

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

.nutra-v3-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    align-items: center;
}

/* --- Image Side: Overlapping Design --- */
.nutra-v3-image-side {
    position: relative;
    padding-right: 40px;
}

.nutra-v3-main-img {
    position: relative;
    border-radius: 40px 100px 40px 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(241, 90, 0, 0.1);
}

.nutra-v3-main-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.nutra-v3-stats-card {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #f15a00;
    padding: 30px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(241, 90, 0, 0.3);
    text-align: center;
    min-width: 160px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.nutra-v3-stat-num {
    display: block;
    font-size: 38px;
    font-weight: 800;
}

.nutra-v3-stat-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

/* --- Content Side --- */
.nutra-v3-kicker {
    color: #f15a00;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
}

.nutra-v3-title {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #141822;
    margin-top: 10px;
}

.nutra-v3-accent {
    color: #f15a00;
    /* background: linear-gradient(120deg, rgba(241, 90, 0, 0.1) 0%, rgba(241, 90, 0, 0.1) 100%);
    padding: 0 10px; */
}

.nutra-v3-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #444a59;
    margin: 20px 0;
}

/* --- Interactive Features --- */
.nutra-v3-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
}

.nutra-v3-feature-item {
    padding: 10px 0;
    border-left: 0px solid #f15a00;
    transition: 0.3s;
}

.nutra-v3-feature-line {
    width: 40px;
    height: 4px;
    background: #f15a00;
    border-radius: 2px;
    margin-bottom: 10px;
}

.nutra-v3-feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #141822;
    margin-bottom: 5px;
}

.nutra-v3-feature-item p {
    font-size: 14px;
    color: #666;
}

/* --- Actions --- */
.nutra-v3-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nutra-v3-btn-main {
    background: #f1610c;
    color: #fff;
    padding: 16px 35px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}


.nutra-v3-btn-outline-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #141822;
    font-weight: 700;
    cursor: pointer;
}

.nutra-v3-btn-outline-wrap i {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f15a00;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .nutra-v3-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nutra-v3-title {
        font-size: 28px;
    }

    .nutra-v3-image-side {
        padding-right: 0;
    }
}







.nutra-dl-banner {
    width: 100%;
    padding: 60px 0;
    background-color: #fffcf8;
}

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

.nutra-dl-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Left Section */
.nutra-dl-content {
    flex: 0 0 35%;
}

.nutra-dl-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #141822;
    margin-bottom: 20px;
}

.nutra-dl-title span {
    color: #f15a00;
}

.nutra-dl-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.nutra-dl-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f15a00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.nutra-dl-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 90, 0, 0.2);
}

/* Right Grid Section (4 boxes in one row) */
.nutra-dl-grid {
    flex: 0 0 60%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    /* Matching the tight spacing of your banner */
}

.nutra-dl-card {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.nutra-dl-card:hover {
    border-color: #f15a00;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.nutra-dl-icon {
    color: #f38521d4;
    font-size: 26px;
    margin-bottom: 12px;
}

.nutra-dl-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 12px;
    min-height: 32px;
}

.nutra-dl-link {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #f15a00;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nutra-dl-link:hover {
    gap: 7px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nutra-dl-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .nutra-dl-content {
        flex: 0 0 100%;
    }

    .nutra-dl-grid {
        flex: 0 0 100%;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media (max-width: 600px) {

    /* Target the parent container of the cards */
    .nutra-dl-grid {
        display: grid;
        /* This forces exactly 2 columns of equal width */
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        /* Adjust spacing between cards */
        padding: 10px;
    }

    .nutra-dl-card {
        padding: 15px 10px;
        /* Reduced padding slightly to fit 2 cards better */
        width: 100%;
        /* Ensure it fills its half of the grid */
    }

    /* Optional: Adjust font size for mobile if text is too long */
    .nutra-dl-card h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* .nutra-dl-grid {
        grid-template-columns: 1fr;
    } */

    .nutra-dl-title {
        font-size: 28px;
    }
}













.nai-why-section {
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 45%, #ffffff 100%);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.nai-why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.nai-why-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 52px;
}

.nai-why-heading span {
    display: inline-block;
    color: #ef5b00;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.nai-why-heading h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #171922;
    margin-bottom: 44px;
    letter-spacing: -1px;
}

.nai-why-heading h2 strong {
    color: #ef5b00;
    font-weight: 800;
}

.nai-why-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.nai-why-grid {
    display: flex;
    /* Changed from grid to flex */
    flex-wrap: wrap;
    /* Allows cards to move to the next line */
    gap: 24px;
    justify-content: center;
    /* This is the magic: it centers the items in every row */
    max-width: 1200px;
    margin: 0 auto;
}

.nai-why-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 115, 60, 0.12);
    border-radius: 24px;
    padding: 38px 26px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    flex: 0 1 calc(25% - 24px);
    box-sizing: border-box;
}

.nai-why-card::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -42px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: rgba(8, 115, 60, 0.08);
    transition: all 0.35s ease;
}

.nai-why-card-orange::before {
    background: rgba(239, 91, 0, 0.08);
}

.nai-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
    border-color: rgba(239, 91, 0, 0.28);
}

.nai-why-card:hover::before {
    width: 155px;
    height: 155px;
}

.nai-why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #eef8ec;
    color: #08733c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 2;
}

.nai-why-card-orange .nai-why-icon {
    background: #fff0e6;
    color: #ef5b00;
}

.nai-why-card h3 {
    font-size: 18px;
    line-height: 1.3;
    color: #08733c;
    font-weight: 800;
    margin: 0 0 16px;
    position: relative;
    z-index: 2;
}

.nai-why-card-orange h3 {
    color: #ef5b00;
}

.nai-why-card h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: #08733c;
    margin: 14px auto 0;
    border-radius: 20px;
}

.nai-why-card-orange h3::after {
    background: #ef5b00;
}

.nai-why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    position: relative;
    z-index: 2;
}

.nai-why-center-card {
    grid-column: 2 / span 2;
}

.nai-why-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.nai-why-bg-left {
    width: 280px;
    height: 280px;
    left: -100px;
    bottom: 40px;
    background: radial-gradient(circle, rgba(8, 115, 60, 0.16), rgba(8, 115, 60, 0));
}

.nai-why-bg-right {
    width: 340px;
    height: 340px;
    right: -120px;
    top: 70px;
    background: radial-gradient(circle, rgba(239, 91, 0, 0.18), rgba(239, 91, 0, 0));
}

@media (max-width: 1100px) {
    .nai-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nai-why-card {
        flex: 0 1 calc(50% - 24px);
        /* 2 cards per row on tablets */
    }

    .nai-why-center-card {
        grid-column: auto;
    }

    .nai-why-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .nai-why-section {
        padding: 60px 16px;
    }

    .nai-why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .nai-why-heading {
        margin-bottom: 36px;
    }

    .nai-why-heading h2 {
        font-size: 28px;
    }

    .nai-why-heading p {
        font-size: 15px;
    }

    .nai-why-card {
        padding: 30px 22px;
        border-radius: 20px;
        flex: 0 1 100%;
        /* 1 card per row on mobile */
    }

    .nai-why-icon {
        width: 78px;
        height: 78px;
        font-size: 32px;
    }

    .nai-why-card h3 {
        font-size: 20px;
    }
}




.nai-ind-section {
    position: relative;
    padding: 40px 20px 45px;
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 45%, #fff8f1 100%);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.nai-ind-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nai-ind-heading {
    text-align: center;
    margin-bottom: 48px;
}

.nai-ind-heading span {
    display: inline-block;
    background: #ef5b00;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 9px 28px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(239, 91, 0, 0.25);
}

.nai-ind-heading h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #171922;
    margin-bottom: 44px;
    letter-spacing: -1px;
}

.nai-ind-heading h2 strong {
    color: #ef5b00;
    font-weight: 900;
}

.nai-ind-heading p {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.nai-ind-title-icon {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.nai-ind-title-icon span {
    display: block;
    width: 62px;
    height: 1px;
    background: #ef5b00;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.nai-ind-title-icon i {
    font-size: 26px;
    color: #08733c;
}

.nai-ind-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    /* grid-template-columns: repeat(8, 1fr); */
    gap: 12px;
}

.nai-ind-card {
    background: #ffffff;
    border: 1px solid rgba(239, 91, 0, 0.15);
    border-radius: 16px;
    padding: 8px 8px 22px;
    text-align: center;
    min-height: 250px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.nai-ind-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
    border-color: rgba(239, 91, 0, 0.35);
}

.nai-ind-img {
    width: 100%;
    height: 165px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff4ea;
    margin-bottom: 18px;
}

.nai-ind-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.nai-ind-card:hover .nai-ind-img img {
    transform: scale(1.08);
}

.nai-ind-card h3 {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.25;
    color: #111827;
    font-weight: 800;
    margin: 0;
}

.nai-ind-line {
    width: 32px;
    height: 2px;
    background: #ef5b00;
    border-radius: 20px;
    margin: 14px auto 14px;
}

.nai-ind-mini-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto;
    border-radius: 50%;
    background: #eef8ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #08733c;
    font-size: 16px;
}

.nai-ind-bg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.nai-ind-bg-left {
    width: 300px;
    height: 300px;
    left: -120px;
    top: 80px;
    background: radial-gradient(circle, rgba(239, 91, 0, 0.15), rgba(239, 91, 0, 0));
    border-radius: 50%;
}

.nai-ind-bg-right {
    width: 360px;
    height: 360px;
    right: -150px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(8, 115, 60, 0.12), rgba(8, 115, 60, 0));
    border-radius: 50%;
}

/* Below 1200px - 4 cards per row */
@media (max-width: 1200px) {
    .nai-ind-container {
        max-width: 100%;
    }

    .nai-ind-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .nai-ind-card {
        min-height: 350px;
        padding: 10px 10px 26px;
    }

    .nai-ind-img {
        height: 200px;
    }

    .nai-ind-card h3 {
        font-size: 20px;
        min-height: 52px;
    }

    .nai-ind-line {
        width: 36px;
        height: 3px;
        margin: 16px auto;
    }

    .nai-ind-mini-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .nai-ind-section {
        padding: 70px 18px;
    }

    .nai-ind-heading h2 {
        font-size: 28px;
    }

    .nai-ind-heading p {
        font-size: 17px;
    }

    .nai-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nai-ind-card {
        min-height: 360px;
    }

    .nai-ind-img {
        height: 220px;
    }
}


@media (max-width: 768px) {
    .nai-ind-section {
        padding: 50px 0 60px 15px;
        /* Added padding-left to see the first card offset slightly */
    }

    .nai-ind-container {
        overflow: hidden;
        /* Keeps the section tidy */
    }

    .nai-ind-grid {
        display: flex;
        /* Change grid to flex for sliding */
        overflow-x: auto;
        /* Enables horizontal scroll */
        scroll-snap-type: x mandatory;
        /* Makes sliding feel "snappy" and premium */
        gap: 16px;
        padding-right: 20px;
        /* Space at the end of the scroll */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
    }

    /* Hide scrollbar for a cleaner look while keeping functionality */
    .nai-ind-grid::-webkit-scrollbar {
        height: 4px;
    }

    .nai-ind-grid::-webkit-scrollbar-thumb {
        background: #ef5b00;
        border-radius: 10px;
    }

    .nai-ind-card {
        min-width: 260px;
        /* Fixed width for cards on mobile to force overflow */
        flex-shrink: 0;
        /* Prevents cards from squishing */
        scroll-snap-align: start;
        /* Alignment for the snap effect */
        min-height: auto;
        /* Let content dictate height on mobile */
        margin-bottom: 10px;
        /* Space for the hover shadow */
    }

    .nai-ind-img {
        height: 180px;
        /* Consistent image height on mobile */
    }

    .nai-ind-heading {
        padding-right: 15px;
        /* Align heading with the grid padding */
    }
}

/* Mobile */
/* @media (max-width: 575px) {
    .nai-ind-section {
        padding: 60px 14px;
    }

    .nai-ind-heading {
        margin-bottom: 35px;
    }

    .nai-ind-heading span {
        font-size: 13px;
        padding: 8px 22px;
        margin-bottom: 20px;
    }

    .nai-ind-heading h2 {
        font-size: 34px;
    }

    .nai-ind-heading p {
        font-size: 15px;
    }

    .nai-ind-title-icon {
        margin-top: 20px;
        gap: 12px;
    }

    .nai-ind-title-icon span {
        width: 45px;
    }

    .nai-ind-title-icon i {
        font-size: 24px;
    }

    .nai-ind-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
    }

    .nai-ind-grid::-webkit-scrollbar {
        height: 5px;
    }

    .nai-ind-grid::-webkit-scrollbar-track {
        background: #fff4ea;
        border-radius: 30px;
    }

    .nai-ind-grid::-webkit-scrollbar-thumb {
        background: #ef5b00;
        border-radius: 30px;
    }

    .nai-ind-card {
        min-width: 235px;
        min-height: 355px;
        scroll-snap-align: start;
    }

    .nai-ind-img {
        height: 195px;
    }

    .nai-ind-card h3 {
        font-size: 20px;
    }
} */

/* ==========================================================================
   HERO IMAGE SLIDER (SWIPER)
   ========================================================================== */
.myHeroSwiper picture {
    width: 100%;
    display: block;
}

.myHeroSwiper .hero-slide-img {
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-link picture,
.hero-slide-link img {
  display: block;
  width: 100%;
}
/* Mobile View */
@media (max-width: 767px) {
    
    .myHeroSwiper .swiper-slide {
        align-items: flex-start;
    }

    .myHeroSwiper .hero-slide-img {
        padding-top:0px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .myHeroSwiper .swiper-pagination {
        bottom: 12px !important;
    }

    .myHeroSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .myHeroSwiper .swiper-pagination-bullet-active {
        width: 22px;
    }
}

/* new css from 6-15-26 */

.nutra-slider-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fcf9 0%, #fff7ef 100%);
    overflow: hidden;
}

.nutra-slider-container {
    max-width: 1180px;
    margin: 0 auto;
}

.nutra-slider-head {
    text-align: center;
    margin-bottom: 34px;
}

.nutra-slider-head span {
    display: inline-block;
    color: #ff5a00;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.nutra-slider-head h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
    color: #073d23;
    font-weight: 800;
}

.nutra-slider-wrapper {
    position: relative;
}

.nutra-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 6px 24px;
    scrollbar-width: none;
}

.nutra-slider-track::-webkit-scrollbar {
    display: none;
}

.nutra-slide-card {
    min-width: 300px;
    max-width: 300px;
    min-height: 245px;
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(0, 128, 61, 0.12);
    box-shadow: 0 14px 35px rgba(20, 45, 30, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.nutra-slide-card::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.12;
}

.nutra-slide-card.green::before {
    background: #00823d;
}

.nutra-slide-card.orange::before {
    background: #ff5a00;
}

.nutra-slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(20, 45, 30, 0.14);
}

.nutra-slide-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.nutra-slide-card.green .nutra-slide-icon {
    background: #e8f6ee;
    color: #00823d;
}

.nutra-slide-card.orange .nutra-slide-icon {
    background: #fff0e5;
    color: #ff5a00;
}

.nutra-slide-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
    color: #073d23;
}

.nutra-slide-card.green h3 {
    color: #00823d;
}

.nutra-slide-card.orange h3 {
    color: #ff5a00;
}

.nutra-slide-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #526159;
}

.nutra-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #00823d;
    box-shadow: 0 10px 28px rgba(20, 45, 30, 0.16);
    cursor: pointer;
    z-index: 3;
    transition: 0.3s ease;
}

.nutra-slide-btn:hover {
    background: #00823d;
    color: #ffffff;
}

.nutra-slide-btn.prev {
    left: -20px;
}

.nutra-slide-btn.next {
    right: -20px;
}

/* Mobile */
@media (max-width: 767px) {
    .nutra-slider-section {
        padding: 45px 15px;
    }

    .nutra-slider-head h2 {
        font-size: 24px;
    }

    .nutra-slide-card {
        min-width: 260px;
        max-width: 260px;
        padding: 24px 20px;
        min-height: 230px;
    }

    .nutra-slide-btn {
        display: none;
    }

    .nutra-hero-v2-slider-section {
        width: 100%;
        overflow: hidden;
    }

    .myHeroSwiper,
    .myHeroSwiper .swiper-wrapper,
    .myHeroSwiper .swiper-slide {
        width: 100%;
    }

    .hero-slide-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Optional: fixed mobile height */
    @media (max-width: 767px) {
        .hero-slide-img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}





    /* =====================================
   Nutra Agri Static Support Cards
===================================== */

.nutra-support-grid {
    width: 100%;
    max-width: 1180px;
    margin: 42px auto 0;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.nutra-support-card {
    position: relative;
    min-width: 0;
    min-height: 255px;
    padding: 28px 25px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #dbe8e1;
    border-radius: 22px;
    text-align: center;

    box-shadow: 0 14px 32px rgba(0, 77, 51, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.nutra-support-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 42px rgba(0, 77, 51, 0.13);
}

.nutra-support-decoration {
    position: absolute;
    top: -42px;
    right: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;
}

.nutra-support-card.green-card .nutra-support-decoration {
    background: #dcefe5;
}

.nutra-support-card.orange-card .nutra-support-decoration {
    background: #ffeadf;
}

.nutra-support-icon {
    position: relative;
    z-index: 1;

    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.nutra-support-card.green-card .nutra-support-icon {
    color: #008b4a;
    background: #e5f4ec;
}

.nutra-support-card.orange-card .nutra-support-icon {
    color: #ff5c0a;
    background: #fff0e8;
}

.nutra-support-card h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 14px;
    color: #00733f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.nutra-support-card.orange-card h3 {
    color: #f45b16;
}

.nutra-support-card p {
    position: relative;
    z-index: 1;

    margin: 0;
    color: #404040;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

/* Tablet */
@media only screen and (max-width: 991px) {
    .nutra-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media only screen and (max-width: 575px) {
    .nutra-support-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
        padding: 0 15px;
    }

    .nutra-support-card {
        min-height: 230px;
        padding: 25px 20px;
    }

    .nutra-support-card h3 {
        font-size: 17px;
    }

    .nutra-support-card p {
        font-size: 14px;
    }
}

    .nutra-hero-v2-slider-section {
        position: relative;
        width: 100%;
        padding-bottom: 65px;
        background: #ffffff;
    }

    .myHeroSwiper {
        width: 100%;
    }

    .hero-slide-link,
    .hero-slide-link picture {
        display: block;
        width: 100%;
    }

    .hero-slide-img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Navigation below banner */
    .nutra-hero-navigation {
        position: absolute;
        left: 50%;
        bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transform: translateX(-50%);
        z-index: 20;
    }

    .nutra-hero-prev,
    .nutra-hero-next {
        position: static;
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        color: #087643;
        border: 2px solid #087643;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(8, 118, 67, 0.18);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nutra-hero-prev span,
    .nutra-hero-next span {
        display: block;
        margin-top: -3px;
        font-family: Arial, sans-serif;
        font-size: 30px;
        font-weight: 400;
        line-height: 1;
    }

    .nutra-hero-prev:hover,
    .nutra-hero-next:hover {
        color: #ffffff;
        background: #f26522;
        border-color: #f26522;
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .nutra-hero-v2-slider-section {
            padding-bottom: 15px;
        }

        .nutra-hero-navigation {
            bottom: 8px;
            gap: 8px;
        }

        .nutra-hero-prev,
        .nutra-hero-next {
            width: auto;
            height: 25px;
            min-width: 25px;
        }

        .nutra-hero-prev span,
        .nutra-hero-next span {
            font-size: 26px;
        }
    }





