.team-tab-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab-links .item-link {
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tab-links .item-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.img2.fit-img,
.img1.fit-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    background-color: #2c7384;
    color: #ffffff;
}

.img2.fit-img.current,
.img1.fit-img.current {
    border: 3px solid #ffaa60;
}

.roted_btn1 p {
    margin: 0;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    color: #ffaa60;
}

.d-flex,
.d-sm-block,
.d-sm-flex,
.d-block {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.md-mb50 {
    margin-bottom: 50px;
}

/* Updated ul li tab styles */
.custom-tab ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    background-color: #2c7384;
    margin: 20px 0;
}

.custom-tab ul li {
    flex: 1;
    padding: 15px 0;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

.custom-tab ul li:hover {
    background-color: #ffaa60;
    color: #2c7384;
}

.custom-tab ul li.active {
    background-color: #ffaa60;
    color: #fff;
}

.tab-content {
    display: none;
    margin-top: 10px;
}

.tab-content.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab-links .item-link {
        height: 120px;
        width: 120px;
    }

    .roted_btn1 p {
        font-size: 16px;
    }

    .custom-tab ul li {
        padding: 10px 0;
        font-size: 14px;
    }
}
