
    .committee-section {
        padding: 60px 0;
        background: linear-gradient(180deg, #d64b3f, #b41228);
        text-align: center;
    }

    .committee-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .member-card {
        background: rgba(255, 255, 255, 0.15);
        padding: 30px 20px;
        width: 300px;
        text-align: center;
        border-radius: 14px;
        backdrop-filter: blur(6px);
        transition: all 0.45s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .member-card:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-12px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }

    /* IMAGE WRAPPER FOR ROTATING COLOR RING */
    .member-img-wrap {
        position: relative;
        width: 160px;
        height: 160px;
        margin: 0 auto 18px auto;
    }

    /* Animated rotating ring */
    .member-img-wrap::before {
        content: "";
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        background: conic-gradient(
            #f2c200,
            #000000,
            #7300a3,
            #d1007f,
            #0069b1,
            #00a651,
            #f26522,
            #f2c200
        );
        z-index: 0;
        animation: spinRing 3.5s linear infinite;
        opacity: 0;
        transition: 0.4s ease;
    }

    /* Show rotating ring on hover */
    .member-card:hover .member-img-wrap::before {
        opacity: 1;
    }

    /* Inner image */
    .member-img-wrap img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        position: relative;
        z-index: 2;
        background: #ffffff;
        padding: 6px;
        transition: 0.4s ease;
    }

    .member-card:hover .member-img-wrap img {
        transform: scale(1.06);
    }

    /* Animation keyframes */
    @keyframes spinRing {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Text Styles */
    .member-card h3 {
        margin: 25px 0;
        font-size: 20px;
        color: #fff;
        font-weight: 700;
    }

    .member-card .city {
        margin-top: -15px;
        color: #ffecec;
        font-size: 16px;
    }

    .member-card .role {
        margin: 0;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
    }