.page-header{

height:320px;

background:
linear-gradient(rgba(22, 79, 50, 0.897),rgb(27, 94, 60)),
url(images/products-banner.jpg);

background-size:cover;
background-position:center;

margin-top:95px;

}

.product-card{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.3s;

height:100%;

}

.product-card:hover{

transform:translateY(-6px);

}

.product-card i{

font-size:2.5rem;

color:var(--vex-success);

margin-bottom:20px;

}

/* ============================================
   PRODUCT OVERVIEW — FINAL
   ============================================ */

/* Remove inline padding from all sections */
.featured-product {
    padding: 80px 0;
}

/* Alternate background for visual rhythm */
.featured-product:nth-of-type(even) {
    background-color: #f8fafb;
}

/* ============================================
   DESKTOP (≥992px): Zigzag layout
   ============================================ */
@media (min-width: 992px) {
    
    .product-content {
        padding: 20px
    }
    
    .product-image {
        padding: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .product-image img {
        max-height: 580px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(11, 61, 92, 0.1);
    }
}

/* ============================================
   MOBILE (≤991px): Stack, text first, centered image
   ============================================ */
@media (max-width: 991px) {
    
    .featured-product {
        padding: 50px 0;
    }
    
    /* Text content */
    .product-content {
        padding: 0 24px 30px;
    }
    
    /* Image container — centered with gaps */
    .product-image {
        padding: 0 15px 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .product-image img {
        max-height: 340px;
        width: auto;
        max-width: 95%;
        object-fit: contain;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(11, 61, 92, 0.1);
    }
}







/* ============================================
   APPLICATIONS PAGE
   ============================================ */

.applications-section {
    background: #F8FAFB;
    padding: 80px 0;
}

/* Application Card */
.app-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 30px;
    border: 1px solid rgba(11, 61, 92, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11, 61, 92, 0.1);
    border-color: rgba(13, 148, 136, 0.2);
}

/* Highlighted card */
.app-card--highlight {
    border: 2px solid var(--vex-warning);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.08);
}

/* Icon */
.app-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.app-card__icon i {
    font-size: 1.5rem;
    color: var(--vex-teal);
}

.app-card--highlight .app-card__icon {
    background: rgba(212, 168, 83, 0.15);
}

.app-card--highlight .app-card__icon i {
    color: var(--vex-warning);
}

/* Title */
.app-card__title {
    font-family: var(--vex-font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vex-dark-navy);
    margin-bottom: 10px;
}

/* Description */
.app-card__desc {
    font-size: 0.95rem;
    color: var(--vex-text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Feature List */
.app-card__list {
    margin-top: auto;
}

.app-card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--vex-text);
    margin-bottom: 6px;
}

.app-card__list li i {
    color: var(--vex-success);
    font-size: 1rem;
}


/* ─── CROPS STRIP ─── */
.crops-strip {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    border-top: 1px solid rgba(11, 61, 92, 0.06);
    border-bottom: 1px solid rgba(11, 61, 92, 0.06);
}

.bg-soft-navy { background: rgba(11, 61, 92, 0.08) !important; }
.text-navy { color: #0B3D5C !important; }

.crops-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.crop-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0B3D5C;
    transition: all 0.25s ease;
    cursor: default;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.crop-pill:hover {
    border-color: #0D9488;
    background: #f0fdfa;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.12);
}

.crop-pill i {
    font-size: 0.5rem;
    transition: transform 0.25s ease;
}

.crop-pill:hover i {
    transform: scale(1.4);
}

/* ─── Crop Colors ─── */
.text-tomato      { color: #e74c3c; }
.text-cucumber    { color: #27ae60; }
.text-pepper      { color: #e67e22; }
.text-lettuce     { color: #2ecc71; }
.text-strawberry  { color: #c0392b; }
.text-melon       { color: #f39c12; }
.text-orchid      { color: #9b59b6; }
.text-anthurium   { color: #e91e63; }
.text-rose        { color: #e91e63; }
.text-carnation   { color: #ff6b6b; }
.text-chrysanthemum{ color: #f1c40f; }
.text-herbs       { color: #16a085; }

/* ─── Mobile Fix ─── */
@media (max-width: 576px) {
    .crops-grid {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    .crop-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
        min-width: 140px;
    }
}

@media (max-width: 360px) {
    .crop-pill {
        flex: 1 1 100%;
    }
}

.letter-spacing-2 {
    letter-spacing: 0.15em;
}

/* Responsive */
@media (max-width: 991px) {
    .applications-section {
        padding: 50px 0;
    }
    .app-card {
        padding: 28px 22px;
    }
}





.packaging-section {
    background: #F8FAFB;
    padding: 80px 0;
}

.pack-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(11, 61, 92, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11, 61, 92, 0.1);
}

.pack-card--highlight {
    border: 2px solid var(--vex-warning);
}

.pack-card__image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f4f3 0%, #e8f0ef 100%);
    overflow: hidden;
}

.pack-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pack-card__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--vex-success);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.pack-card__tag--custom {
    background: var(--vex-warning);
    color: var(--vex-dark-navy);
}

.pack-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pack-card__title {
    font-family: var(--vex-font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vex-dark-navy);
    margin-bottom: 10px;
}

.pack-card__desc {
    font-size: 0.9rem;
    color: var(--vex-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pack-card__specs {
    margin-top: auto;
}

.pack-card__specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--vex-text);
    margin-bottom: 6px;
}

.pack-card__specs li i {
    color: var(--vex-success);
}

.pack-card__cta {
   background-color: #0f5132;
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.pack-card__cta:hover {
    background: rgb(1, 63, 1);
    color: #fff;
}

.pack-features {
    background: #fff;
    border-top: 1px solid rgba(11, 61, 92, 0.06);
}

.pack-feature {
    padding: 20px 0;
}

.pack-feature i {
    font-size: 2rem;
    color: var(--vex-teal) !important;
    margin-bottom: 10px;
    display: block;
}

.pack-feature h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vex-navy);
    margin: 0;
}

@media (max-width: 991px) {
    .packaging-section { padding: 50px 0; }
    .pack-card__body { padding: 22px; }
}







.catalogue-section {
    background: #F8FAFB;
    padding: 80px 0;
}

.catalogue-main {
    background: #fff;
    border: 1px solid rgba(11, 61, 92, 0.08);
    box-shadow: 0 8px 40px rgba(11, 61, 92, 0.06);
}

.catalogue-icon i {
    font-size: 4rem;
    color: var(--vex-teal);
}

.catalogue-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--vex-text-secondary);
    background: rgba(13, 148, 136, 0.06);
    padding: 8px 16px;
    border-radius: 20px;
}

.meta-item i {
    color: var(--vex-teal);
}

.catalogue-link {
    display: block;
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(11, 61, 92, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.catalogue-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(11, 61, 92, 0.08);
    border-color: rgba(13, 148, 136, 0.2);
}

.catalogue-link i {
    font-size: 2.5rem;
    color: rgb(1, 111, 1) !important;
    margin-bottom: 16px;
    display: block;
}

.catalogue-link h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgb(1, 71, 1);
    margin-bottom: 8px;
}

.catalogue-link p {
    font-size: 0.9rem;
    color: var(--vex-text-secondary);
    margin: 0;
}

@media (max-width: 991px) {
    .catalogue-section { padding: 50px 0; }
    .catalogue-main { padding: 36px 24px !important; }
}






/* ============================================
   VEXOVIAN TECHNICAL SPECIFICATIONS
   All classes prefixed with .vex-specs-
   ============================================ */

.vex-specs-section {
    background: #F8FAFB;
    padding: 80px 0;
}

/* --- Section Heading --- */
.vex-specs-heading {
    font-family: var(--vex-font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vex-dark-navy);
    margin-bottom: 1.5rem;
}

/* --- Table Wrapper Card --- */
.vex-specs-table-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(11, 61, 92, 0.08);
    box-shadow: 0 4px 20px rgba(11, 61, 92, 0.04);
}

/* --- Custom Table --- */
.vex-specs-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.vex-specs-table thead th {
    background: var(--vex-navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 18px;
    border: none;
    white-space: nowrap;
}

.vex-specs-table tbody td {
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--vex-text);
    border-bottom: 1px solid rgba(11, 61, 92, 0.06);
    vertical-align: middle;
}

.vex-specs-table tbody tr:last-child td {
    border-bottom: none;
}

.vex-specs-table tbody tr:hover td {
    background: rgba(13, 148, 136, 0.03);
}

/* --- Status Badge (custom, not Bootstrap) --- */
.vex-specs-badge-pass {
    display: inline-block;
    padding: 5px 12px;
    background: #d1e7dd;
    color: #0f5132;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Note Text --- */
.vex-specs-note {
    color: var(--vex-text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* --- Action Buttons Area --- */
.vex-specs-actions {
    text-align: center;
    margin-top: 3rem;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .vex-specs-section {
        padding: 50px 0;
    }
    .vex-specs-table-wrap {
        padding: 24px;
    }
    .vex-specs-table thead th,
    .vex-specs-table tbody td {
        padding: 12px 14px;
        font-size: 0.88rem;
    }
}
/* ============================================
   VEX-SPECS TABS — GREEN THEME
   ============================================ */

.vex-specs-section .nav-pills {
    gap: 10px;
}

.vex-specs-section .nav-pills .nav-link {
    color: var(--vex-text-secondary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: 1.5px solid rgba(13, 148, 136, 0.25);
    background: #fff;
    transition: all 0.3s ease;
}

.vex-specs-section .nav-pills .nav-link:hover {
    background: rgba(13, 148, 136, 0.08);
    color: var(--vex-teal);
    border-color: var(--vex-teal);
}

.vex-specs-section .nav-pills .nav-link.active {
    background: var(--vex-success);
    color: #fff;
    border-color: var(--vex-success);
    box-shadow: 0 4px 16px rgba(25, 135, 84, 0.3);
}

.vex-specs-section .nav-pills .nav-link i {
    margin-right: 8px;
}
@media (max-width: 576px) {
    .vex-specs-actions .btn {
        width: 100%;
        margin: 0 0 12px 0 !important;
    }
    .vex-specs-actions .btn:last-child {
        margin-bottom: 0 !important;
    }
}