
:root {
    --primary-red: #E31E24;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --bg-light: #F9F9F9;
    /*--font-heading: 'Bricolage Grotesque', sans-serif;*/
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x:hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.hero-slide {
    background-size: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header Details */
#main-header {

    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    padding-top: 20px;
}



#main-header.homepage_header {
    top: 20px;
}

#main-header.scrolled {
    top: 0;
}

.top-bar {
    display: none !important;
}

#main-header:not(.scrolled) .top-bar {
    display: none;
}

#main-header:not(.scrolled) .custom-navbar {
    background: #fff;
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    border-radius: 50px;
    padding: 5px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#main-header.scrolled {
    background: #fff;
    padding-top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#main-header.scrolled .top-bar {
    display: block;
}

#main-header.scrolled .custom-navbar {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
}

.top-bar {
    background: var(--primary-red);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
}

.top-bar-content {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.contact-info a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
}

.login-btn a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.custom-navbar {
    padding: 0;
}

.custom-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;

    padding-bottom: 10px;

    transition: all 0.3s ease;
}

#main-header:not(.scrolled) .logo img {
    height: 60px;
    margin-top: 0;
}

.nav-links {
    display: flex;
    gap: 35px;
    margin: 0 auto 0 50px;
    /* Push a bit right */
    list-style: none;
    /* Ensure no bullets */
    padding: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    /* Remove default underline */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    padding-bottom: 20px;
    /* Bridge gap for hover */
    margin-bottom: -20px;
}

.nav-item-dropdown .fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-item-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 100;
    padding: 10px 0;
    list-style: none;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-dropdown-menu li a:hover {
    background: #f9f9f9;
    color: var(--primary-red);
}

.nav-dropdown-menu li a::after {
    display: none;
    /* Remove underline effect for dropdown items */
}

.btn-primary {
    background: var(--primary-red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    /* Rounded pill shape as seen in modern designs */
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
    transition: 0.3s;
    border-color: var(--primary-red);
}


.about-hero {
    margin: 30px;
    border-radius: 30px !important;
}

.about-hero .overlay {
    border-radius: 30px !important;
}

.btn-primary:hover {
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.6);
}

.btn-primary.btn-white {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    
    padding: 30px;
    margin-top: -100px;
}

.hero-section .swiper {
    height: 100%;
}

.hero-content {
    color: white;
}

.hero-swiper {
    border-radius: 50px;
}

.hero-swiper .swiper-slide {
    position: relative;

}

/* Overlay gradient for better text visibility */
.hero-swiper .swiper-slide::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 130px;
    /* Offset from top */
    padding-left: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.hero-content p {

    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;

}

/* Swiper Pagination Customization */
.hero-section .swiper-pagination {
    bottom: 10px !important;
    background: rgba(85, 83, 74, 0.95);
    /* A bit more brownish/grey */
    padding: 6px 15px;
    border-radius: 20px;
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 30;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: transparent !important;
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* Hero Bottom Shape (Tab Cutout) */
.hero-bottom-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 35px;
    /* Matched the 35px height request */
    z-index: 20;
    display: flex;
    pointer-events: none;
}

/* Create the apparent rounded bottom corners of the slider image */
.hero-bottom-shape::before,
.hero-bottom-shape::after {
    content: '';
    position: absolute;
    bottom: 100%;
    width: 50px;
    height: 50px;
    pointer-events: none;
}

.hero-bottom-shape::before {
    left: 0;
    background: radial-gradient(circle at top right, transparent 50px, #fff 50px);
}

.hero-bottom-shape::after {
    right: 0;
    background: radial-gradient(circle at top left, transparent 50px, #fff 50px);
}

.hero-bottom-shape .shape-left,
.hero-bottom-shape .shape-right {
    flex-grow: 1;
    background-color: #fff;
    height: 100%;
}

.hero-bottom-shape .shape-center {
    width: 220px;
    /* Matched the 220px width request */
    height: 35px;
    background-color: transparent;
    line-height: 0;
}

/* Stage Products Section */
.stage-products-section {
    padding: 100px 0 50px 0;
    background: #f4f4f4;
}

.section-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.spl_heading {
    position: relative;
    display: inline-block;
    

}


.bg-heading {
    display:none;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 124px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;

    font-family: var(--font-heading);
    letter-spacing: 5px;
}

.pc-item a{
        background: #ffb1b354;
        display:block;
}
.pc-item a img{
    object-fit:contain
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 0;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

/* Swiper specific for the "cutted" look */
.stage-swiper {
    padding: 50px 0 !important;
    /* give space for shadow/transform */
}

.stage-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    /* Taller card */

    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Remove old img styles as we use bg images now */
.stage-card img {
    display: none;
}

.stage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /* Cover full area for gradient */
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Bottom aligned content */
    align-items: center;
    /* Centered horizontal */
    text-align: center;
}

/* Show content on hover or if active slide */
.stage-card:hover .stage-overlay,
.swiper-slide-active .stage-card .stage-overlay {
    opacity: 1;
}

.stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s 0.1s;
    /* delay */
}

/* Reveal nested elements */
.stage-card:hover .stage-tags,
.swiper-slide-active .stage-card .stage-tags,
.stage-card:hover h3,
.swiper-slide-active .stage-card h3,
.stage-card:hover p,
.swiper-slide-active .stage-card p {
    transform: translateY(0);
    opacity: 1;
}

.stage-tags span {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stage-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s 0.2s;
}

.stage-overlay p {
    font-size: 1rem;
    opacity: 0;
    line-height: 1.6;
    max-width: 90%;
    transform: translateY(20px);
    transition: 0.4s 0.3s;
}

/* Active slide zoom effect */
.swiper-slide-active .stage-card {
    transform: scale(1.05);
    /* Stronger zoom */
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); */
    border: none;
    /* Removed border as per image/clean look */
    z-index: 10;
}

/* Built for Farmers */
.built-for-farmers {
    background: #fff;
    padding: 50px 0;
}

.built-for-farmers h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    word-wrap: break-word;
}

#about-scroll-text.text-muted,
#gsap-scroll-text.text-muted {
    color: rgb(33 37 41 / 15%) !important;
}

.gsap-char {
    display: inline;
    /* gsaps handles the color transition */
}

.farmers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.farmer-card {
    background: #f4f7f6;
    /* Very light cool grey */
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 2;
    transition: transform 0.3s;
}

/* First 2 items span 3 columns each */
.farmer-card.large {
    grid-column: span 3;
    min-height: 400px;
}

/* Specific Dark Card */
.farmer-card.dark-card {
    background: #737373;
    /* Dark grey matching reference */
}

/* Remove the old :first-child rule to avoid conflicts if we use the class */
.farmer-card.large:first-child {
    background: #737373;
}

.farmer-card img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    /* Add shadow to transparent images */
}

.farmer-card:hover img {
    transform: scale(1.05);
}

.farmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    z-index: 2;
}

.farmer-card:hover .farmer-overlay {
    opacity: 1;
}

.farmer-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
}

.farmer-overlay .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.top-products-section {
    padding: 80px 0;
    padding-top:0;
}

.info-card {
    background: white;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 40px;
}

.info-card h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.info-card h5 {
    font-size: 20px;
}

/* Responsive Grid */
@media (max-width: 1024px) {

    .farmer-card,
    .farmer-card.large {
        grid-column: span 3;
        /* 2 per row */
    }
}


/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* Prevent text overflow */
    padding-top:0;
}
._safe ul{
    list-style:disc;
}

/* Specific override for the Achievements background text */
.achievements-section .bg-heading {
    position: absolute;
    top: -80px;
    /* Position it behind the card */
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    font-weight: 800;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px #e0e0e0;
    /* Outline effect */
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.stats-card {
    position: relative;
    border-radius: 60px;
    /* Much larger rounded corners */
    overflow: hidden;
    color: #fff;
    padding: 100px 40px;
    /* More padding */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    /* Space for the text behind */
    z-index: 2;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark brown/warm overlay gradient */
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-evenly;
    /* Better spacing */
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-item h3 {
    font-size: 60px;
    /* Larger numbers */
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .achievements-section .bg-heading {
        font-size: 6rem;
        top: -30px;
    }

    .stats-card {
        padding: 60px 30px;
        border-radius: 40px;
    }

    .stat-item h3 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .achievements-section .bg-heading {
        font-size: 4rem;
        top: -20px;
    }

    .stats-content {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item h3 {
        font-size: 3rem;
    }
}



.product-item {
    background: #f4f6f8;
    /* Light grey card background */
    border-radius: 30px;
    /* Rounded corners */
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-item img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-info {
    width: 100%;
}

.product-cat {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.product-item h4 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Navigation Buttons Styles */
.top-products-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.top-products-nav .swiper-button-prev,
.top-products-nav .swiper-button-next {
    position: static;
    /* Reset absolute positioning */
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #555;
    background: transparent;
    transition: 0.3s;
    margin: 0;
}

.top-products-nav .swiper-button-prev:after,
.top-products-nav .swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.top-products-nav .swiper-button-prev:hover,
.top-products-nav .swiper-button-next:hover {
    border-color: #000;
    color: #000;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    /* Background is now white or inherited, wrapper has image */
}

.video-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Requested dark overlay */
    z-index: 1;
}

.play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #ff0000;
    /* Red play button */
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    /* Visual center fix */
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Red Strip Info */
/* Red Strip Info */
.red-strip-info {
    background: var(--primary-red);
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content span {
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Info Section */
.info-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    /* Adjust height as needed */
    padding: 100px 0;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
}

.info-card {
    /* Auto width based on col-lg-5, remove max-width centering */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.social-icons a {
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Assuming some text content for the strip based on "Partner share..." coming after */

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #fff;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.reviews-swiper {
    padding-bottom: 50px !important;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    /* Large rounded corners */
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #fd7e14;
    /* Orange/Red color from reference */
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.review-card p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 78px;
    /* Fixed height for 3 lines approx */
    transition: 0.3s;
}

.review-card.expanded p {
    -webkit-line-clamp: unset;
    height: auto;
    overflow: visible;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    display: block;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: #000;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Pagination Dots */
.reviews-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #eee;
    opacity: 1;
    margin: 0 5px !important;
}

.reviews-section .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.reviewer h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.reviewer span {
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 80px;
    background: #fff;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-grey);
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
    padding-bottom: 20px;
}

/* Footer Styles */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-icons-footer img {
    transition: 0.3s;
    width: 32px;
}

.social-icons-footer img:hover {
    transform: translateY(-3px);
}

.watermark-bg {
    position: absolute;
    top: 0;
    left: 42%;
    /* transform: translateX(-50%); */
    font-size: 6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0 0 0 / 23%);
    white-space: nowrap;
    z-index: 6;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    margin-top: 2rem;
}

.vision-section .watermark-bg {
    left: 0;
    margin-top: -40px;
}

.watermark-text {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    opacity: 0.05;
    text-transform: lowercase;
    user-select: none;
    pointer-events: none;
    position: absolute;
    bottom: -40px;
    white-space: nowrap;
    z-index: 0;
}

@media (max-width: 768px) {
    .watermark-bg {
        font-size: 4rem;
        margin-top: 0;
    }

    .watermark-text {
        font-size: 4rem;
    }
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #999;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-red);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    color: #999;
}

/* Experience Slider Navigation */
.experience-nav-prev,
.experience-nav-next {
    width: 45px;
    height: 45px;
    border: 1px solid #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    color: #333;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.experience-nav-prev:hover,
.experience-nav-next:hover {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* =========================================
   Product Page Styles
========================================= */

/* Breadcrumb */
.breadcrumb-item a {
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-red) !important;
}

/* Custom Accordion */
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-red);
    background-color: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-button {
    font-size: 1.1rem;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e60000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Product Gallery */
.main-image-container {
    border: 1px solid #f0f0f0;
}

.thumbnail {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.thumbnail:hover {
    border-color: #ccc !important;
}

.thumbnail.active-thumb {
    border-color: var(--primary-red) !important;
    border-width: 2px !important;
}

/* Product Gallery Navigation */
.product-main-swiper {
    position: relative;
}


.product-nav-arrows {
    position: absolute;
    top: -70px;
    right: 0px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.product-nav-prev,
.product-nav-next {
    position: static;
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #555;
    background: transparent;
    transition: 0.3s;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-nav-prev::after,
.product-nav-next::after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.product-nav-prev:hover,
.product-nav-next:hover {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.product-nav-prev.swiper-button-disabled,
.product-nav-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f9f9f9;
    color: #999;
    border-color: #eee;
}

/* Related Products Alternating Grid */
.related-product-img-card {
    transition: transform 0.3s ease;
}

.related-products-section .row:hover .related-product-img-card {
    transform: translateY(-5px);
}

/* ==========================================
   Advanced Interaction & Custom Cursor 
   ========================================== */
body {
    /* Hide default cursor to use custom GSAP dot */
    cursor: none;
}

/* Ensure links and buttons don't show the default pointer either */
/*a,*/
/*button,*/
/*input[type="submit"] {*/
/*    cursor: none;*/
/*}*/

a,
.pc-item,
.pc-item a,
.product-card a {
    cursor: pointer !important;
}

/*.custom-cursor {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-color: var(--primary-red);*/
/*    border-radius: 50%;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    pointer-events: none;*/
/*    z-index: 9999;*/
/*    mix-blend-mode: difference;*/
/*    transform: translate(-50%, -50%);*/
/*    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;*/
/*}*/

/*.custom-cursor.cursor-hover {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background-color: #fff;*/
/*    mix-blend-mode: difference;*/
/*}*/

/* Magnetic Buttons container fixes */
/*.magnetic {*/
/*    display: inline-block;*/
/*}*/

.farmer-card img,
.stage-card {
    transition: transform 0.1s ease-out;
    /* Needed for JS Parallax smoothing */
}


/*categories*/
/* =========================================
   Product Categories Section — pc-
========================================= */

.pc-section {
    padding: 50px 0;
    background: #fff;
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f4;
    border-radius: 28px;
    padding: 40px 24px 28px;
    text-decoration: none;
    color: var(--text-dark);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: none; /* respects the site's custom cursor */
}

.pc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Accent bar on top edge */
.pc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--primary-red);
    border-radius: 0 0 4px 4px;
    transition: transform 0.35s ease;
}

.pc-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Image container */
.pc-icon-wrap {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.35s ease;
}

.pc-card:hover .pc-icon-wrap {
    transform: scale(1.08);
}

.pc-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

/* Text block */
.pc-card-body {
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pc-card:hover .pc-card-body {
    transform: translateY(-4px);
}

.pc-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pc-count {
    font-size: 0.82rem;
    color: var(--text-grey);
    font-weight: 500;
}

/* Hover overlay with CTA */
.pc-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(227, 30, 36, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 28px;
}

.pc-card:hover .pc-hover-overlay {
    opacity: 1;
}

.pc-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 50px;
    transform: translateY(10px);
    transition: transform 0.35s ease, background 0.25s ease;
}

.pc-card:hover .pc-explore-btn {
    transform: translateY(0);
}

.pc-explore-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}
.section{
    padding:60px 0;
}
.form-control,.form-select{
    box-shadow:none !important;
}
.homepage-categories .pc-item:last-child{
    display:none;
}
/* Responsive */
@media (max-width: 992px) {
    .pc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .pc-icon-wrap {
        width: 100px;
        height: 100px;
    }

    .pc-card-body h4 {
        font-size: 0.95rem;
    }
}
/* On mobile devices, revert cursor to auto */
@media (max-width: 1024px) {

    body,
    a,
    button,
    input[type="submit"] {
        cursor: auto;
    }

    .custom-cursor {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .product-card h5{
    font-size:15px;
    margin-bottom:0;
}
.section-header h2{
    font-size:30px;
}
.homepage-categories .pc-item:last-child{
    display:block;
}
.homepage-categories .pc-item a img{
    height:112px;
}
    .farmer-card,
    .farmer-card.large {
        grid-column: span 6;
        /* 1 per row */
    }
    .pc-grid{
            grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    }
   
    .homepage-categories .pc-item a{
        border-radius: 12px !important;
    }
    .built-for-farmers h2{
            font-size: 30px;
    }
    .heading{
        font-size:22px !important;
    }
    .pc-section{
        padding:30px 0;
    }
    .stats-content{
                display: grid;
        grid-template-columns: 1fr 1fr;
        gap:20px
    }
    .stat-item{
        min-width:auto;
    }
    .stat-item h3{
                font-size: 2rem;
    }
    .stat-item p{
        font-size:14px;
        margin-bottom:0;
    }
    .achievements-section,.top-products-section,.info-section{
        padding:30px 0;
    }
    .top-products-section,.reviews-section{
        padding:30px 15px;
    }
    .info-card{
        position:static;
    }
    .hero-section{
           
    padding: 0 !important;
    }   
    
    /*remove desktop hero design*/
     .hero-swiper{
         border-radius:0 !important;
     }
     .hero-bottom-shape{
         display:none !important;
     }
    
    /*end*/
    .pc-card{
        height:auto !important;
    }
    .pc-card-body{
        margin-top:12px !important;
    }
    .pc-card-body h4{
        font-size:14px !important;
    }
   
    .hide_mobile{
        display:none;
    }
    section.py-5.text-center{
        padding-left:0 !important;
    }
    .mobile-reverse{
        flex-direction: column-reverse;
    }
    .editor_content ul{
        list-style:disc;
    }
    #main-header{
            top: 0;
                background: #fff;
    padding-top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    #main-header .custom-navbar{
            padding: 0 !important;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
        border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    }
    .logo img{
        height:80px !important;
    }
    .hero-section{
        margin-top:0;
                padding: 16px;
    }
    #main-header.homepage_header{
        top:0;
    }
    section.pb-20{
        margin-top: 30px !important;
        margin-bottom:30px !important;
    }
    .about-hero{
        margin:0;
                border-radius: 0 !important;
                height:auto !important;
                padding:70px 15px;
    }
    .about-hero .overlay,.about-hero > *{
        border-radius:0 !important;
    }
}

