.bhakhari-section {
    padding: 80px 0;
}

.bhakhari-title h1 {
    font-size: 30px;
    color: #d00000;
}

.bhakhari-title h1 {
    font-size: 30px;
    color: #d00000;
}

.bhakhari-img {
    border-radius: 20px;
    overflow: hidden;
    /* keeps zoom inside */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.4s ease;
}

.bhakhari-img img {
    border-radius: 20px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}


.bhakhari-img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.bhakhari-img:hover img {
    transform: scale(1.08);
}

/*products-overview*/
.products-overview h2 {
    font-size: 25px;
    color: #0c1e21;
}


/*bhakhari-features*/
.bhakhari-features {
    display: flex;
    /*justify-content: center; */
    gap: 15px;
    flex-wrap: wrap;
}


.bhakhari-feature-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 2px solid #d00000;
    border-radius: 50px;
    background: #fff;
    color: #d00000;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.4s ease;
}


.bhakhari-feature-box .dot {
    width: 8px;
    height: 8px;
    background: #d00000;
    border-radius: 50%;
    transition: all 0.4s ease;
}


.bhakhari-feature-box:hover {
    background: #d00000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(208, 0, 0, 0.3);
}

.bhakhari-feature-box:hover .dot {
    background: #fff;
}


@media (max-width: 768px) {
    .bhakhari-features {
        justify-content: center;
    }

    .bhakhari-feature-box {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }
}



/* ============================= */
/* PRODUCT LIST */
/* ============================= */
.bhakhari-list-heading {
    font-size: 25px;
    color: #d00000;
}

.bhakhari-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 25px;
}

.bhakhari-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    font-weight: 500;
    color: #333;
    transition: all 0.35s ease;
}

.bhakhari-list li i {
    color: #d00000;
    font-size: 14px;
    background: rgba(208, 0, 0, 0.08);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bhakhari-list li:hover {
    border-color: #d00000;
    box-shadow: 0 10px 25px rgba(208, 0, 0, 0.08);
    transform: translateY(-4px);
}

.bhakhari-list li:hover i {
    background: #d00000;
    color: #fff;
}

@media (max-width: 768px) {
    .bhakhari-list {
        grid-template-columns: 1fr;
    }
}





/*#0c1e21*/
/*#d00000*/