/* =========================
           SECTION
        ========================= */

.committee-And-Notification {
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

.committee-header-And-Notification {
    text-align: center;
    margin-bottom: 45px;
}

.committee-header-And-Notification h2 {
    font-size: 2.7rem;
    color: #1a2b49;
    font-weight: bold;
}

/* =========================
           SCROLL WRAPPER
        ========================= */

.scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.committee-cards-container {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: scroll 28s linear infinite;
}

.committee-cards-container:hover {
    animation-play-state: paused;
}

/* =========================
           CARD DESIGN
        ========================= */

.doctor-card {
    width: 320px;
    background: white;
    border-radius: 100px;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    flex-shrink: 0;
}

.doctor-card:hover {
    transform: translateY(-6px);
}

/* Passport Circle Image */

.doctor-img img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0d6efd;
}

/* Right Side Content */

.doctor-info h3 {
    font-size: 1.2rem;
    color: #1a2b49;
    margin-bottom: 6px;
}

.doctor-info span {
    color: #0d6efd;
    font-size: 0.95rem;
    font-weight: 600;
}

/* =========================
           AUTO SCROLL ANIMATION
        ========================= */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
           MOBILE RESPONSIVE
        ========================= */

@media (max-width: 768px) {

    .committee-header h2 {
        font-size: 2rem;
    }

    .doctor-card {
        width: 260px;
        padding: 12px 16px;
        border-radius: 80px;
    }

    .doctor-img img {
        width: 75px;
        height: 75px;
    }

    .doctor-info h3 {
        font-size: 1rem;
    }

    .doctor-info span {
        font-size: 0.82rem;
    }
}


/* =========================
   Committee Footer Button
========================= */

.committee-footer-btn {
    text-align: center;
    margin-top: 45px;
}

.committee-footer-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 34px;

    /* background: linear-gradient(135deg, #0d6efd, #0047b3); */
    background: var(--secondary-color);
    color: #fff;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 50px;

    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.25);

    transition: all 0.3s ease;
}

/* Hover Effect */

.committee-footer-btn a:hover {
    transform: translateY(-4px) scale(1.03);
    background: var(--primary-color);
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.35);
}

/* Active Click */

.committee-footer-btn a:active {
    transform: scale(0.97);
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .committee-footer-btn a {
        padding: 12px 26px;
        font-size: 0.95rem;
    }
}