/********** Template CSS **********/
:root {
    --primary: #34AD54;
    --secondary: #FF9933;
    --light: #F6FFF2;
    --dark: #263A4F;
}

.btn {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}







.navbar-dark .navbar-nav .nav-link {
    padding: 30px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: var(--secondary);
}






@media (max-width: 991.98px) {
    
    
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px;
        background-color: white !important;
    }
   
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.bg-hero {
    background: url(../img/product-2.jpg) top right no-repeat;
    background-size: cover;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.bg-vegetable {
    background: linear-gradient(rgba(52, 173, 84, .2), rgba(52, 173, 84, .2)), url(../img/vegetable.png) bottom right no-repeat;
    background-size: contain;
}

.bg-fruit {
    background: linear-gradient(rgba(255, 153, 51, .2), rgba(255, 153, 51, .2)), url(../img/fruit.png) bottom right no-repeat;
    background-size: contain;
}

.service-item {
    box-shadow: 0 0 45px #EDEDED;
    transition: .5s;
}

.about i,
.service-item i {
    background-image: linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

.service-item:hover {
    color: var(--light);
    background: var(--primary) !important;
}

.service-item:hover i {
    background-image: linear-gradient(var(--light), var(--secondary));
}

.service-item:hover h4 {
    transition: .5s;
}

.service-item:hover h4 {
    color: var(--light);
}

.product-item {
    padding: 0 30px 30px 30px;
}

.product-item .btn-action {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .btn-action {
    bottom: 0;
    opacity: 1;
}

.product-item h5 {
    transition: .5s;
}

.product-item:hover h5 {
    opacity: 0;
}

.product-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 55%;
    bottom: 0;
    left: 0;
    background: url(../img/bg-product-1.png) left bottom no-repeat, url(../img/bg-product-2.png) right bottom no-repeat;
    background-size: contain;
    background-color: var(--primary);
    z-index: -1;
}

.product-carousel .owl-nav {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next{
    position: relative;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: var(--secondary);
}

.bg-testimonial {
    background: url(../img/testimonial.jpg) top center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: #D3D3D3;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.2);
}

.blog-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(52, 173, 84, 0), rgba(52, 173, 84, 1));
    z-index: 1;
}

.bg-footer {
    background:  linear-gradient(
    rgba(45, 65, 85, 0.8),  /* dark overlay, top */
    rgba(45, 65, 85, 0.8)   /* lighter overlay, bottom */
  ), url(../img/footer.png) center bottom no-repeat;
  background-size: cover;
}

@media (min-width: 991.98px) {
    .bg-footer {
        margin-top: 90px !important;
    }
}
/* Mobile navbar - White background with dark text */
@media (max-width: 991.98px) {
    /* White background for navbar on mobile */
    .navbar.bg-primary {
        background-color: #FFFFFF !important;
    }
    
    .navbar-collapse {
        background-color: #FFFFFF !important;
        margin-top: 0.5rem;
    }
    
    /* Dark text for nav links on mobile */
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 15px;
        color: var(--dark) !important;
        background-color: transparent;
    }
    
    /* Hover and active states on mobile */
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        background: var(--primary);
        color: Green !important;
        
    }
    
    
    /* Green hamburger toggle button on mobile */
    .navbar-toggler {
        border-color: var(--primary) !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2334AD54' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    /* Keep logo visible on mobile */
    .navbar-brand img {
        filter: none;
    }
}

/* Desktop - Keep green background */
@media (min-width: 992px) {
    .navbar.bg-primary {
        background-color: var(--primary) !important;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        color: #FFFFFF;
    }
}

/* Privacy Policy & Terms Modal Styles */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.policy-modal-content {
    background-color: #ffffff;
    margin: 3% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.policy-modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary, #007bff) 0%, #0056b3 100%);
    color: white;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.policy-close {
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.policy-close:hover,
.policy-close:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.policy-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.8;
}

.policy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.policy-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.policy-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary, #007bff);
    border-radius: 10px;
}

.policy-modal-body::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

.policy-modal-body h3 {
    color: var(--primary, #007bff);
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-modal-body h3:first-child {
    margin-top: 0;
}

.policy-modal-body p {
    margin-bottom: 15px;
    color: #333;
    text-align: justify;
}

.policy-modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-modal-body li {
    margin-bottom: 12px;
    color: #333;
}

.policy-modal-body strong {
    color: #000;
    font-weight: 600;
}

.policy-modal-footer {
    padding: 20px 30px;
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.policy-contact-info {
    background-color: #e7f3ff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--primary, #007bff);
}

.policy-contact-info i {
    color: var(--primary, #007bff);
    margin-right: 8px;
}

/* Footer Link Styles */
.footer-policy-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-policy-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: var(--secondary, #6c757d);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }

    .policy-modal-header {
        padding: 20px;
    }

    .policy-modal-header h2 {
        font-size: 1.4rem;
    }

    .policy-modal-body {
        padding: 20px;
    }

    .policy-modal-body h3 {
        font-size: 1.2rem;
    }

    .footer-policy-links a {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .policy-modal-header h2 {
        font-size: 1.2rem;
    }

    .policy-close {
        font-size: 28px;
        width: 30px;
        height: 30px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    line-height: 60px;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        line-height: 50px;
    }
}

/* ===================================
   Certifications Section Styles
   =================================== */

/* Main Container Styling */
.container-fluid.bg-light {
    background-color: #f8f9fa !important;
}

/* Certification Card Styling */
.certification-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.certification-card:hover::before {
    left: 100%;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #86B817;
}

/* Logo Wrapper */
.certification-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

/* Certification Logo Styling */
.certification-logo {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.certification-card:hover .certification-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Certification Card Headings */
.certification-card h4 {
    color: #333333;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.certification-card:hover h4 {
    color: #86B817;
}

.certification-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
}

/* Info Box Styling */
.certification-info-box {
    background: linear-gradient(135deg, rgba(134, 184, 23, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(134, 184, 23, 0.1);
    transition: all 0.3s ease;
}

.certification-info-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.certification-info-box h5 {
    color: #333333;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.certification-info-box p {
    color: #666666;
    margin-bottom: 0;
}

.certification-info-box i {
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, color 0.3s ease;
}

.certification-info-box .col-md-4:hover i {
    transform: translateY(-5px) scale(1.1);
    color: #86B817 !important;
}

/* Section Title Styling */
.certification-info-box .col-md-4 {
    transition: transform 0.3s ease;
}

.certification-info-box .col-md-4:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .certification-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .certification-logo {
        max-width: 150px;
        max-height: 100px;
    }
    
    .certification-logo-wrapper {
        min-height: 120px;
        padding: 15px;
    }
    
    .certification-card {
        margin-bottom: 20px;
    }
    
    .certification-card h4 {
        font-size: 1.25rem;
    }
    
    .certification-info-box .col-md-4 {
        margin-bottom: 30px;
    }
    
    .certification-info-box .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .certification-info-box {
        padding: 30px 20px !important;
    }
}

@media (max-width: 576px) {
    .certification-logo {
        max-width: 120px;
        max-height: 80px;
    }
    
    .certification-card {
        padding: 20px 15px !important;
    }
    
    .certification-logo-wrapper {
        min-height: 100px;
    }
    
    .certification-card h4 {
        font-size: 1.1rem;
    }
    
    .certification-card p {
        font-size: 0.9rem;
    }
    
    .certification-info-box h5 {
        font-size: 1rem;
    }
    
    .certification-info-box i {
        font-size: 2rem !important;
    }
}

/* Animation for section appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certification-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.certification-card:nth-child(1) {
    animation-delay: 0.1s;
}

.certification-card:nth-child(2) {
    animation-delay: 0.3s;
}

/* Pulse animation for icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.certification-info-box i {
    animation: pulse 2s ease-in-out infinite;
}

.certification-info-box .col-md-4:nth-child(1) i {
    animation-delay: 0s;
}

.certification-info-box .col-md-4:nth-child(2) i {
    animation-delay: 0.3s;
}

.certification-info-box .col-md-4:nth-child(3) i {
    animation-delay: 0.6s;
}

/* Additional styling for better visual appeal */
.certification-card h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #86B817;
    margin: 10px auto 0;
    transition: width 0.3s ease;
}

.certification-card:hover h4::after {
    width: 80px;
}