.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
    background: #e6f5ff;
}
.team-carousel {
    display: flex;
    padding: 20px;
}
.team-box {
    background: #cdefff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    margin: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.readmore-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}
#popup-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#popup {
    background: #fff;
    padding: 20px;
    max-width: 500px;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
}
.close-popup {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
.team-carousel {
    margin: 20px auto;
}
.team-slide {
    padding: 10px;
}
.team-box {
    background: #ccf0ff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.readmore-btn {
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}
