
:root {
    --primary-color: #3c9f30;
    --primary-dark: #1b5e20;
    --text-white: #ffffff;
    --light-gray: #f8f9fa;

    --agro-green: #2d7a3e;
    --agro-dark: #11301e;
    --agro-light: #f0fff4;
    --agro-gold: #f5b700;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1d2b20;
    background-color: #f9fbf7;
}




a { text-decoration: none; color: var(--agro-green); }

.navbar {
    padding: 0.9rem 0;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.navbar-brand .logo-img {
   /* width: 54px;*/
    height: 90px;
    object-fit: contain;
}

.brand-text small {
    letter-spacing: 2px;
    font-size: 0.65rem;
    color: #5f6b63;
}

.nav-link {
    font-weight: 500;
    color: #1d2b20;
}

.nav-link:hover,
.nav-link:focus,
.navbar .nav-link.active {
    color: var(--agro-green);
}


/*section {
  width: 100%;
  box-sizing: border-box;
}*/

.hero-section {
/*    min-height: 100vh;*/
    color: #ffffff;
    position: relative;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    /*min-height: 100vh;*/
    /*min-height: 600px;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.banner-h { min-height: 500px; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(45,122,62,0.75), rgba(17,48,30,0.85));
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-stats,
.hero-note {
    position: relative;
    z-index: 3;
    background: #fff;
}

.hero-stats .stat-line,
.hero-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(17,48,30,0.1);
    padding: 0.8rem 0;
}

.hero-stats .stat-line:last-child {
    border-bottom: 0;
}

.avatar {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--agro-green);
}

.hero-highlight li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--agro-dark);
}

.brand-strip span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a5a4d;
}

.section-padding {
    padding: 5rem 0;
}

.section-tag {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--agro-green);
    font-weight: 600;
}

.about-media img {
    width: 100%;
    display: block;
}

.about-pill {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.95);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
}

.about-chip {
    background: var(--agro-light);
    color: var(--agro-green);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.impact-section {
    background: linear-gradient(135deg, #072b19, #0f5e36);
    color: #fff;
}

.impact-card {
    background: rgba(255,255,255,0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
}

.products-section .product-card,
.products-section .product-panel {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.8rem;
    box-shadow: 0 20px 45px rgba(19,38,29,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gall-card,
.cursor-pointer {
    cursor: pointer;
}

.gall-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(19,38,29,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gall-card img { border-radius: 1.5rem; overflow: hidden; }

.gall-card:hover,
.products-section .product-card:hover,
.products-section .product-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(19,38,29,0.15);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products-section .product-card:hover .product-image,
.products-section .product-panel:hover .product-image {
    transform: scale(1.05);
}

.product-detail-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-specs ul li,
.product-benefits ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(17,48,30,0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-specs ul li:last-child,
.product-benefits ul li:last-child {
    border-bottom: none;
}

.product-specs ul li::before,
.product-benefits ul li::before {
    content: "\2713";
    color: var(--agro-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: var(--agro-dark);
    margin-bottom: 1rem;
}

.innovation-list .innovation-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(17,48,30,0.1);
}

.innovation-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.8rem;
    box-shadow: 0 15px 30px rgba(41,69,55,0.08);
    height: 100%;
}

.innovation-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--agro-light);
    color: var(--agro-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.countries-list span {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--agro-light);
    font-weight: 500;
}

.global-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(19,38,29,0.17);
}

.timeline {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-item .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--agro-green);
    margin-top: 0.4rem;
}

.faq-section .accordion-button {
    font-weight: 600;
}

.contact-section .contact-card {
    background: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--agro-green);
}

.footer-section {
    background: #07160e;
    padding: 4rem 0 2rem;
}

.footer-links a {
    color: #dfe8e0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: var(--agro-gold);
}

.ft-links { text-decoration: none; font-weight: bold; }

/* Drawer */
.drawer-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 1.5rem;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.drawer-menu.open {
    pointer-events: all;
}

.drawer-menu.open .drawer-overlay {
    opacity: 1;
}

.drawer-menu.open .drawer-content {
    right: 0;
}

.drawer-link {
    display: block;
    padding: 0.6rem 0;
    color: #1c2a1f;
    font-weight: 500;
    text-decoration: none;
}

.drawer-accordion .drawer-toggle {
    width: 100%;
    border: none;
    background: transparent;
}

.drawer-submenu {
    display: none;
    padding-left: 1rem;
}

.drawer-submenu.open {
    display: block;
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"].visible {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(-25px);
}

[data-animate="fade-right"].visible {
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(25px);
}

[data-animate="zoom-in"] {
    transform: scale(0.95);
}

[data-animate="zoom-in"].visible {
    transform: scale(1);
}


/* Section Headings */
.section-heading {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}


.page-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../../../assets/frontend/img/cattle-feed-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}
.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-content {
    padding: 80px 0;
}
.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-box {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-10px);
}
.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box p { margin-bottom: 0px; }
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}
.stat-box {
    text-align: center;
    padding: 20px;
}
.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.stat-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}



@media (max-width: 991px) {
    .hero-stats,
    .hero-note {
        margin-top: 2rem;
    }

    .drawer-content {
    /* width: 85%; */
    width: 320px;
    }
}

@media (max-width: 575px) {
    .hero-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .btn-continue-1 {
        display: none;
    }

    .row { margin-right: 0px; margin-left: 0px; }
}

@media (min-width: 575px) {
    .btn-continue-2 {
        display: none;
    }
}

.cart-item img {
     max-width: 100px;
     height: auto;
 }

 .quantity-input {
     width: 50px;
 }

 .cart-summary {
     background-color: #f8f9fa;
     border-radius: 10px;
 }



.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;

}
.btn-lg-square {
    width: 48px;
    height: 48px;
}

.tap-to-call {
  position: fixed;
  display: flex;
  right: 15px;
  bottom: 190px;
  z-index: 99;
}

.tap-to-whatsapp {
  position: fixed;
  display: flex;
  right: 15px;
  bottom: 120px;
  z-index: 99;
}