/* Custom styling for VITPRO on top of Oragnive Template */

/* Logo styling — large, crisp & prominent */
.logo a, .logo-mobile a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain;
}

.logo-mobile img {
    max-height: 40px !important;
    width: auto !important;
    object-fit: contain;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: #ffffff !important;
}

/* Header Quote CTA Button */
.btn-quote-header {
    background-color: #78a206;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-quote-header:hover {
    background-color: #333333;
    color: #ffffff !important;
}

/* Catalogue Table */
.vitpro-table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.vitpro-catalogue-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.vitpro-catalogue-table th {
    background-color: #78a206;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.vitpro-catalogue-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    color: #555555;
}

.vitpro-catalogue-table tr:nth-child(even) td {
    background-color: #f9fbf7;
}

.vitpro-catalogue-table tr:hover td {
    background-color: #edf5db;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background-color: #edf5db;
    color: #78a206;
}

.forms-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    background-color: #f0f0f0;
    color: #444444;
    margin-right: 5px;
    margin-bottom: 3px;
}

/* Timeline Process */
.vitpro-process-step {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.vitpro-process-step:hover {
    border-color: #78a206;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(120, 162, 6, 0.15);
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: #edf5db;
    color: #78a206;
    border: 2px solid #78a206;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.vitpro-process-step:hover .step-number-circle {
    background: #78a206;
    color: #ffffff;
}

/* FAQ Accordion */
.vitpro-faq-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vitpro-faq-item.active {
    border-color: #78a206;
    box-shadow: 0 5px 20px rgba(120, 162, 6, 0.1);
}

.vitpro-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    transition: all 0.3s ease;
}

.vitpro-faq-question:hover,
.vitpro-faq-item.active .vitpro-faq-question {
    color: #78a206;
}

.vitpro-faq-item.active .vitpro-faq-question i {
    transform: rotate(180deg);
}

.vitpro-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: #666666;
    line-height: 1.7;
    font-size: 15px;
}

.vitpro-faq-item.active .vitpro-faq-answer {
    padding: 0 25px 20px;
    max-height: 400px;
}

/* ── Certifications Badge Cards ─────────────────────────────── */
.cert-box {
    background: #ffffff;
    border: 1px solid #e8edf0;
    border-radius: 12px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.cert-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #78a206, #a3cc18);
    border-radius: 12px 12px 0 0;
}

.cert-box:hover {
    border-color: #78a206;
    box-shadow: 0 16px 40px rgba(120,162,6,0.14);
    transform: translateY(-6px);
}

/* Circular icon badge */
.cert-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f4f9e8, #e6f0c0);
    border: 2px solid #d4e88a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.cert-icon i {
    font-size: 28px;
    color: #78a206;
    line-height: 1;
}

.cert-box:hover .cert-icon {
    background: linear-gradient(135deg, #78a206, #a3cc18);
    border-color: #78a206;
}

.cert-box:hover .cert-icon i {
    color: #ffffff;
}

/* Page banner overlay — rich contrast so image is visible and text is 100% sharp */
.how-overlay2.bg-img1 {
    position: relative !important;
}

.how-overlay2.bg-img1::before {
    background: linear-gradient(180deg, rgba(12, 22, 10, 0.72) 0%, rgba(18, 34, 16, 0.80) 100%) !important;
    z-index: 1 !important;
}

.how-overlay2.bg-img1 > .container {
    position: relative !important;
    z-index: 2 !important;
}

.how-overlay2.bg-img1 h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
}

.how-overlay2.bg-img1 span,
.how-overlay2.bg-img1 a {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}

.how-overlay2.bg-img1 .flex-c-m.flex-w {
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 20px;
    border-radius: 30px;
    display: inline-flex !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}


/* Agri flow arrows */
.agri-step-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border-top: 4px solid #78a206;
}

/* ============================================================
   Header Navigation & Logo — Clean Layout Fix
   Works WITH the template's absolute-position model
   ============================================================ */

/* 1. Make the header bar compact */
.header-v1 .wrap-menu-desktop {
    height: 90px !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
}

/* 2. The limiter is the flex row — keep position:relative so absolute children anchor to it */
.header-v1 .limiter-menu-desktop {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    max-width: 1600px !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
}

/* 3. Logo column — absolutely anchored left, vertically centred */
.header-v1 .center-header {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    z-index: 1200 !important;
}

/* Logo image — properly sized, no absolute positioning fight */
.header-v1 .logo {
    width: auto !important;
    height: auto !important;
    position: static !important;
}

.header-v1 .logo a {
    display: flex !important;
    align-items: center !important;
}

.header-v1 .logo img {
    position: static !important;
    max-height: 48px !important;
    width: auto !important;
    margin: 0 !important;
    display: block !important;
}

/* 4. Menu — auto-width so it doesn't stretch; centred by parent flex */
.header-v1 .left-header {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    flex: 0 0 auto !important;
    width: auto !important;
    justify-content: center !important;
    /* nudge centre to account for logo on left (~140px) vs CTA on right (~190px) */
    margin-left: 25px !important;
    padding: 0 !important;
}

/* 5. Right CTA buttons — absolutely anchored right */
.header-v1 .right-header {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    z-index: 1200 !important;
    height: auto !important;
}

/* 6. Menu link sizing — compact natural spacing */
.header-v1 .main-menu > li {
    margin: 0 2px !important;
    padding: 0 !important;
}

.header-v1 .main-menu > li > a {
    padding: 8px 11px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    letter-spacing: 0.3px !important;
}

/* Responsive: shrink font on smaller desktops */
@media (max-width: 1200px) {
    .header-v1 .main-menu > li > a {
        padding: 8px 8px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 1050px) {
    .header-v1 .main-menu > li > a {
        padding: 8px 6px !important;
        font-size: 11.5px !important;
        letter-spacing: 0 !important;
    }
    .header-v1 .logo img {
        max-height: 44px !important;
    }
    .header-v1 .wrap-menu-desktop {
        height: 60px !important;
    }
}



/* Video Section Enhancements */
.video-preview-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    background: #000;
}

.video-play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background: #78a206;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(120, 162, 6, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-overlay-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: #25d366;
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0.5);
}

.video-play-overlay-btn i {
    font-size: 36px;
    color: #ffffff;
    margin-left: 4px;
}

/* Footer Social Buttons */
.footer-social-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #78a206 !important;
    color: #ffffff !important;
    margin-right: 10px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    font-size: 15px !important;
}

.footer-social-btn:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Ensure animsition page content is immediately visible */
.animsition {
    opacity: 1 !important;
}

/* Product Card Title Readability */
.block1-content {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 70%, rgba(255, 255, 255, 0) 100%) !important;
    padding-top: 35px !important;
}

.block1-content a {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.9);
}

.block1-content-more {
    color: #444444 !important;
    font-weight: 600 !important;
}

/* VITPRO Hero Video Banner */
.vitpro-hero-video-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0b1407;
}

@media (min-width: 992px) {
    .vitpro-hero-video-section {
        min-height: 700px;
        height: 88vh;
        max-height: 880px;
    }
}

.vitpro-hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.vitpro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(10, 25, 5, 0.45) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.vitpro-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.vitpro-hero-badge {
    display: inline-block;
    color: #a3cc39;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.vitpro-hero-title {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.vitpro-hero-title .highlight {
    color: #a3cc39;
}

.vitpro-hero-desc {
    color: #f5f5f5;
    font-size: 17px;
    line-height: 1.65;
    max-width: 660px;
    margin-bottom: 32px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.vitpro-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vitpro-hero-btns .btn-slide {
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 13px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary {
    background-color: #78a206 !important;
    color: #ffffff !important;
    border: 2px solid #78a206 !important;
}

.btn-hero-primary:hover {
    background-color: #5d7e05 !important;
    border-color: #5d7e05 !important;
    transform: translateY(-2px);
}

.btn-hero-video {
    background-color: #ffffff !important;
    color: #222222 !important;
    border: 2px solid #ffffff !important;
}

.btn-hero-video:hover {
    background-color: #78a206 !important;
    border-color: #78a206 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-hero-enquire {
    background-color: #222222 !important;
    color: #ffffff !important;
    border: 2px solid #333333 !important;
}

.btn-hero-enquire:hover {
    background-color: #78a206 !important;
    border-color: #78a206 !important;
    transform: translateY(-2px);
}

.btn-hero-whatsapp {
    background-color: #25d366 !important;
    color: #ffffff !important;
    border: 2px solid #25d366 !important;
}

.btn-hero-whatsapp:hover {
    background-color: #1ebe57 !important;
    border-color: #1ebe57 !important;
    transform: translateY(-2px);
}

.hero-sound-btn {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-sound-btn:hover {
    background: #78a206;
    border-color: #78a206;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .vitpro-hero-title {
        font-size: 32px;
    }
    .vitpro-hero-desc {
        font-size: 15px;
    }
    .hero-sound-btn {
        bottom: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* ==========================================================================
   VITPRO Key Highlights Responsive Shaped Centerpiece Image
   ========================================================================== */
.item-welcome-parent {
    padding-top: 290px !important;
    position: relative !important;
}

.item-welcome-parent > img,
.vitpro-highlight-shape-img {
    display: block !important;
    width: 44% !important;
    max-width: 450px !important;
    margin: 60px auto 0 !important;
    border-radius: 230px 230px 55px 55px !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1), 
                0 0 0 6px #ffffff, 
                0 0 0 8px rgba(120, 162, 6, 0.3) !important;
    object-fit: cover !important;
    aspect-ratio: 4 / 3.3;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 1;
}

.item-welcome-parent > img:hover,
.vitpro-highlight-shape-img:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14), 
                0 0 0 6px #ffffff, 
                0 0 0 10px rgba(120, 162, 6, 0.45) !important;
}

.item-welcome {
    z-index: 2;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .item-welcome-parent {
        padding-top: 310px !important;
    }
    .item-welcome-parent > img,
    .vitpro-highlight-shape-img {
        width: 40% !important;
        max-width: 380px !important;
        margin-top: 45px !important;
        border-radius: 190px 190px 45px 45px !important;
    }
}

@media (max-width: 991px) {
    .sec-welcome {
        padding-bottom: 50px !important;
    }

    .item-welcome-parent {
        padding-top: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }

    .item-welcome-parent > img,
    .vitpro-highlight-shape-img {
        display: block !important;
        order: 0 !important;
        flex: 0 0 100% !important;
        width: 85% !important;
        max-width: 380px !important;
        margin: 15px auto 45px !important;
        border-radius: 190px 190px 45px 45px !important;
    }

    .item-welcome {
        position: unset !important;
        width: calc(50% - 30px) !important;
        padding-bottom: 35px !important;
    }

    .item-welcome.two {
        order: -2 !important;
        margin: 0 15px !important;
    }

    .item-welcome.three {
        order: -1 !important;
        margin: 0 15px !important;
    }

    .item-welcome.one {
        order: 1 !important;
        margin: 0 15px !important;
    }

    .item-welcome.four {
        order: 2 !important;
        margin: 0 15px !important;
    }
}

@media (max-width: 575px) {
    .item-welcome {
        width: 100% !important;
        margin: 0 0 25px 0 !important;
        padding-bottom: 0 !important;
    }

    .item-welcome-parent > img,
    .vitpro-highlight-shape-img {
        max-width: 290px !important;
        border-radius: 145px 145px 35px 35px !important;
        margin: 15px auto 35px !important;
    }
}

/* ==========================================================================
   VITPRO Uniform Product Card Image Sizing (Responsive)
   ========================================================================== */

/* Products page category A/B/C cards */
.wrap-pic-w {
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.wrap-pic-w img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 6px 6px 0 0;
    transition: transform 0.4s ease;
}

.wrap-pic-w:hover img {
    transform: scale(1.05);
}

/* Index page featured product cards */
.block1-bg .wrap-pic-w img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Category D mini product cards (dehydrated vegetables) */
.col-sm-6.col-md-3.col-6 .wrap-pic-w img {
    height: 145px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    aspect-ratio: unset !important;
    border-radius: 4px !important;
}

/* Gallery grid images */
.gallery-item img,
.wrap-img-radius img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    display: block;
}

@media (max-width: 768px) {
    .gallery-item img,
    .wrap-img-radius img {
        height: 200px;
    }
    
    .col-sm-6.col-md-3.col-6 .wrap-pic-w img {
        height: 120px !important;
    }
}

@media (max-width: 480px) {
    .gallery-item img,
    .wrap-img-radius img {
        height: 170px;
    }
    
    .wrap-pic-w img {
        aspect-ratio: 3 / 2;
    }
    
    .col-sm-6.col-md-3.col-6 .wrap-pic-w img {
        height: 105px !important;
    }
}

/* Product card uniform height on grid rows */
.p-all-20 {
    display: flex;
    flex-direction: column;
}

.p-all-20 .block1-bg {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.p-all-20 .block1-bg .wrap-pic-w {
    flex-shrink: 0;
}

.p-all-20 .block1-bg .block1-content {
    flex: 1;
}

/* Ensure grid rows equal height across breakpoints */
@media (min-width: 576px) {
    .row.isotope-grid .p-all-20 {
        margin-bottom: 20px;
    }
}



/* ==========================================================================
   Agriculture to Nutrition Section — Fix Image Overflow & Layout
   ========================================================================== */

/* The sec-deal section: ensure the two halves are properly aligned */
.sec-deal .flex-w.flex-m {
    align-items: center !important;
    overflow: hidden;
}

/* Left image column: contain the spices image properly */
.sec-deal .size-w-3 {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 600px;
}

/* The spices image (other-02.png): constrain it to fill column without overflow */
.sec-deal .size-w-3 img {
    width: 100% !important;
    height: 100% !important;
    max-height: 560px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Right text column: ensure it has enough padding and proper reading flow */
.sec-deal .size-w-4 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 50px !important;
    padding-right: 40px !important;
}

/* Hide the decorative green pill shape (other-03.png) — it overlaps text */
.sec-deal .how-pos2 {
    display: none !important;
}

/* Responsive: stack vertically on tablets and mobile */
@media (max-width: 991px) {
    .sec-deal .size-w-3 {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 380px !important;
    }

    .sec-deal .size-w-3 img {
        max-height: 380px !important;
    }

    .sec-deal .size-w-4 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 25px !important;
    }

    .sec-deal .flex-w.flex-m {
        flex-direction: column !important;
    }
}

@media (max-width: 575px) {
    .sec-deal .size-w-3 {
        max-height: 260px !important;
    }

    .sec-deal .size-w-3 img {
        max-height: 260px !important;
    }

    .sec-deal .size-w-4 {
        padding: 30px 15px !important;
    }
}


/* ==========================================================================
   Agriculture Section — White Card Behind Text for Readability
   ========================================================================== */

/* White semi-opaque backdrop on the text column so it reads clearly
   over the wheat-field background image */
.sec-deal .size-w-4 {
    background-color: rgba(255, 255, 255, 0.96) !important;
    border-radius: 0 !important;
    box-shadow: -30px 0 60px rgba(255,255,255,0.95) !important;
}

/* Ensure all text in this column is dark and readable */
.sec-deal .size-w-4 h3,
.sec-deal .size-w-4 h4 {
    color: #1a1a1a !important;
}

.sec-deal .size-w-4 p,
.sec-deal .size-w-4 .txt-s-102 {
    color: #444444 !important;
}

/* ==========================================================================
   VITPRO Global Modern Button Styles — Pill Shape Everywhere
   ========================================================================== */

/* --- Primary filled green pill button (how-btn2 / hov-btn2 filled) --- */
.how-btn2,
a.how-btn2,
.flex-c-m.how-btn2 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #78a206 !important;
    color: #ffffff !important;
    border: 2px solid #78a206 !important;
    border-radius: 50px !important;
    padding: 0 28px !important;
    height: 46px !important;
    min-width: 130px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: auto !important;
    line-height: 1 !important;
}

.how-btn2:hover,
a.how-btn2:hover {
    background-color: #5d7e05 !important;
    border-color: #5d7e05 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(120, 162, 6, 0.35) !important;
    text-decoration: none !important;
}

/* --- Outlined secondary pill button (how-btn1 / hov-btn1) --- */
.how-btn1,
a.how-btn1 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: transparent !important;
    color: #333333 !important;
    border: 2px solid #cccccc !important;
    border-radius: 50px !important;
    padding: 0 28px !important;
    height: 46px !important;
    min-width: 130px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    width: auto !important;
    line-height: 1 !important;
}

.how-btn1:hover,
a.how-btn1:hover {
    background-color: #78a206 !important;
    border-color: #78a206 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(120, 162, 6, 0.3) !important;
    text-decoration: none !important;
}

/* Icon inside buttons */
.how-btn1 span,
.how-btn2 span {
    font-size: 12px !important;
    margin-left: 6px !important;
    transition: transform 0.3s ease !important;
}

.how-btn1:hover span,
.how-btn2:hover span {
    transform: translateX(4px) !important;
}

/* --- hov-btn1 used with border outline buttons (e.g. cart, filter) --- */
.hov-btn1:hover {
    background-color: #78a206 !important;
    border-color: #78a206 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
}

/* --- hov-btn2 used on green-fill buttons (bg10 class) --- */
.bg10.hov-btn2,
a.bg10.hov-btn2 {
    background-color: #78a206 !important;
    border-radius: 50px !important;
    border: 2px solid #78a206 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.bg10.hov-btn2:hover,
a.bg10.hov-btn2:hover {
    background-color: #5d7e05 !important;
    border-color: #5d7e05 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(120, 162, 6, 0.3) !important;
}

/* --- Standardize size-a-2 button dimensions with pill shape --- */
.size-a-2 {
    height: 46px !important;
    min-width: 140px !important;
    border-radius: 50px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* --- Filter/Tab buttons (category navigation pills) --- */
.hov-btn1.bo-all-1:not(.how-btn1):not(.how-btn2) {
    border-radius: 50px !important;
    border-width: 2px !important;
    transition: all 0.3s ease !important;
}

/* --- "Get a Quote" header button — already styled, just ensure pill shape --- */
.btn-quote-header {
    border-radius: 50px !important;
}

/* --- Contact form submit button --- */
input[type="submit"],
button[type="submit"] {
    border-radius: 50px !important;
    background-color: #78a206 !important;
    color: #ffffff !important;
    border: 2px solid #78a206 !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: #5d7e05 !important;
    border-color: #5d7e05 !important;
    transform: translateY(-2px) !important;
}

/* --- Dark filled "Add to Cart" type buttons --- */
a.bg10[class*="hov-btn2"],
button.bg10[class*="hov-btn2"] {
    border-radius: 50px !important;
    padding: 0 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

/* ==========================================================================
   Section Background Overlays & Content Visibility Enhancements
   ========================================================================== */

/* Clean soft overlay on sec-bring sections so background images (dried flakes / facilities)
   are visible while keeping all text 100% legible */
.sec-bring.bg-img1 {
    position: relative !important;
    background-color: #f7f9f6 !important;
}

.sec-bring.bg-img1::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.92) !important;
    z-index: 1 !important;
    pointer-events: none;
}

.sec-bring.bg-img1 > .container {
    position: relative !important;
    z-index: 2 !important;
}

/* Section heading badge card for 100% contrast */
.sec-bring .size-a-1 {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 16px 36px !important;
    border-radius: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(120, 162, 6, 0.2) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
}

/* Ensure headings in sec-bring are dark and crisp */
.sec-bring h3 {
    color: #1a1a1a !important;
    font-weight: 800 !important;
}

/* 6 Advantage cards in About Us "Why Choose Vitpro" section */
.sec-bring .p-all-30.bg0 {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e3ebd8 !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.35s ease !important;
    position: relative;
    overflow: hidden;
}

.sec-bring .p-all-30.bg0::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #78a206;
}

.sec-bring .p-all-30.bg0:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 35px rgba(120, 162, 6, 0.15) !important;
    border-color: #78a206 !important;
}

/* B2B Customized & Private Label Card */
.b2b-custom-card {
    background: rgba(255, 255, 255, 0.97) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(120, 162, 6, 0.2) !important;
    position: relative;
}

.b2b-custom-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #78a206, #a3cc18);
    border-radius: 14px 0 0 14px;
}

@media (max-width: 767px) {
    .b2b-custom-card {
        padding: 24px 18px !important;
    }
}

/* ==========================================================================
   Footer Layout & Alignment Fixes
   ========================================================================== */
.footer-col-title {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 18px !important;
}

.footer-col1 .footer-col-title {
    justify-content: flex-start !important;
}

.footer-col1 .footer-col-title a {
    display: inline-flex !important;
    align-items: center !important;
}

.footer-col1 .footer-col-title img {
    max-height: 52px !important;
    width: auto !important;
    display: block !important;
}

.footer-col1 p {
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.footer-col1 ul li {
    display: flex !important;
    align-items: flex-start !important;
    padding-bottom: 12px !important;
}

.footer-col1 .size-w-11 {
    width: 22px !important;
    min-width: 22px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
}

.footer-col1 .size-w-11 img {
    max-width: 16px !important;
    max-height: 18px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

.footer-col1 .size-w-12 {
    width: calc(100% - 34px) !important;
    font-size: 15px !important;
    line-height: 24px !important;
    color: #555555 !important;
}

.footer-col1 .size-w-12 a {
    color: #555555 !important;
    transition: color 0.2s ease !important;
}

.footer-col1 .size-w-12 a:hover {
    color: #78a206 !important;
}
