/* Default (desktop) */
.header-logo img {
    height: 55px;
}

/* Mobile devices */
@media (max-width: 767px) {
    .header-logo img {
        height: 50px; /* adjust as needed */
    }
} 


.content-description ol {
    counter-reset: custom-counter;
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-description ol li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}

.content-description ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    line-height: 26px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
}

.content-description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-description ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.content-description ul li::before {
    content: "\f058"; /* Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 14px;
}

.content-description b,
.content-description strong {
    color: var(--primary);
    font-weight: 600;
}
.content-description p {
    margin-bottom: 12px;
}

.content-description li {
    line-height: 1.6;
}


.content-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.content-description table th,
.content-description table td {
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.content-description table thead th {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.content-description table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.content-description table tbody tr:hover {
    background-color: rgba(34, 96, 191, 0.08); /* primary with opacity */
}

.content-description table {
    border-radius: 6px;
    overflow: hidden;
}

.content-description table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
#distributionMap {
    border: 1px solid #e5e5e5;
}

.feature-box.feature-box-style-4 {
    padding: 20px 15px;
    transition: all 0.3s ease;
}

.feature-box.feature-box-style-4:hover {
    transform: translateY(-5px);
}

/* ORDERED LIST */
.job-description ol,
.job-skills ol {
    margin: 0 0 15px 20px;
    padding-left: 20px;
    list-style: decimal;
}

.job-description ol li,
.job-skills ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* UNORDERED LIST */
.job-description ul,
.job-skills ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.job-description ul li,
.job-skills ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.job-description ul li:before,
.job-skills ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
    font-size: 14px;
}

.icon-placeholder{
    width:50px;
    min-width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #2E7D32;
    border-radius:16px;
    color:#2E7D32;
    background:#fff;
    transition:all .3s ease;
}

.icon-placeholder svg{
    width:42px;
    height:42px;
}

.d-flex:hover .icon-placeholder{
    background:#2E7D32;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}
/* Carousel */

.featured-products-carousel .owl-stage{
    display:flex;
}

.featured-products-carousel .owl-item{
    display:flex;
    height:auto;
}

.featured-products-carousel .item{
    width:100%;
    height:100%;
}

/* Card */

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .3s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* Image */

.product-image{
    padding:25px 25px 15px;
    text-align:center;
}

.product-image img{
    width:100%;
    height:220px;
    object-fit:contain;
    transition:transform .35s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.05);
}

/* Content */

.product-content{
    padding:0 25px 25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h4{
    font-size:18px;
    font-weight:600;
    line-height:1.45;
    margin-bottom:12px;
    min-height:52px;
}

.product-content h4 a{
    color:#222;
    text-decoration:none;
    transition:.2s;
}

.product-content h4 a:hover{
    color:#2E7D32;
}

.product-content p{
    font-size:14px;
    line-height:1.75;
    color:#777;
    margin-bottom:22px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:50px;
}

/* Button */

.btn-product{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
   /*  align-self:flex-start; */

    padding:10px 24px;

    border:2px solid #2E7D32;
    border-radius:30px;

    color:#2E7D32;
    background:#fff;

    font-size:13px;
    font-weight:600;
    text-decoration:none;

    transition:all .25s ease;
}

.btn-product:hover{
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
}

/* Mobile */

@media (max-width:991px){

    .product-image img{
        height:190px;
    }

    .product-content{
        padding:0 20px 20px;
    }

}