/* ============================================================
   SUNRISE MILK — MASTER STYLESHEET
   Organized: Section-wise + Responsive-wise
   ============================================================ */


/* ============================================================
   1. RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-dark: #2d5a27;
    --green-mid: #3d7a35;
    --green-light: #5a9e4f;
    --cream: #f9f5ed;
    --cream-dark: #f0e8d5;
    --text-dark: #1e2e1a;
    --text-body: #4a5a44;
    --gold: #c8973a;
    --white: #ffffff;
    --nav: rgba(0, 0, 0, 0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream-dark);
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}
ol, ul {
    padding-left: 2rem !important;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}
a {
    text-decoration: none;
}

/* ============================================================
   2. NAVBAR
   ============================================================ */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

nav.scrolled {
    background: var(--cream);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-svg {
    width: 48px;
    height: 48px;
}

.logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.1;
}

.logo-text span {
    font-size: 11px;
    color: var(--text-body);
    letter-spacing: 0.5px;
}

/* --- Nav Links --- */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--green-dark);
}

/* --- Nav Button --- */
.btn-order-link {
    text-decoration: none !important;
}

.btn-order-nav {
    background: var(--green-dark);
    color: var(--white) !important;
    border: none;
    padding: 10px 22px !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-order-nav:hover {
    background: var(--green-mid);
}

/* --- Dropdown --- */
.nav-dropdown {
    position: relative;
    list-style: none;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown>a i {
    font-size: 12px;
    transition: 0.3s;
}

/* Rotate icon on hover */
.nav-dropdown:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu-custom {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.35s ease;
    z-index: 999;
}

/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    list-style: none;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 12px 20px;
    color: #1e2e1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

/* Dropdown item hover */
.dropdown-menu-custom li a:hover {
    background: #f4f8f2;
    color: #2d5a27;
    padding-left: 28px;
}

/* --- Mobile Menu Toggle Icon --- */
.menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(45, 90, 39, 0.16);
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-dark);
    font-size: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    line-height: 1;
    z-index: 1001;
}

.menu-toggle i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
}

/* --- Mobile Contact Button (hidden on desktop) --- */
.mobile-contact-btn {
    display: none;
}


/* ============================================================
preloader   
============================================================ */
/* Preloader */
.preloader{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #0c5b35;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    transition: background 0.8s ease, opacity 0.8s ease;
}

/* Hide */
.preloader.hide{
    opacity: 0;
    visibility: hidden;
}

/* Wrapper */
.loader-wrapper{
    position: relative;
    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Images */
.loader-img{
    position: absolute;

    width: 120px;

    opacity: 0;

    transform: scale(0.3);

    transition: all 0.8s ease;
}

/* Active State */
.loader-img.active{
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
/* Previous Image Zoom Out */
.loader-img.zoom-out{
    opacity: 0;
    transform: scale(1.8);
    z-index: 1;
}
/* Optional Rotation Circle */
.loader-wrapper::before{
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;

    border-radius: 50%;

    animation: rotateLoader 2s linear infinite;
}

@keyframes rotateLoader{

    100%{
        transform: rotate(360deg);
    }

}

/* breadcrumb section */
/* =========================
   DAIRY BREADCRUMB
========================= */

.dairy-breadcrumb-section {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #f7f4ee;
}

.dairy-breadcrumb-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dairy-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(247, 244, 238, 0.95) 20%,
            rgba(247, 244, 238, 0.75) 45%,
            rgba(247, 244, 238, 0.15) 100%);
}

.dairy-breadcrumb-wrapper {
     position: relative;
    z-index: 5;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.dairy-breadcrumb-path {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.12;
    margin-bottom: 14px;
    display: inline-block;
}

.dairy-breadcrumb-path a {
    text-decoration: none;
    color: var(--text-dark);
}

.dairy-breadcrumb-path a:hover {
    color: #588157;
}

.dairy-breadcrumb-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    line-height: 0;
}

.dairy-breadcrumb-wave svg {
    width: 100%;
    height: 70px;
    display: block;
}

.dairy-breadcrumb-wave path {
    fill: #f7f4ee;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .dairy-breadcrumb-section {
        height: 340px;
    }

    .dairy-breadcrumb-wrapper h1 {
        font-size: 42px;
    }

}

@media (max-width: 767px) {

    .dairy-breadcrumb-section {
        height: 380px;
    }

    .dairy-breadcrumb-wrapper h1 {
        font-size: 34px;
    }

    .dairy-breadcrumb-wrapper p {
        font-size: 14px;
    }

    .dairy-btn-fill,
    .dairy-btn-outline {
        width: 100%;
        justify-content: center;
    }

}




/* ============================================================
   3. HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(249, 245, 237, 0.97) 0%,
            rgba(249, 245, 237, 0.90) 45%,
            rgba(249, 245, 237, 0.4) 70%,
            transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 80px 60px 60px;
    max-width: 1000px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.12;
    margin-bottom: 14px;
}

.hero-content h1 span a {
    text-decoration: none;
    color: var(--text-dark);
}


.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* --- Hero Buttons --- */
.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    border: none;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
    padding: 11px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--green-dark);
    color: var(--white);
}


/* ============================================================
   4. FEATURES STRIP (inside Hero)
   ============================================================ */

.features-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 60px 60px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    z-index: 5;
}

/* Top wave decoration */
.top-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
}

.top-wave svg {
    width: 100%;
    height: 100%;
    transform: scaleY(-1);
}

.top-wave path {
    fill: var(--cream);
}

/* Next section spacing to avoid overlap with features strip */
.next-section {
    margin-top: 120px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green-dark);
    background: #eaf4e6;
    border-radius: 50%;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   5. OUR FARM SECTION
   ============================================================ */

.our-farm {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 450px;
    padding-right: 0%;
    padding-left: 50%;
    background: url('sunrise our farm.png') center/cover no-repeat;
}

.farm-img-side {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.farm-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farm-content-side {
    /* padding: 70px 60px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Reusable section label */
.section-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--green-mid);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.farm-content-side h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.farm-content-side p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 30px;
}

/* --- Farm Tabs (image buttons on left side) --- */
.farm-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.farm-tab-btn {
    position: relative;
    border: none;
    padding: 0;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: none;
}

.farm-tab-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.farm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(228, 183, 62, 0.82);
}

.farm-overlay.dark {
    background: rgba(0, 0, 0, 0.65);
}

.farm-btn-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
    padding-right: 15px;
}

/* Active tab — golden overlay */
.farm-tab-btn.active .farm-overlay {
    background: rgba(228, 183, 62, 0.82);
}

/* Inactive tab — dark overlay */
.farm-tab-btn:not(.active) .farm-overlay {
    background: rgba(0, 0, 0, 0.70);
}

/* Arrow indicator on active tab text */
.farm-tab-btn.active .farm-btn-text::after {
    content: " →";
    margin-left: 6px;
}

/* --- Farm Content (right side tab content) --- */
.farm-content {
    display: none;
    animation: fade 0.4s ease;
}

.farm-content.active {
    display: block;
}

.farm-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 28px;
}

.farm-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #6c6c6c;
    margin-bottom: 18px;
}

/* Fade animation for tab content */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   6. PROCESS SECTION
   ============================================================ */

.process-section {
    background: var(--white);
    padding: 60px;
    text-align: center;
}

.bg-color-process {
    background-color: var(--cream);
}

/* Reusable section title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.step-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid #dde8db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--green-dark);
    background: #f4fbf2;
    position: relative;
}

.step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 26px;
    height: 26px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    font-size: 18px;
    color: var(--green-light);
    margin-top: 30px;
    padding: 0 8px;
}

.process-step h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.process-step p {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.6;
    text-align: center;
}


/* ============================================================
   7. GALLERY SECTION
   ============================================================ */

.gallery-section {
    background: var(--cream);
    padding: 60px;
    text-align: center;
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-img:hover img {
    transform: scale(1.06);
}

/* --- Cow Gallery (separate full-width gallery) --- */
.cow-gallery-section {
    width: 100%;
    padding: 40px 0;
}

.gallery-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.gallery-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-image-box:hover img {
    transform: scale(1.08);
}

.gallery-image-box:hover {
    transform: translateY(-5px);
}


/* ============================================================
   8. PRODUCTS SECTION
   ============================================================ */

.products-section {
    background: var(--white);
    padding: 70px 60px;
    text-align: center;
}

.products-section .section-label {
    display: block;
    margin-bottom: 8px;
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 44px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 20px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.25s, transform 0.2s;
    background: var(--white);
}

.product-card:hover {
    box-shadow: 0 10px 32px rgba(45, 90, 39, 0.14);
    transform: translateY(-3px);
}

.product-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-info {
    padding: 16px 16px 18px;
}

.product-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.product-info span {
    font-size: 12px;
    color: var(--text-body);
    display: block;
    margin-bottom: 12px;
}

/* Small order button on product cards */
.btn-order-sm {
    width: 100%;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-order-sm:hover {
    background: var(--green-mid);
}

/* --- Sunrise Product Cards (detailed product pages) --- */
.sunrise-product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: 0.35s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sunrise-product-card:hover {
    transform: translateY(-6px);
}

.sunrise-product-image {
    height: 260px;
    overflow: hidden;
}

.sunrise-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.sunrise-product-card:hover img {
    transform: scale(1.05);
}

.sunrise-product-content {
    padding: 28px;
}

.sunrise-product-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #f1df8a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sunrise-product-icon i {
    font-size: 24px;
    color: var(--green-dark);
}

.sunrise-product-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.sunrise-product-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
}

/* Learn more link on product cards */
.sunrise-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
    transition: 0.3s;
}

.sunrise-product-btn i {
    font-size: 14px;
    transition: 0.3s;
}

.sunrise-product-btn:hover i {
    transform: translateX(5px);
}

/* --- Products Difference Box --- */
.products-difference-box {
    background: var(--cream);
    border-radius: 28px;
    padding: 50px;
    margin-top: 70px;
}

.products-difference-box h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
}

.difference-item {
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    gap: 18px;
    transition: 0.3s;
    /* text-align: left; */
}

.difference-item:hover {
    transform: translateY(-5px);
}

.difference-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1df8a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.difference-icon i {
    font-size: 28px;
    color: var(--green-dark);
}

.difference-item h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.difference-item p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
}

/* --- Other Products (small box links) --- */
.other-products-wrapper {
    margin-top: 50px;
}

.other-product-box {
    background: #fff;
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: 0.35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.other-product-box:hover {
    transform: translateY(-4px);
}

.other-product-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f5ee;
}

.other-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.other-product-box:hover img {
    transform: scale(1.08);
}

.other-product-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}


/* ============================================================
   9. COUNTER / ODOMETER SECTION
   ============================================================ */

.odometer {
    font-size: 36px;
    font-weight: 700;
    color: #211f46;
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
}

/* Odometer inner digits must stay inline */
.odometer-inside {
    display: inline-flex !important;
}

.odometer-digit {
    display: inline-block !important;
}

.counter-box {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    transition: 0.3s;
}

/* Suffix appended after counter number */
.suffix {
    margin-left: 4px;
    font-weight: 600;
}

.counter-box p {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.counter-box:hover {
    transform: translateY(-5px);
}

/* Data-suffix pseudo-element for counters */
.counter::after {
    content: attr(data-suffix);
    margin-left: 2px;
    font-weight: 600;
}


/* ============================================================
   10. TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
    background: var(--white);
    padding: 70px 60px;
    text-align: center;
    overflow: hidden;
}

.testimonials-section .section-title {
    margin-bottom: 40px;
}

.testimonials-section .section-title::before,
.testimonials-section .section-title::after {
    background: #b8a870;
}

/* Slider wrapper */
.slider-outer {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 22px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial card */
.testimonial-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.14);
}

.tc-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #d0e8cc;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
}

.quote-icon {
    font-size: 18px;
    color: var(--green-light);
    margin-bottom: 10px;
}

/* Slider controls (prev/next + dots) */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--green-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c0b898;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border: none;
}

.dot.active {
    background: var(--green-dark);
    transform: scale(1.35);
}


/* ============================================================
   11. CTA SECTION
   ============================================================ */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 60px;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 38, 18, 0.82);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-subscribe {
    background: var(--white);
    color: var(--green-dark);
    border: none;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-subscribe:hover {
    background: var(--cream);
    transform: translateY(-2px);
}


/* ============================================================
   12. WHY A2 SECTION & BLOG CARDS
   ============================================================ */

/* Why A2 grid layout */
.why-a2-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Blog grid layout */
.blogs-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.why-a2-card {
    background: #efebe4;
    border-radius: 22px;
    padding: 26px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    text-align: start;
}

.why-a2-card:hover {
    transform: translateY(-6px);
}

/* Card top row */
.why-a2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.why-a2-top h3 {
    text-align: start;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #14341e;
}

/* Icon circle */
.why-a2-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e0c33b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-a2-icon i {
    font-size: 24px;
    color: #26461d;
}

/* Blog meta (author + date row) */
.blog-meta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-meta-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e0c33b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-meta-icon i {
    font-size: 16px;
    color: #26461d;
}

.blog-meta-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #14341e;
    line-height: 1;
}

/* Blog card link wrapper */
.blog-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* Card image */
.why-a2-image {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
}

.why-a2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.why-a2-card:hover .why-a2-image img {
    transform: scale(1.05);
}

/* Card body text */
.why-a2-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #667066;
}

/* Card read more link */
.why-a2-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #14341e;
    transition: 0.3s;
}

.why-a2-link i {
    transition: 0.3s;
    font-size: 15px;
}

.why-a2-link:hover i {
    transform: translateX(5px) rotate(-45deg);
}


/* ============================================================
   13. DAIRY GOODNESS SECTION
   ============================================================ */

.dairy-goodness-section {
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

.dairy-goodness-section .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

/* Large hero-style heading */
.dairy-main-heading {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #000000;
    max-width: 760px;
}

/* Circular image */
.learn-main-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.learn-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rotating badge circle */
.rotate-circle {
    width: 150px;
    height: 150px;
    position: relative;
    margin-left: -27px;
    z-index: 3;
    animation: rotateCircle 20s linear infinite;
}

/* Pause rotation on hover */
.rotate-circle:hover {
    animation-play-state: paused;
}

.rotate-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Learn more circle text */
.learn-circle-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.learn-circle-text {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--cream);
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Trusted users avatars */
.trusted-users {
    margin-bottom: 30px;
}

.trusted-images {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.trusted-images img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-dark);
    margin-left: -10px;
}

.trusted-images img:first-child {
    margin-left: 0;
}

/* Plus icon at end of avatar row */
.plus-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-left: -10px;
}

.trusted-users p {
    color: black;
    font-size: 16px;
    font-weight: 500;
}

/* Feature box (glass-style) */
.milk-feature-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    backdrop-filter: blur(10px);
}

.milk-feature-item {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.milk-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.milk-icon i {
    color: var(--cream);
    font-size: 22px;
}

.milk-feature-item h4 {
    color: var(--green-dark);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    text-align: start;
}

/* Divider line between feature items */
.milk-divider {
    height: 1px;
    background: rgba(24, 20, 20, 0.582);
    margin: 35px 0;
}

/* Main dairy image */
.dairy-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.dairy-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative diagonal shape overlay */
.image-shape {
    position: absolute;
    left: -120px;
    top: 0;
    width: 300px;
    height: 100%;
    background: rgba(15, 9, 6, 0.45);
    clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%);
}


/* ============================================================
   14. A1 VS A2 MILK SECTION
   ============================================================ */

.a1-vs-a2-milk {
    margin-top: 60px;
    text-align: left;
}

/* Image wrapper */
.a1-a2-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.a1-a2-image-wrapper img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

/* Floating badge over image */
.milk-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.milk-badge span {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
}

.a1-a2-main-heading {
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    text-align: left;
}

.a1-a2-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 22px;
    text-align: left;
}

/* Info boxes grid */
.milk-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.milk-info-box {
    background: var(--cream);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 18px;
    transition: 0.3s;
    text-align: left;
}

.milk-info-box:hover {
    transform: translateY(-5px);
}

.milk-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.milk-info-icon i {
    font-size: 22px;
    color: var(--cream);
}

.milk-info-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: left;
}

.milk-info-box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    text-align: left;
}

/* Bottom text box */
.a1-a2-bottom-box {
    border-radius: 24px;
    text-align: left;
}

.a1-a2-bottom-box h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 22px;
    text-align: left;
}

.a1-a2-bottom-box p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 18px;
    text-align: left;
}

/* Breed comparison image block */
.breed-comparison-section {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.breed-comparison-section img {
    width: 100%;
    display: block;
}


/* ============================================================
   15. SCIENTIFIC BENEFITS SECTION
   ============================================================ */

.scientific-benefits-wrapper {
    margin-top: 60px;
}

.scientific-benefits-image {
    border-radius: 24px;
    overflow: hidden;
}

.scientific-benefits-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Video variant of benefits image */
.scientific-benefits-image video {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.scientific-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 24px;
    text-align: left;

}

.scientific-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.scientific-benefit-box {
    background: var(--cream);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 18px;
    transition: 0.3s;
}

.scientific-benefit-box:hover {
    transform: translateY(-5px);
}

.scientific-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f1df8a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scientific-icon i {
    font-size: 22px;
    color: var(--green-dark);
}

.scientific-benefit-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: left;
}

.scientific-benefit-box p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: left;

}


/* ============================================================
   16. FAMILY BENEFITS SECTION
   ============================================================ */

.family-benefits-wrapper {
    margin-top: 60px;
}

.family-benefit-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: 0.3s;
}

.family-benefit-card:hover {
    transform: translateY(-6px);
}

.family-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1df8a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.family-benefit-icon i {
    font-size: 28px;
    color: var(--green-dark);
}

.family-benefit-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.family-benefit-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-body);
}


/* ============================================================
   17. COW BREEDS SECTION
   ============================================================ */

.cow-breads {
    background: var(--cream);
    padding: 70px 60px;
    text-align: center;
}
.cow-breads h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

/* ============================================================
   18. DISEASE RESEARCH SECTION
   ============================================================ */

.disease-research-wrapper {
    margin-top: 60px;
}

.disease-research-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.disease-research-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

/* Floating research badge */
.research-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
}

.disease-research-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 24px;
        text-align: left;

}

/* Research info boxes grid */
.research-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.research-info-box {
    background: var(--cream);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 18px;
    transition: 0.3s;
}

.research-info-box:hover {
    transform: translateY(-5px);
}

.research-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f1df8a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.research-icon i {
    font-size: 22px;
    color: var(--green-dark);
}

.research-info-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: left;

}

.research-info-box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0;
    text-align: left;

}


/* ============================================================
   19. COMPARISON TABLE
   ============================================================ */

.comparison-table-wrapper {
    margin-top: 60px;
    overflow: hidden;
    border-radius: 24px;
}

.comparison-table {
    width: 100%;
    background: #fff;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 24px;
}

/* Table header */
.comparison-table thead th {
    background: #f5f5f5;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    padding: 18px 20px;
    border: 1px solid #d8d8d8;
    text-align: center;
}

/* Table body cells */
.comparison-table tbody td {
    border: 1px solid #d8d8d8;
    padding: 15px 22px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-body);
    text-align: center;
    vertical-align: middle;
}

/* First column bold */
.comparison-table tbody td:first-child {
    font-weight: 700;
    color: var(--text-dark);
    width: 22%;
}

/* Middle/last column widths */
.comparison-table tbody td:nth-child(2),
.comparison-table tbody td:nth-child(3) {
    width: 39%;
}

/* Row hover */
.comparison-table tbody tr:hover {
    background: #faf8f3;
}

/* Rounded corners on table edges */
.comparison-table thead tr th:first-child {
    border-top-left-radius: 24px;
}

.comparison-table thead tr th:last-child {
    border-top-right-radius: 24px;
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 24px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 24px;
}


/* ============================================================
   20. FAQ SECTION
   ============================================================ */

.faq-modern-wrapper {
    margin-top: 60px;
}

/* FAQ image (changes on active item) */
.faq-image-box {
    position: relative;
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
}

.faq-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.faq-image.active {
    opacity: 1;
    visibility: visible;
}

/* FAQ accordion list */
.faq-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Question button */
.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
}

/* Icon circle inside question */
.faq-question span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1df8a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question i {
    color: var(--green-dark);
    transition: 0.3s;
}

/* Rotate icon when open */
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Collapsible answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 30px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-body);
        text-align: left;

}

/* Expand answer when active */
.faq-item.active .faq-answer {
    max-height: 300px;
}


/* ============================================================
   21. CONTACT FORM SECTION
   ============================================================ */

.premium-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.form-top-content {
    margin-bottom: 30px;
}

.form-tag {
    display: inline-block;
    background: #e8f7ff;
    color: #0b7db8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-top-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.form-top-content p {
    color: #666;
    margin-bottom: 0;
}

.premium-input-group {
    margin-bottom: 22px;
}

.premium-input-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.premium-input {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #dcdcdc;
    padding: 14px 18px;
    font-size: 15px;
    transition: 0.3s ease;
    box-shadow: none !important;
}

textarea.premium-input {
    height: auto;
    resize: none;
}

.premium-input:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(11, 125, 184, 0.10) !important;
}

.premium-submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0b7db8, #0e9adf);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.premium-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 125, 184, 0.25);
}


/* ============================================================
   22. BLOG DETAILS
   ============================================================ */

.blog-details-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.blog-details-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Milk question list (inside blog/detail pages) */
.milk-question-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.milk-question-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.milk-question-item i {
    font-size: 18px;
    color: #0f9d8a;
}

.milk-question-item p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #22304a;
    line-height: 1.4;
}


/* ============================================================
   23. FOOTER
   ============================================================ */

footer {
    background: #0f1f0c;
    color: rgba(255, 255, 255, 0.75);
}

/* Footer main grid */
.footer-main {
    padding: 64px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 20px;
}

/* Footer brand column */
.footer-brand .logo-text h2 {
    color: #a8d8a0;
    font-size: 19px;
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.45);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
    margin-top: 16px;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--green-mid);
    color: var(--white);
}

/* Footer column headings */
.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--green-mid);
    border-radius: 2px;
}

/* Footer link lists */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col ul li a:hover {
    color: #a8d8a0;
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 9px;
    color: var(--green-mid);
}

/* Contact info items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.contact-item i {
    color: var(--green-mid);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

/* Footer strip (trust badges bar) */
.footer-strip {
    background: var(--green-dark);
    padding: 14px 60px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.strip-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 0;
}

.strip-badge:last-child {
    border-right: none;
}

.strip-badge i {
    font-size: 14px;
    color: #b8e8b0;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: #a8d8a0;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom-badges {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-badge-item i {
    color: var(--green-mid);
    font-size: 12px;
}


/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */


/* ------------------------------------------------------------
   TABLET — max-width: 991px
   (Farm content, dairy, a1a2, disease, table, faq, products-diff, other-products)
   ------------------------------------------------------------ */

@media (max-width: 991px) {

    /* Farm content font sizes */
    .farm-content h2 {
        font-size: 38px;
    }

    .farm-content p {
        font-size: 16px;
    }

    /* Why A2 & Blogs — single column */
    .why-a2-section {
        grid-template-columns: 1fr;
    }

    .blogs-section {
        grid-template-columns: 1fr;
    }

    /* Dairy goodness section */
    .dairy-goodness-section {
        padding: 50px 25px;
    }

    .dairy-main-heading {
        font-size: 42px;
    }

    .dairy-image-wrapper {
        height: 420px;
    }

    .milk-feature-item h4 {
        font-size: 22px;
    }

    /* A1 vs A2 */
    .a1-a2-main-heading {
        font-size: 38px;
    }

    .milk-info-grid {
        grid-template-columns: 1fr;
    }

    .a1-a2-image-wrapper img {
        height: 420px;
    }

    .blog-details-image img {
        height: 220px;
    }

    /* Disease research */
    .disease-research-image img {
        height: 420px;
    }

    .research-info-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison table font sizes */
    .comparison-table thead th {
        font-size: 15px;
    }

    .comparison-table tbody td {
        font-size: 10px;
        padding: 16px;
    }

    /* FAQ */
    .faq-image-box {
        height: 420px;
    }

    .faq-question {
        font-size: 19px;
        padding: 24px;
    }

    /* Products difference box */
    .products-difference-box {
        padding: 35px 25px;
    }

    .products-difference-box h3 {
        font-size: 32px;
    }

    /* Other product boxes */
    .other-product-box {
        padding: 12px 14px;
    }

    .other-product-image {
        width: 48px;
        height: 48px;
    }

    .other-product-box h4 {
        font-size: 14px;
    }

}


/* ------------------------------------------------------------
   MOBILE — max-width: 860px
   (Navbar, Hero, Features, Sections padding, Footer)
   ------------------------------------------------------------ */

@media (max-width: 860px) {

    /* --- Navbar --- */
    nav {
        padding: 14px 18px;
        flex-wrap: nowrap;
        gap: 16px;
    }

    /* Show mobile menu toggle */
    .menu-toggle {
        display: flex !important;
    }

    /* Hide desktop CTA button */
    .desktop-btn {
        display: none;
    }

    /* Nav links — slide-in drawer from right */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        max-width: calc(100% - 24px);
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 22px 18px 30px;
        background: rgba(249, 245, 237, 0.98);
        box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
        z-index: 999;
    }

    /* Open state for drawer */
    .nav-links.active {
        right: 0;
    }

    /* Nav list items */
    .nav-links li {
        width: 100%;
        min-width: 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 14px;
        white-space: normal;
        box-sizing: border-box;
    }

    /* Dropdown inside drawer */
    .nav-links .nav-dropdown {
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    .nav-links .nav-dropdown>a {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        flex-wrap: wrap;
        word-break: break-word;
    }

    .nav-links .nav-dropdown>a i {
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Mobile dropdown — collapsed by default */
    .nav-dropdown .dropdown-menu-custom {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease, opacity 0.25s ease;
    }

    /* Expanded dropdown */
    .nav-dropdown.open .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
    }

    /* Dropdown links */
    .dropdown-menu-custom li {
        width: 100%;
        min-width: 0;
    }

    .dropdown-menu-custom li a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        box-sizing: border-box;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Show mobile contact button */
    .mobile-contact-btn {
        display: block;
        width: 100%;
        margin-top: 16px;
    }

    .btn-order-link {
        width: 100%;
    }

    .btn-order-nav {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }

    /* --- Hero --- */
    .hero {
        min-height: auto;
        padding-top: 120px;
    }

    .hero-overlay {
        background: rgba(249, 245, 237, 0.88);
    }

    .hero-content {
        padding: 60px 30px 320px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    /* --- Features Strip --- */
    .features-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 30px 30px;
        gap: 24px;
    }

    /* --- Common Section Padding --- */
    .farm-content-side,
    .process-section,
    .gallery-section,
    .products-section,
    .testimonials-section {
        padding: 50px 30px;
    }

    .cta-section {
        padding: 70px 30px;
    }

    /* --- Footer --- */
    .footer-main {
        padding: 50px 30px;
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-strip {
        padding: 14px 30px;
    }

    .footer-bottom {
        padding: 16px 30px;
    }

}


/* ------------------------------------------------------------
   SMALL MOBILE — max-width: 576px
   (Tiny phones, single column layouts)
   ------------------------------------------------------------ */

@media (max-width: 576px) {
.footer-colol, ul {
    padding-left: 1rem !important;
}

    /* Navbar */
    nav {
        padding: 12px 14px;
    }

    .logo img {
        width: 130px;
    }

    /* Full-width drawer on tiny screens */
    .nav-links {
        width: 100%;
    }

    .nav-links a {
        font-size: 13px;
    }

    .dropdown-menu-custom {
        min-width: 100%;
    }

    /* Hero */
    .hero {
        min-height: auto;
    }

    .hero-img {
        background-image: url(sunrise\ milk\ hero\ section.png);
        height: 200px;
        object-position: center;
    }

    .hero-content {
        padding: 80px 20px 420px;
        text-align: start;
    }

    .hero-overlay {
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right,
                    rgba(249, 245, 237, 0.97) 0%,
                    rgba(249, 245, 237, 0.90) 45%,
                    rgba(249, 245, 237, 0.4) 70%,
                    transparent 100%);
        }
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
    }

    /* Stack hero buttons vertically */
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 65%;
    }

    /* Features strip — single column */
    .features-strip {
        grid-template-columns: 1fr;
        padding: 50px 20px 24px;
        gap: 22px;
    }

    .feature-item {
        align-items: center;
    }

    .feature-item h4 {
        font-size: 14px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .top-wave {
        top: -40px;
        height: 40px;
    }

    /* Products — single column */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery — single column */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Section title sizing */
    .section-title {
        font-size: 24px;
    }

    .section-title::before,
    .section-title::after {
        width: 30px;
    }
 .process-steps {
         flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        align-items: center;
    }
     .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 0;
    }
    .cow-breads {
        padding: 50px 10px;
    }

    .our-farm {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-height: 0;
        padding-right: 0;
        padding-left: 0;
        background: url('sunrise our farm.png') right/cover no-repeat;
    }
    .footer-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
       .footer-main {
        padding: 50px 10px;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .scientific-benefit-grid {
        grid-template-columns: 1fr;
    }

}

/* new css today 09/06 */

.science-intro{
    background:#fff;
    border-radius:25px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.protein-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.protein-box{
    width:180px;
    height:180px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.protein-box.a1{
    background:#fff3e0;
    color:#e65100;
}

.protein-box.a2{
    background:#e8f5e9;
    color:#2e7d32;
}

.vs-line span{
    font-size:28px;
    font-weight:700;
}

.milk-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.a1-card{
    border-top:6px solid #ff9800;
}

.a2-card{
    border-top:6px solid #4caf50;
}

.card-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#f5f5f5;
    font-weight:600;
    margin-bottom:20px;
}

.milk-card ul{
    padding-left:20px;
    margin-top:20px;
}

.milk-card li{
    margin-bottom:12px;
}

.breed-section{
    text-align:center;
}

.breed-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:25px;
}

.breed-grid span{
    padding:12px 24px;
    background:#f4f8f4;
    border:1px solid #d8e8d8;
    border-radius:50px;
    font-weight:600;
}

.conclusion-box{
    background:linear-gradient(135deg,#2e7d32,#43a047);
    color:#fff;
    padding:50px;
    border-radius:25px;
    text-align:center;
}

.conclusion-box h3{
    margin-bottom:15px;
}

@media(max-width:768px){

    .science-intro{
        padding:30px;
    }

    .protein-card{
        flex-direction:column;
        margin-top:30px;
    }

    .protein-box{
        width:140px;
        height:140px;
        font-size:20px;
    }

    .conclusion-box{
        padding:35px 25px;
    }
}


.farm-section{
    background:#fdfcf8;
}

.farm-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#edf8ef;
    color:#2e7d32;
    font-weight:600;
    margin-bottom:15px;
}

.farm-section h2{
    font-size:48px;
    font-weight:700;
}

.farm-location{
    color:#666;
    margin-top:15px;
}

.farm-intro{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
}

.farm-image img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.farm-content-home h3{
    margin-bottom:20px;
    font-weight:700;
}

.farm-highlight{
    margin:30px 30px 30px 0;
    padding:20px;
    border-left:5px solid #4caf50;
    background:#f4faf5;
    border-radius:12px;
}

.farm-highlight strong{
    display:block;
    font-size:20px;
}

.farm-highlight span{
    color:#666;
}

.farm-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.farm-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#edf8ef;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.farm-icon i{
    font-size:32px;
    color:#2e7d32;
}
.farm-card h3{
    margin-bottom:15px;
}

.farm-card ul{
    padding-left:20px;
    margin-top:20px;
}

.farm-card li{
    margin-bottom:10px;
}

.farm-visit-box{
    background:linear-gradient(135deg,#2e7d32,#43a047);
    color:#fff;
    padding:50px;
    border-radius:30px;
}

.farm-btn{
    display:inline-block;
    background:#fff;
    color:#2e7d32;
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.farm-btn:hover{
    color:#2e7d32;
}

@media(max-width:991px){

    .farm-section h2{
        font-size:34px;
    }

    .farm-image img{
        height:300px;
    }

    .farm-content{
        padding:30px;
    }

    .farm-visit-box{
        text-align:center;
        padding:35px 25px;
    }

    .farm-btn{
        margin-top:20px;
    }
}

.breed-section{
    background:#fff;
}

.breed-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.breed-image img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.breed-content{
    padding:35px;
}

.breed-badge{
    display:inline-block;
    background:#edf8ef;
    color:#2e7d32;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.breed-content h3{
    margin-bottom:20px;
    font-weight:700;
}

.breed-content ul{
    margin-top:25px;
    padding-left:20px;
}

.breed-content ul li{
    margin-bottom:12px;
}

.breed-bottom-box{
    background:#f7faf7;
    border-radius:25px;
    padding:40px;
    border:1px solid #e5efe5;
}

.breed-bottom-box h3{
    margin-bottom:15px;
}

.breed-count{
    background:#2e7d32;
    color:#fff;
    display:inline-block;
    padding:15px 25px;
    border-radius:50px;
    font-weight:600;
}

@media(max-width:991px){

    .breed-image img{
        height:250px;
    }

    .breed-content{
        padding:25px;
    }

    .breed-bottom-box{
        text-align:center;
    }

    .breed-count{
        margin-top:20px;
    }
}


.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.benefit-card{
    position:relative;
    background:#fff;
    border:1px solid #2e7d32;
    border-radius:25px;
    padding:35px;
    overflow:hidden;
    transition:.4s ease;
}

.benefit-card::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:5px;
    background:#2e7d32;
    transition:width .5s ease;
}

.benefit-card:hover{
    /* transform:translateY(-5px); */
    border-color:#2e7d32;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.benefit-card:hover::after{
    width:100%;
}

.benefit-icon{
    width:65px;
    height:65px;
    border-radius:16px;
    background:#eaf5ec;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.benefit-icon i{
    font-size:26px;
    color:#2e7d32;
}

.benefit-card h3{
    font-size:32px;
    line-height:1.3;
    margin-bottom:20px;
    font-weight:700;
}

.benefit-card p{
    margin-bottom:0;
    line-height:1.9;
    color:#666;
}

@media(max-width:1200px){

    .benefit-card h3{
        font-size:28px;
    }
}

@media(max-width:991px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .benefit-card{
        padding:30px;
    }

    .benefit-card h3{
        font-size:24px;
    }
}

/* who benefits */
.audience-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.audience-card{
    position:relative;
    background: var(--cream);
    border:1px solid #d9e4d9;
    border-radius:28px;
    padding:35px;
    overflow:hidden;
    min-height:340px;
    transition:all .4s ease;
    z-index:1;
}

/* Bottom To Top Fill Animation */

.audience-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:0;
    background:#2ead2eb7;
    transition:height .6s cubic-bezier(.22,.61,.36,1);
    z-index:-1;
}

.audience-card:hover::before{
    height:100%;
}

/* Hover Lift */

.audience-card:hover{
    /* transform:translateY(-8px); */
    border-color:#2e7d32a4;
}

/* Big Number */

.card-number{
    position:absolute;
    right:25px;
    top:15px;
    font-size:72px;
    font-weight:700;
    color:var(--text-dark);
    line-height:1;
    transition:.4s ease;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* Icon */

.audience-icon{
    width:60px;
    height:60px;
    border-radius:14px;
    background:var(--text-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.4s ease;
}

.audience-icon i{
    color:#fff;
    font-size:22px;
    transition:.4s ease;
}

/* Heading */

.audience-card h3{
    font-size:36px;
    line-height:1.3;
    margin-bottom:18px;
    transition:.4s ease;
}

/* Paragraph */

.audience-card p{
    color:#667085;
    line-height:1.9;
    margin-bottom:0;
    transition:.4s ease;
}

/* Hover Content Color */

.audience-card:hover h3,
.audience-card:hover p{
    color:#fff;
}

.audience-card:hover .card-number{
    color:rgba(255,255,255,.15);
}

.audience-card:hover .audience-icon{
    background:rgba(255,255,255,.15);
}

.audience-card:hover .audience-icon i{
    color:#fff;
}

/* Responsive */

@media(max-width:1200px){

    .audience-card h3{
        font-size:30px;
    }

    .card-number{
        font-size:60px;
    }
}

@media(max-width:991px){

    .audience-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .audience-card{
        min-height:auto;
    }

    .audience-card h3{
        font-size:28px;
    }
}

@media(max-width:767px){

    .audience-grid{
        grid-template-columns:1fr;
    }

    .audience-card{
        padding:30px;
    }

    .card-number{
        font-size:50px;
    }

    .audience-card h3{
        font-size:24px;
    }
}


.milk-route-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:60px;
}

.milk-route-card{
    background:#ffffff;
    border:1px solid #dbe5e3;
    border-top:6px solid var(--text-dark);
    border-radius:30px;
    padding:35px;
    transition:all .35s ease;
}

.milk-route-card:hover{
    transform:translateY(-5px);
}

.milk-route-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}

.milk-route-number{
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--text-dark);
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Inter', system-ui, -apple-system, sans-serif;
}

.milk-route-tag{
    background:var(--text-dark);
    color:#fff;
    padding:7px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    font-family:'Inter', system-ui, -apple-system, sans-serif;
}

.milk-route-card h3{
    font-size:32px;
    line-height:1.35;
    margin-bottom:18px;
}

.milk-route-card p{
    color:#667085;
    line-height:2;
    margin-bottom:0;
}

@media(max-width:991px){

    .milk-route-grid{
        grid-template-columns:1fr;
    }

    .milk-route-card h3{
        font-size:26px;
    }
}

@media(max-width:767px){

    .milk-route-card{
        padding:25px;
    }

    .milk-route-card h3{
        font-size:22px;
    }

    .milk-route-grid{
        gap:20px;
        margin-top:40px;
    }
}

/* certifications & quality */
.certification-wrapper{
    display:grid;
    grid-template-columns:1.3fr .9fr;
    gap:40px;
    margin-top:60px;
}

.certification-content{
    background:#fff;
    border:1px solid #e5ece9;
    border-radius:24px;
    padding: 35px;
}

.certification-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;
}

.certification-badges span{
    background:#edf8ef;
    color:#2e7d32;
    border:1px solid #d8e8d8;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.certification-item{
    padding-bottom:25px;
    margin-bottom:25px;
    border-bottom:1px solid #ececec;
}

.certification-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.certification-item h3{
    font-size:24px;
    margin-bottom:12px;
}

.certification-item p{
    color:#667085;
    line-height:1.9;
    margin:0;
}

.fake-a2-card{
    background:#fff;
    border:1px solid #e5ece9;
    border-top:4px solid var(--green-mid);
    border-radius:24px;
    /* padding:35px; */
    transition:.35s ease;
}

.fake-a2-card:hover{
    transform:translateY(-5px);
}

.fake-a2-header{
    margin-bottom:25px;
    padding: 30px 35px 0px 30px;
}

.fake-a2-header h3{
    margin:0;
    font-size:30px;
}

.fake-a2-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.fake-a2-card ul li{
    position:relative;
    padding-left:32px;
    margin-bottom:18px;
    line-height:1.8;
    color:#667085;
}

.fake-a2-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--green-mid);
    font-weight:700;
}

.fake-a2-footer{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid #ececec;
    font-weight:600;
}

@media(max-width:991px){

    .certification-wrapper{
        grid-template-columns:1fr;
    }

    .fake-a2-header h3{
        font-size:24px;
    }
}

@media(max-width:767px){

    .certification-section{
        padding:70px 0;
    }

    .certification-content,
    .fake-a2-card{
        padding:25px;
    }

    .certification-item h3{
        font-size:20px;
    }
}

/* why choose us */
.comparison-table-wrapper{
    margin-top:60px;
    overflow-x:auto;
    border-radius:24px;
    border:1px solid #e5ece9;
}

.comparison-table{
    width:100%;
    border-collapse:collapse;
    min-width:1000px;
    background:#fff;
}

.comparison-table thead th{
    background:var(--green-mid);
    color:#fff;
    /* padding:22px; */
    font-size:16px;
    font-weight:600;
    text-align:left;
}

.comparison-table tbody td{
    /* padding:20px 22px; */
    border-bottom:1px solid #ececec;
    color:#667085;
}

.comparison-table tbody tr:hover{
    background:#f7fbfa;
}

.comparison-table tbody tr:last-child td{
    border-bottom:none;
}

.comparison-table tbody td:first-child{
    font-weight:600;
    color:#111827;
}

.positive{
    color:var(--green-mid) !important;
    font-weight:600;
}

.iso-policy-box{
    margin-top:40px;
    background:#fff;
    border:1px solid #e5ece9;
    border-left:5px solid var(--green-mid);
    border-radius:24px;
    padding:35px;
    display:flex;
    gap:25px;
    align-items:flex-start;
}

.iso-policy-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:18px;
    background:#edf8ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.iso-policy-icon i{
    font-size:28px;
    color:var(--green-mid);
}

.iso-policy-content h3{
    margin-bottom:12px;
}

.iso-policy-content p{
    margin:0;
    line-height:1.9;
    color:#667085;
}

@media(max-width:991px){

    .comparison-section{
        padding:70px 0;
    }

    .iso-policy-box{
        flex-direction:column;
    }
}

.comparison-table th,
.comparison-table td{
    text-align:left !important;
}


/* about us page remaining css */
.farm-highlights-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.farm-highlight-card{
    background:#fff;
    border:1px solid #e5ece9;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    transition:.35s ease;
}

.farm-highlight-card:hover{
    transform:translateY(-5px);
    border-color:var(--green-mid);
}

.farm-highlight-card h3{
    color:var(--green-mid);
    font-size:36px;
    margin-bottom:10px;
}

.farm-highlight-card p{
    margin:0;
    color:#667085;
    font-weight:500;
}

.farm-note-box{
    margin-top:40px;
    background:#fff;
    border-left:5px solid var(--green-mid);
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.farm-note-box h3{
    margin-bottom:15px;
}

.farm-note-box p{
    margin:0;
    line-height:1.9;
    color:#667085;
}

@media(max-width:991px){

    .farm-highlights-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .farm-highlights-grid{
        grid-template-columns:1fr;
    }

}

.indigenous-cows-section{
    padding:100px 0;
}

.breed-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.breed-benefit-card{
    background:#fff;
    border:1px solid #e5ece9;
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    transition:.35s ease;
}

.breed-benefit-card:hover{
    transform:translateY(-5px);
    border-color:var(--green-mid);
}

.breed-benefit-card i{
    font-size:38px;
    color:var(--green-mid);
    margin-bottom:20px;
}

.breed-benefit-card h3{
    font-size:22px;
    margin:0;
}

@media(max-width:991px){

    .breed-benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .breed-benefits-grid{
        grid-template-columns:1fr;
    }
}

.gir-identity-section{
    padding:100px 0;
    background:#fafcfb;
}

.gir-identity-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:60px;
}

.identity-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    border:1px solid #e5ece9;
}

.identity-card h3{
    margin-bottom:25px;
    color:var(--text-dark);
}

.identity-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.identity-card ul li{
    position:relative;
    padding-left:32px;
    margin-bottom:18px;
    line-height:1.8;
}



@media(max-width:991px){

    .gir-identity-wrapper{
        grid-template-columns:1fr;
    }
}


.welfare-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.welfare-card{
    background:#fff;
    border:1px solid #e5ece9;
    border-radius:24px;
    padding:40px;
    transition:.35s ease;
    height:100%;
}

.welfare-card:hover{
    transform:translateY(-5px);
    border-color:var(--green-mid);
}

.welfare-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#edf8ef;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.welfare-icon i{
    font-size:30px;
    color:var(--green-mid);
}

.welfare-card h3{
    font-size:26px;
    margin-bottom:25px;
}

.welfare-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.welfare-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    line-height:1.8;
}

.welfare-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--green-mid);
    font-weight:700;
}

.welfare-quote{
    margin-top:50px;
    background:#fff;
    border-left:5px solid var(--green-mid);
    border-radius:20px;
    padding:35px;
}

.welfare-quote i{
    font-size:35px;
    color:var(--green-mid);
    margin-bottom:15px;
    display:block;
}

.welfare-quote p{
    margin:0;
    font-size:18px;
    line-height:1.9;
    color:#667085;
}

@media(max-width:991px){

    .welfare-grid{
        grid-template-columns:1fr;
    }

    .welfare-card{
        padding:30px;
    }
}


.quality-focus-grid,
.product-range-grid,
.trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:50px;
    /* text-align: left; */
}

.quality-focus-card,
.product-item{
    background:#fff;
    border:1px solid #e5ece9;
    border-radius:18px;
    padding:25px;
    text-align:center;
}
.trust-item{
    text-align: left;
    background:#fff;
    border:1px solid #e5ece9;
    border-radius:18px;
    padding:25px;
}

.quality-focus-card i{
    font-size:30px;
    color:var(--green-mid);
    margin-bottom:15px;
}

.quality-message{
    margin-top:30px;
    text-align:center;
    font-weight:600;
}

.freshness-timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.fresh-step{
    background: var(--cream);
    padding:10px 30px;
    border-radius:20px;
    text-align:center;
}

.fresh-step span{
    font-size:40px;
    color:var(--green-mid);
    font-weight:700;
}

.freshness-benefits{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-top:40px;
}

.freshness-benefits div{
    background:#edf8ef;
    padding:12px 25px;
    border-radius:50px;
}

.sustainability-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.sustainability-card{
    background: var(--cream);
    padding:40px;
    border-radius:24px;
}
.sustainability-text{
    background: var(--cream);
    padding:40px;
    border-radius:24px;
}

.sustainability-card ul{
    margin-top:20px;
}

.product-range-note{
    text-align:center;
    margin-top:30px;
}

@media(max-width:991px){

    .quality-focus-grid,
    .product-range-grid,
    .trust-grid,
    .freshness-timeline{
        grid-template-columns:repeat(2,1fr);
    }

    .sustainability-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){

    .quality-focus-grid,
    .product-range-grid,
    .trust-grid,
    .freshness-timeline{
        grid-template-columns:1fr;
    }
}

/* why a2 milk page css */
.a2-basics-wrapper{
    margin-top:60px;
}

.a2-basics-content p{
    margin-bottom:20px;
    line-height:1.9;
}

.a2-basics-content ul{
    margin:25px 0;
    padding-left:20px;
}

.a2-basics-content ul li{
    margin-bottom:12px;
}

.a2-protein-card{
    background:#fff;
    border:1px solid #e5ece9;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.protein-card-header{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.protein-type{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.protein-dot{
    width:16px;
    height:16px;
    border-radius:50%;
}

.protein-dot.a1{
    background:#f59e0b;
}

.protein-dot.a2{
    background:#0b8f83;
}

.protein-highlight{
    margin-top:20px;
}

.protein-highlight h4{
    margin-bottom:12px;
    color:#0b8f83;
}

.protein-highlight p{
    margin:0;
    line-height:1.8;
}