.circle-container {
    width: 250px;
    /* size of the circle (adjust as needed) */
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.profile-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.profile-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.profile-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.view-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #3490dc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.view-more:hover {
    background-color: #2779bd;
}

.section-title {
    text-align: left;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin: auto;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 25%;
    bottom: 0;
    width: 50%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex: 1;
}

.stats-row {
    display: flex;
    background-color: #00bce4;
    /* your blue */
    border-radius: 10px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    /* color: white; */
    color: #0b3d51;
}

.stat-label {
    font-size: 16px;
    color: white;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.nav-pills .nav-link {
    /* background-color: #2c2f3a;
    color: #ffffff;
    border-radius: 6px;
    padding: 12px;
    transition: 0.3s ease;
    font-weight: 500; */
    background-color: #ffffff;
    color: #0b3d51;
    border-radius: 6px;
    padding: 12px;
    transition: 0.3s ease;
    font-weight: 500;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    /* background-color: #007bff;
    color: #ffffff; */
    background-color: #39e5fb;
    color: #0b3d51;
}

.expert-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    padding-bottom: 10px;
    /* Reduced internal spacing */
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.expert-image {
    height: 170px;
    /* Or 180px as you prefer */
    object-fit: fill;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    filter: grayscale(100%);
}

.expert-card .card-body {
    padding: 10px 12px;
    /* Reduce padding */
}

.expert-card .card-title {
    font-size: 1rem;
    /* Slightly smaller text */
    margin-bottom: 0.5rem;
}

.expert-card .card-text {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.btn-outline-primary:after {
    content: none !important;
}