/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.testimonial-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-section .section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-section .section-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Swiper Custom Styles */
.testimonial-slider {
    padding: 20px 0;
    position: relative;
}

.testimonial-slide {
    padding: 30px;
    background: #faf8d4;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 0px;
    transition: all 0.3s ease;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    text-align: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: #2d2d2d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author .role {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #e4a40f;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #2c3e50;
    color: #fff;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #2c3e50;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
    }
    
    .testimonial-section .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonial-slide {
        padding: 20px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.testimonial-rating {
    margin: 10px 0;
    color: #e4a40f;
    font-size: 18px;
}

.testimonial-rating i {
    margin: 0 2px;
}
.doc-profile img
{
    width:100%!important
}
.bold_txt
{
    font-weight: 600;
}

/* Doctor Introduction Section Styles */
.doctor-intro-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.doctor-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.doctor-info {
    flex: 1;
}

.doctor-profile {
    flex: 1;
    position: relative;
}

.doctor-profile img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.doctor-profile img:hover {
    transform: translateY(-5px);
}

.doctor-name {
    font-size: 2.5rem;
    color: #035392;
    margin-bottom: 15px;
    font-weight: 700;
}

.doctor-specialization {
    color: #035392;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.doctor-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.doctor-experience {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.experience-item {
    margin-bottom: 15px;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.experience-title {
    font-weight: 600;
    color: #035392;
    margin-bottom: 5px;
}

.experience-detail {
    color: #555;
}

.doctor-contact {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #035392;
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #035392;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 83, 146, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .doctor-intro-wrapper {
        flex-direction: column;
    }
    
    .doctor-profile {
        order: -1;
        margin-bottom: 30px;
    }
    
    .doctor-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .doctor-intro-section {
        padding: 50px 0;
    }
    
    .doctor-experience,
    .doctor-contact {
        padding: 20px;
    }
}

/* Modern Button Styles */
.book_btn {
    margin-top: 30px;
}

.book_btn a {
    display: inline-block;
    padding: 15px 35px;
    background: #035392;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(3, 83, 146, 0.2);
}

.book_btn a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.book_btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 83, 146, 0.3);
}

.book_btn a:hover:before {
    width: 100%;
}

.book_btn a:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(3, 83, 146, 0.2);
}

/* Add icon to button */
.book_btn a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.book_btn a:hover i {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .book_btn a {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Modern Accordion Styles */
.accordion {
    margin-top: 20px;
}

.accordion .card {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion .card-header {
    background: #fff;
    border: none;
    padding: 0;
}

.accordion .card-link {
    display: block;
    padding: 20px 25px;
    color: #035392;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion .card-link:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.accordion .card-link.collapsed:after {
    transform: translateY(-50%) rotate(-90deg);
}

.accordion .card-link:hover {
    background: #f8f9fa;
    color: #035392;
}

.accordion .card-body {
    padding: 20px 25px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.accordion .card-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.accordion .card-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion .card-body ul li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Animation for accordion */
.accordion .collapse {
    transition: all 0.3s ease;
}

.accordion .collapsing {
    transition: all 0.3s ease;
}

/* Active state */
.accordion .card-header.active .card-link {
    background: #f8f9fa;
    color: #035392;
}
.service_img img
{
    width:100%
}
.col-md-12 .service_para p
{
    padding-left: 0px!important;
    margin: 0px!important;
}
.service_para_ .col-md-12 
{
    padding-left: 0px!important;
    margin: 0px!important;
}
/* Responsive styles */
@media (max-width: 768px) {
    .accordion .card-link {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .accordion .card-body {
        padding: 15px 20px;
    }
}