/* doctorhp card container */
.doctorhp-card {
    display: block;
    padding: 10px;
    margin: 0px auto;
    position: relative; /* Allows the button container to position itself */
    overflow: hidden; /* Prevents overflow of content */
    padding-bottom: 20px; /* Ensures space at the bottom for buttons */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Light border around the card */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for modern look */
    background-color: white; /* White background for the card */
}

/* doctorhp image container */
.doctorhp-image-container {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(246, 130, 31, 1) 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* doctorhp image */
.doctorhp-image {
    width: 100% !important;
    border-radius: 10px;
}

/* doctorhp details */
.doctorhp-details {
    text-align: center;
}

/* doctorhp name */
.doctorhp-name {
    display: grid;
}

/* doctorhp location */
.doctorhp-name .doctorhp-location {
    font-size: 14px;
    font-weight: 500;
    color: #0B1215;
    padding-left: 14px;
}

.doctorhp-name .doctorhp-location::before {
    content: "\f3c5"; /* Font Awesome location icon code */
    font-family: "Font Awesome 6 Free"; /* Ensure you're using the correct Font Awesome version */
    font-weight: 900;
    position: relative;
    left: -2%;
    top: 0%;
    transform: translateY(-50%);
}

/* doctorhp button container */
.doctorhp-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

/* doctorhp buttons */
.doctorhp-button {
    flex: 1;
    text-align: center;
    border: none;
    background-color: #f6821f; /* Primary color */
    color: white;
    padding: 12px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 8px 4px;
}

.doctorhp-button:hover {
    background-color: #08666e; /* Secondary color on hover */
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hover shadow */
}

/* doctorhp details typography */
.doctorhp-details h3 {
    color: black;
    font-size: 18px;
    margin-bottom: 8px;
}

.doctorhp-details p {
    color: black;
    font-size: 14px;
    line-height: 20px;
    margin: 4px 0;
}

/* Swiper container and wrapper */
.swiper-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0; /* Adds vertical space around the slider */
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch; /* Ensures all slides align properly */
}

/* Individual slide styling */
.swiper-slide {
    display: flex;
    flex-shrink: 0;
    padding: 10px; /* Adds padding around each card */
    transition: transform 0.3s ease; /* Smooth hover animation */
}

.swiper-slide:hover {
    transform: scale(1.03); /* Subtle zoom effect on hover */
}

/* Navigation buttons */
.swiper-button-next, .swiper-button-prev {
    color: #f6821f; /* Primary color */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    margin-top: 40%;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #f6821f; /* Change background on hover */
    color: #fff;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: #08666e; /* Default color */
    opacity: 0.7;
    transition: opacity 0.2s;
}

.swiper-pagination-bullet-active {
    background: #f6821f; /* Active bullet color */
    opacity: 1;
}


@media (max-width: 767px) {
    .doctorch-card {
        width: 80%;
    }
    .swiper-pagination-bullet {
        display: none;
    }
    .doctorhp-card {
        width: 80%;
    }
}
/* Review */
#patient-testimonials{
    background:#EDFCFE; padding:60px 0px;
}
.video-slider-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
}
.video-slider .owl-nav button.owl-prev, 
.video-slider .owl-nav button.owl-next {
    background: #F6821F;
    border: none;
    color: #fff;
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    border-radius: 50%; /* Keep it circular */
    outline: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%); /* Centering */
    display: flex; /* Center content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.video-slider .owl-nav button.owl-prev {
    left: -50px; /* Adjust as needed */
}

.video-slider .owl-nav button.owl-next {
    right: -90px; /* Adjust as needed */
}

.video-slider .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.video-card.main-video {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.youtube-video {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (9/16 * 100) */
}
.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px 10px 0 0;
}
.video-card .card-body {
    padding: 15px;
    height: 160px;
}
.card-title {
    font-size: 1rem;
    margin: 0;
    color: #0B1215;
    font-weight: 500;
}
.video-card .card-text {
    font-size: 0.9rem;
    color: #777;
}
.owl-dots {
    text-align: center;
    margin-top: 15px;
}
.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
}
.owl-dot.active {
    background-color: #555;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .video-slider .owl-nav button.owl-prev, 
    .video-slider .owl-nav button.owl-next {
        width: 30px; /* Fixed width */
        height: 30px; /* Fixed height */
    }
    .video-slider .owl-nav button.owl-prev {
        left: -20px; /* Adjust as needed */
    }
    
    .video-slider .owl-nav button.owl-next {
        right: -50px; /* Adjust as needed */
    }
}