    .pmbg {
            background: linear-gradient(to bottom, #f5e7bc, #f8f9fa);
            padding-top: 20px;
            padding-bottom: 20px;
        }
        .pm-doctor-slider-section {
            padding: 40px 0;
            text-align: center;
            position: relative;
            max-width: 1400px; /* Ensure enough width for 4 cards + margins + arrows */
            margin: 0 auto;
        }
        .pm-doctor-slider-section h2 {
            color: #8b6f47;
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: bold;
        }
        .pm-doctor-slider-card {
            background-color: white;
            border-radius: 15px;
            padding: 20px;
            max-width: 280px; /* Slightly reduced to fit 4 cards better */
            margin: 0 auto;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }
        .pm-doctor-slider-img {
            width: 120px !important;
            height: 120px !important;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            margin: 0 auto 15px;
        }
        .pm-doctor-slider-btn-whatsapp {
            background-color: #25d366;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 14px;
        }
        .pm-doctor-slider-btn-whatsapp:hover {
            background-color: #1da851;
            color: white;
        }
        .pm-doctor-slider-btn-contact {
            background-color: #f4c430;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            width: 100%;
            font-size: 14px;
            margin-top: 10px;
        }
        .pm-doctor-slider-btn-contact:hover {
            background-color: #d9a406;
            color: white;
        }
        /* Owl Carousel custom styling */
        .owl-carousel {
            overflow: visible; /* Prevent clipping of navigation arrows */
        }
        .owl-carousel .owl-item .pm-doctor-slider-card {
            margin-right: 10px; /* Reduce margin to fit 4 cards better */
        }
        .owl-carousel .pm-doctor-slider-owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none; /* Ensure arrows don't interfere with card clicks */
        }
        .owl-carousel .pm-doctor-slider-owl-nav button {
            background: rgba(0, 0, 0, 0.5) !important;
            color: white !important;
            border: none !important;
            font-size: 24px !important;
            width: 40px !important;
            height: 40px !important;
            border-radius: 50% !important;
            z-index: 10; /* Ensure arrows stay on top */
            pointer-events: auto; /* Allow arrows to be clickable */
        }

        /* Hide arrows on mobile (screens < 600px) only */
        @media (max-width: 599px) {
            .owl-carousel .pm-doctor-slider-owl-nav {
                display: none;
            }
        }

        /* Position arrows at the middle left and right of the cards */
        .owl-carousel .pm-doctor-slider-owl-nav button.owl-prev {
            left: 0;
            margin-left: 10px; /* Small margin to avoid touching the edge */
            transform: translateY(-50%) translateX(-50%); /* Center vertically and move left to middle of left edge */
        }
        .owl-carousel .pm-doctor-slider-owl-nav button.owl-next {
            right: 0;
            margin-right: 10px; /* Small margin to avoid touching the edge */
            transform: translateY(-50%) translateX(50%); /* Center vertically and move right to middle of right edge */
        }

        /* Override disabled class to keep arrows visible and clickable */
        .owl-nav.disabled {
            pointer-events: auto !important;
            opacity: 1 !important;
        }

        .owl-nav.disabled button {
            background: rgba(0, 0, 0, 0.5) !important;
            color: white !important;
        }

        .pm-doctor-slider-see-more {
            background-color: #f4c430;
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 16px;
            margin-top: 30px;
            display: inline-block;
        }
        .pm-doctor-slider-see-more:hover {
            background-color: #d9a406;
            color: white;
        }
.owl-nav {
    display: flex !important;
    justify-content: space-between !important;
    position: relative !important;
    top: -300px !important;
}
.owl-prev,
.owl-next{
  height:30px !important;
  width:30px !important;
  border-radius:30px !important;
  padding-left:20px !important;
  padding-right:20px !important;
}