/* Wrapper */

.benchmark-team-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


/* Grid */
.benchmark-team-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    padding: 50px 0;
}

/* Card */
.team-card {


    padding: 20px;
    text-align: center;

}


/* Image */
.team-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100%;
    margin-bottom: 15px;
    background-color: #fff;
}

/* Name */
.team-card h4 {
    font-size: 18px;
    margin: 5px 0 5px;
    font-weight: 600;
    line-height: normal;
    color: #36393f;
    text-transform: capitalize;
}

/* Designation */
.team-card .designation {
    font-size: 12px;

    margin-bottom: 10px;
    font-weight: 400;
    line-height: 24px;
    color: #36393f
}

/* Excerpt */
.team-card .excerpt {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

/* Contact */
.team-contact {
    font-size: 13px;
    margin-bottom: 12px;
}

.team-contact a {
    color: #0073aa;
    text-decoration: none;
}

/* Social */
.team-social a {
    display: inline-block;
    margin: 0 6px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
}

.team-social a:hover {
    color: #0073aa;
}

/* Responsive */
@media (max-width: 1200px) {
    .benchmark-team-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .benchmark-team-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benchmark-team-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    .benchmark-team-list {
        grid-template-columns: 1fr;
    }

    .bt-location-filter {
        width: 100%;
    }
}


.bt-team-item {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        max-height 0.35s ease;
    overflow: hidden;
}

.bt-team-item.is-hiding {
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
}

.bt-team-item.is-hidden {
    display: none;
}




/* Layout */
.bm-team-filter-div {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: Arial, sans-serif;
}

/* Dropdown container */
.bm-team-dropdown {
    position: relative;
    width: 260px;
}

/* Selected value */
.bm-team-dropdown-selected {
    padding: 10px 40px 10px 12px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}

/* Arrow */
.bm-team-dropdown-selected::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #777;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Rotate arrow when open */
.bm-team-dropdown.open .bm-team-dropdown-selected::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Dropdown menu */
.bm-team-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Sticky search */
.bm-team-dropdown-search {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    outline: none;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
    z-index: 2;
}

/* Dropdown items */
.bm-team-dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
}

/* Hover */
.bm-team-dropdown-item:hover {
    background: #f3f3f3;
}

/* Active item */
.bm-team-dropdown-item.active {
    background: #a6d96a;
    color: #000;
}

/* Scrollbar (optional) */
.bm-team-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.bm-team-dropdown-menu::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 4px;
}


/* ===============================
   TEAM GRID
================================ */
.benchmark-team-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    padding: 50px 0;
}

/* ===============================
   TEAM CARD FADE
================================ */
.bt-team-item {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Fade out */
.bt-team-item.is-fading {
    opacity: 0;
}

/* Hidden (removed from layout) */
.bt-team-item.is-hidden {
    display: none;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .benchmark-team-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .benchmark-team-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benchmark-team-list {
        grid-template-columns: 1fr;
    }
}




/* ================================
   BENCHMARK PRODUCT SLIDER (ISOLATED)
================================ */



/* SECTION */
.bm-prod-scope .product-section {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

/* SWIPER */
.bm-prod-scope .product-swiper {
    width: 100%;
    padding: 0 40px 60px;
    padding-bottom: 120px;
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}

/* EQUAL HEIGHT FIX */
.bm-prod-scope .swiper-wrapper {
    align-items: stretch;
}

.bm-prod-scope .swiper-slide {
    height: auto;

}

/* CARD */
.bm-prod-scope .product-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.bm-prod-scope .product-image {
    padding: 30px;
    text-align: center;
}

.bm-prod-scope .product-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* CONTENT */
.bm-prod-scope .product-content {
    padding: 25px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bm-prod-scope .category {

    color: #36393F;
    margin-bottom: 6px;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 200% */
}

.bm-prod-scope h3 {
    font-size: 18px;
    margin: 0 0 8px;

    color: #36393F;

    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.bm-prod-scope p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* ACTIONS */
.bm-prod-scope .product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.bm-prod-scope .btn-view {
    color: #2bb673 !important;

    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 125% */
}

.bm-prod-scope .btn-cart {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #36393F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #36393F !important
}

/* HOVER */
.bm-prod-scope .product-card:hover {
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.bm-prod-scope .product-card:hover img {
    transform: scale(1.08);
}

/* NAVIGATION */
.bm-prod-scope .swiper-button-prev,
.bm-prod-scope .swiper-button-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
}

.bm-prod-scope .swiper-button-prev::after,
.bm-prod-scope .swiper-button-next::after {
    font-size: 22px !important;
    color: #36393F !important;
}




/* tab slider css *************
***********************************
**********************************/


.bmp-tab-section {
    padding: 40px 60px !important;
    position: relative !important;
}

.bmp-tabs-nav-container {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 2 !important;
    transform: translateY(calc(-50% - 60px)) !important;
}

.bmp-tab-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    margin-bottom: 20px !important;
}

.bmp-content-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
    background-color: #F9F9F9 !important;
    border-radius: 14px !important;
}

.bmp-content-image {
    flex: 0 0 45% !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    height: 320px !important;
}

.bmp-content-image img {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.bmp-content-text {
    flex: 1 !important;
    padding-right: 30px !important;
}

.bmp-content-text h2 {
    font-size: 24px !important;
    color: #36393F !important;
    line-height: 18px !important;
    margin-bottom: 15px !important;
}

.bmp-tab-description {
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    color: #36393F !important;
}

.bmp-tabs-container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 30px !important;
}

.bmp-tabs-navigation {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
}

.bmp-nav-button {
    background-color: #FFFFFF !important;
    color: #36393F !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.bmp-nav-button:hover:not(:disabled) {
    background-color: #FFFFFF !important;
}

.bmp-nav-button:disabled {
    cursor: not-allowed !important;
    opacity: 0.2 !important;
}

.bmp-nav-button.bmp-prev {
    left: 0 !important;
}

.bmp-nav-button.bmp-next {
    right: 0 !important;
}

.bmp-tabs-wrapper {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0px !important;
    overflow: hidden !important;
    position: relative !important;
}

.bmp-tabs-container-inner {
    display: flex !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 10px !important;
}

.bmp-tabs {
    display: flex !important;
    transition: transform 0.4s ease !important;
    min-width: 100% !important;
}

.bmp-tab {
    flex: 0 0 calc(100% / 6) !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 10px !important;
    background-color: transparent !important;
    border: none !important;
    border-top: 3px solid transparent !important;
    font-size: 18px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
    color: #36393F !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 0 !important;
}

.bmp-tab:hover {
    background-color: transparent !important;
    color: #36393F !important;
}

.bmp-tab.bmp-active {
    background-color: transparent !important;
    color: #36393F !important;
    border-top: 3px solid transparent !important;
    font-weight: 700 !important;
    position: relative !important;
}

.bmp-tab.bmp-active::before {
    content: "" !important;
    position: absolute !important;
    top: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 150px !important;
    height: 3px !important;
    background: #2ecc71 !important;
    border-radius: 2px !important;
}

.bmp-tab.bmp-active::after {
    content: "" !important;
    position: absolute !important;
    top: -5px !important;
    left: 50% !important;
    transform: translateX(-50%) rotate(180deg) !important;
    width: 12px !important;
    height: 6px !important;
    background: #2ecc71 !important;
    border-radius: 0 0 12px 12px !important;
}

.bmp-contact-section {
    text-align: center !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.bmp-contact-btn {
    display: inline-block !important;
    background: #2FBC84 !important;
    color: white !important;
    padding: 12px 30px !important;
    font-size: 12px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
    text-transform: uppercase !important;
}


.bmp-tab-content-btn {
    margin-top: 20px !important;
}

/* Desktop */
@media (min-width: 1269px) {
    .bmp-tabs-nav-container .bmp-nav-button.bmp-prev {
        left: 0px !important;
    }

    .bmp-tabs-nav-container .bmp-nav-button.bmp-next {
        right: 0px !important;
    }
}

/* <=1269px */
@media (max-width: 1269px) {
    .bmp-content-text {
        padding: 10px 10px 30px 20px !important;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .bmp-tab {
        flex: 0 0 25% !important;
    }

    .bmp-content-wrapper {
        flex-direction: column !important;
    }

    .bmp-content-image {
        flex: 0 0 auto !important;
        width: 100% !important;
        height: 300px !important;
    }

    .bmp-content-image img {
        height: 300px !important;
    }

    .bmp-tabs-wrapper {
        margin: 0 50px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bmp-tabs-nav-container {
        top: 45% !important;
    }

    .bmp-header {
        padding: 20px !important;
    }

    .bmp-content-text {
        padding: 10px 10px 30px 20px !important;
    }

    .bmp-header h1 {
        font-size: 2rem !important;
    }

    .bmp-tab-section {
        padding: 20px 15px !important;
    }

    .bmp-tabs-navigation {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .bmp-tabs-wrapper {
        order: 1 !important;
        margin: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .bmp-tabs {
        width: 200% !important;
    }

    .bmp-tab {
        flex: 0 0 50% !important;
    }

    .bmp-nav-button {
        transform: none !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }

    .bmp-content-wrapper {
        flex-direction: column !important;
        gap: 25px !important;
    }

    .bmp-content-image {
        width: 100% !important;
        height: 300px !important;
    }

    .bmp-content-image img {
        height: 300px !important;
    }

    .bmp-content-text h2 {
        font-size: 1.7rem !important;
    }
}

/* Animation for content switching */
.bmp-fade-in {
    animation: bmp-fadeIn 0.5s ease forwards;
}

@keyframes bmp-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Small mobile */
@media (max-width: 480px) {
    .bmp-tab {
        font-size: 0.9rem !important;
        padding: 12px 8px !important;
    }

    .bmp-nav-button {
        width: 45px !important;
        height: 45px !important;
    }

    .bmp-content-image {
        height: 300px !important;
    }

    .bmp-content-image img {
        height: 300px !important;
    }
}