/* ============================================================
   DOCTOR SWIPER SLIDER (HugeClinic) — FULL FINAL CSS
   ============================================================ */

/* ===== Section Container ===== */
.HugeClinicSliderMainContainer {
    padding: 60px 0 70px;
    background: #ffffff;
}

.HugeClinicSliderHeading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #389dff;
    margin-bottom: 35px;
    font-family: "Times New Roman", Times, serif;
}

/* ===== Swiper container ===== */
.HugeClinicSwiperLoop {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 50px;
    position: relative; /* Needed for arrows */
}

/* Slide wrapper */
.HugeClinicSwiperLoop .swiper-slide {
    display: flex;
    justify-content: center;
}

/* ===== Doctor Card ===== */
.HugeClinicDoctorCard {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    padding: 20px 20px 24px;
    text-align: center;
    max-width: 320px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.HugeClinicDoctorCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(56, 157, 255, 0.25);
}

/* Doctor Image */
.HugeClinicDoctorImage {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 4px solid #e1f1ff;
}

/* Name & Specialty */
.HugeClinicDoctorName {
    font-size: 18px;
    font-weight: 700;
    color: #143a63;
    margin-bottom: 4px;
}

.HugeClinicDoctorSpecialty {
    font-size: 14px;
    color: #389dff;
    margin-bottom: 10px;
}

/* ===== Buttons ===== */
.HugeClinicDoctorButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.HugeClinicButton {
    display: inline-block;
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* Primary button */
.HugeClinicButton.primary {
    background: #389dff;
    color: #ffffff;
    border-color: #389dff;
}

.HugeClinicButton.primary:hover {
    background: #207be0;
    border-color: #207be0;
}

/* Outline button */
.HugeClinicButton.outline {
    background: transparent;
    color: #389dff;
    border-color: #389dff;
}

.HugeClinicButton.outline:hover {
    background: #389dff;
    color: #ffffff;
}

/* ============================================================
   UPDATED PREMIUM GLASS ARROWS (STYLE A)
   ============================================================ */

.HugeClinicNavPrev,
.HugeClinicNavNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(56, 157, 255, 0.15); /* Glass background */
    backdrop-filter: blur(6px);
    color: #389dff;
    border: 2px solid rgba(56, 157, 255, 0.25);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(56, 157, 255, 0.18);
}

/* Arrow positions */
.HugeClinicNavPrev {
    left: -25px;  
}
.HugeClinicNavNext {
    right: -25px;
}

/* Arrow icons */
.HugeClinicNavPrev::after,
.HugeClinicNavNext::after {
    font-size: 22px;
    font-weight: 700;
    color: #389dff;
    line-height: 1;
    transition: color 0.25s ease;
}

.HugeClinicNavPrev::after {
    content: "←";
}

.HugeClinicNavNext::after {
    content: "→";
}

/* Hover Effect */
.HugeClinicNavPrev:hover,
.HugeClinicNavNext:hover {
    background: #389dff;
    border-color: #389dff;
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 25px rgba(56, 157, 255, 0.4);
}

.HugeClinicNavPrev:hover::after,
.HugeClinicNavNext:hover::after {
    color: #ffffff;
}

/* ============================================================
   Pagination Bullets
   ============================================================ */

.HugeClinicPagination .swiper-pagination-bullet {
    background: #c5dfff;
    opacity: 1;
}

.HugeClinicPagination .swiper-pagination-bullet-active {
    background: #389dff;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 992px) {
    .HugeClinicDoctorCard {
        max-width: 360px;
    }
}

@media (max-width: 576px) {
    .HugeClinicSliderMainContainer {
        padding: 40px 0 50px;
    }

    .HugeClinicSliderHeading {
        font-size: 26px;
    }

    .HugeClinicNavPrev { left: 0; }
    .HugeClinicNavNext { right: 0; }
}
