
    .nav-tabs .nav-link.active {
        background: #f1f1f1 !important;
        color: #007bff !important;
        border: 1px solid #e3e3e3 !important;
        border-bottom: 3px solid #007bff !important;
    }
    .tabs_styled_2 .nav-tabs .nav-link.active::after {
        content: none !important;
    }
    .profile-tab-sub-title ul li {
        float: right !important;
    }
    .profile-tab-sub-title h5 {
        font-size: 1rem !important;
    }
    .day_block {
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 15px;
        background-color: #f9f9f9;
        text-align: center;
        /* Center-align all content in each block */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        /* Add a subtle shadow */
    }
    .day-name {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }
    .time-slot {
        font-size: 16px;
        color: #555;
        margin: 5px 0;
    }
    .day_block font {
        margin-left: 5%;
        color: #383a40ba;
        border: 1px solid #8c8c8cba;
        padding: 5px;
        border-radius: 5px;
    }
    .profile-tab-sub-title {
        border: 1px solid #ddd;
        border-radius: 5px;
        /* margin-bottom: 15px; */
        background-color: #f9f9f9;
        /* text-align: center; */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .blog-entry {
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 15px;
        /* background-color: #f9f9f9; */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    .blog-entry .entry-thumb img {
        object-fit: cover;
    }
    .reviews-container .review-box {
        padding-left: 0px;
    }
    @media screen and (max-width: 600px) {
        .hide-mobile {
            display: none;
        }
    }



    .review-stats-container {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        margin-bottom: 30px;
    }
    .review-summary {
        text-align: center;
        border-right: 1px solid #eee;
    }
    .review-summary .rating-average {
        font-size: 48px;
        font-weight: bold;
        color: #2196F3;
        line-height: 1;
        margin-bottom: 10px;
    }
    .rating-stars {
        color: #ffc107;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .rating-count {
        color: #666;
        font-size: 14px;
    }
    .rating-bars {
        padding-left: 30px;
    }
    .rating-bar-row {
        display: flex;
        align-items: center;
        margin: 8px 0;
    }
    .rating-label {
        min-width: 50px;
        text-align: right;
        margin-right: 15px;
        color: #555;
    }
    .progress {
        flex: 1;
        height: 8px;
        margin: 0 15px;
        border-radius: 4px;
        background-color: #f0f0f0;
    }
    .progress-bar {
        background-color: #2196F3;
    }
    .rating-percentage {
        min-width: 40px;
        color: #666;
        font-size: 13px;
    }
    .review-card {
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    .reviewer-info {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
    }
    .reviewer-name {
        font-weight: 600;
        color: #333;
        margin-bottom: 3px;
    }
    .review-date {
        color: #888;
        font-size: 12px;
    }
    .review-content {
        color: #555;
        line-height: 1.6;
    }
    /* ------------- Progress Bar Color */
    .progress {
        flex: 1;
        height: 15px;
        margin: 0 15px;
        border-radius: 6px;
        background: linear-gradient(to bottom, #e0e0e0, #f5f5f5);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        position: relative;
        overflow: hidden;
    }
    
    .progress-bar {
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 
            0 2px 4px rgba(0,0,0,0.2),
            inset 0 1px rgba(255,255,255,0.3);
    }
    
    /* Enhanced 3D colors for each rating level */
    .rating-bar-row:nth-child(1) .progress-bar {
        background: linear-gradient(to bottom, #00d68f, #00b67a);
        border: 1px solid #009d68;
    }
    
    .rating-bar-row:nth-child(2) .progress-bar {
        background: linear-gradient(to bottom, #84e426, #73cf11);
        border: 1px solid #65b610;
    }
    
    .rating-bar-row:nth-child(3) .progress-bar {
        background: linear-gradient(to bottom, #ffd819, #ffce00);
        border: 1px solid #ebbf00;
    }
    
    .rating-bar-row:nth-child(4) .progress-bar {
        background: linear-gradient(to bottom, #ffa649, #ff912e);
        border: 1px solid #ff8415;
    }
    
    .rating-bar-row:nth-child(5) .progress-bar {
        background: linear-gradient(to bottom, #ff5c5c, #ff4545);
        border: 1px solid #ff3131;
    }
    
    /* Enhanced hover effects */
    .rating-bar-row:hover .progress-bar {
        transform: translateY(-1px);
        box-shadow: 
            0 4px 8px rgba(0,0,0,0.2),
            inset 0 1px rgba(255,255,255,0.3);
    }
    
    .rating-bar-row {
        padding: 5px 0;
        transition: all 0.3s ease;
    }
    
    .rating-bar-row:hover {
        transform: scale(1.01);
    }
    
    /* Enhanced label styles */
    .rating-label {
        font-weight: 600;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    }
    
    .rating-percentage {
        font-weight: 600;
        color: #444;
    }
    /* --------Review Card in 3d */
    .review-card {
        background: linear-gradient(145deg, #ffffff, #f5f5f5);
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 25px;
        box-shadow: 
            8px 8px 15px rgba(0,0,0,0.1),
            -8px -8px 15px rgba(255,255,255,0.8),
            inset 1px 1px 1px rgba(255,255,255,0.5);
        transform: perspective(1000px) rotateX(0deg);
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.5);
    }
    .review-card:hover {
        transform: perspective(1000px) rotateX(2deg) translateY(-5px);
        box-shadow: 
            12px 12px 20px rgba(0,0,0,0.15),
            -8px -8px 15px rgba(255,255,255,0.8),
            inset 1px 1px 1px rgba(255,255,255,0.5);
    }
    .reviewer-info {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .reviewer-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 15px;
        box-shadow: 
            4px 4px 10px rgba(0,0,0,0.1),
            -4px -4px 10px rgba(255,255,255,0.8);
        border: 3px solid #fff;
        transition: all 0.3s ease;
    }
    .review-card:hover .reviewer-avatar {
        transform: scale(1.05);
    }
    .reviewer-name {
        font-weight: 600;
        color: #2196F3;
        margin-bottom: 5px;
        font-size: 1.1em;
    }
    .review-date {
        color: #888;
        font-size: 0.85em;
    }
    .review-content {
        color: #555;
        line-height: 1.6;
        position: relative;
        padding: 15px;
        background: rgba(255,255,255,0.5);
        border-radius: 8px;
        box-shadow: inset 1px 1px 3px rgba(0,0,0,0.05);
    }
    .review-content::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 10px;
        font-size: 40px;
        color: #2196F3;
        opacity: 0.2;
    }
    .rating-stars {
        margin: 10px 0;
        transition: all 0.3s ease;
    }
    .review-card:hover .rating-stars {
        transform: scale(1.05);
    }
    /* --------Review Summary Section */
    .review-stats-container {
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 16px;
        padding: 30px;
        box-shadow: 
            12px 12px 24px rgba(0,0,0,0.1),
            -12px -12px 24px rgba(255,255,255,0.8);
        margin-bottom: 30px;
        border: 1px solid rgba(255,255,255,0.6);
        transform: perspective(1000px) rotateX(0deg);
        transition: all 0.3s ease;
    }
    .review-stats-container:hover {
        transform: perspective(1000px) rotateX(2deg) translateY(-5px);
    }
    .review-summary {
        text-align: center;
        position: relative;
        padding: 20px;
        background: linear-gradient(145deg, #f8f9fa, #ffffff);
        border-radius: 12px;
        box-shadow: 
            inset 3px 3px 6px rgba(0,0,0,0.05),
            inset -3px -3px 6px rgba(255,255,255,0.8);
    }
    .review-summary .rating-average {
        font-size: 64px;
        font-weight: 700;
        background: linear-gradient(45deg, #2196F3, #03A9F4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    .rating-stars {
        color: #ffd700;
        font-size: 24px;
        margin-bottom: 15px;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
        animation: pulse 2s infinite;
    }
    .rating-count {
        color: #666;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 16px;
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 20px;
        box-shadow: 
            3px 3px 6px rgba(0,0,0,0.05),
            -3px -3px 6px rgba(255,255,255,0.8);
        display: inline-block;
    }
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    /* Divider line style */
    .review-summary::after {
        content: '';
        position: absolute;
        right: -15px;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
    }
    @media (max-width: 768px) {
        .review-summary::after {
            display: none;
        }
        .review-summary {
            margin-bottom: 20px;
        }
    }



    /* Modern Health Feeds Styling */
    /* ----- */
    .healthfeed-container {
        padding: 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        /* background: linear-gradient(145deg, #f8f9fa, #ffffff); */
    }
    .healthfeed-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: #ffffff;
        margin: 0 !important; /* Remove margin that causes separation */
        box-shadow: 8px 8px 15px rgba(0,0,0,0.1), 
        -8px -8px 15px rgba(255,255,255,0.8), 
        inset 1px 1px 1px rgba(255,255,255,0.5) !important;
    }
    .card-glass-effect {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
        border-radius: 20px;
        position: relative;
        z-index: 1;
        
    }
    /* Add pseudo-element for consistent shadow */
    .healthfeed-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        background: transparent;
        /* box-shadow: 
            8px 8px 15px rgba(0,0,0,0.1),
            -8px -8px 15px rgba(255,255,255,0.8); */
        z-index: 0;
        box-shadow: 8px 8px 15px rgba(0,0,0,0.1), 
        -8px -8px 15px rgba(255,255,255,0.8), 
        inset 1px 1px 1px rgba(255,255,255,0.5) !important;
    }
    /* Hover effect */
    .healthfeed-card:hover::before {
        box-shadow: 
            12px 12px 20px rgba(0,0,0,0.15),
            -12px -12px 20px rgba(255,255,255,0.9);
    }
    /* ----- */
    /* .healthfeed-container {
        padding: 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    .healthfeed-card {
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s ease;
        margin-bottom: 25px !important;
        box-shadow: 8px 8px 15px rgba(0,0,0,0.1), -8px -8px 15px rgba(255,255,255,0.8), inset 1px 1px 1px rgba(255,255,255,0.5) !important;
    }
    .card-glass-effect {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    } */
    .healthfeed-card:hover {
        transform: translateY(-5px);
    }
    .feed-category {
        background: linear-gradient(45deg, #2196F3, #00BCD4);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        display: inline-block;
        margin-bottom: 1rem;
    }
    .feed-title {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    .feed-meta {
        display: flex;
        gap: 1rem;
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .feed-image-wrapper {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }
    .feed-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    }
    .healthfeed-card:hover .feed-image {
        transform: scale(1.05);
    }
    .feed-excerpt {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .healthfeed-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }
    .interaction-buttons {
        display: flex;
        gap: 1rem;
    }
    .btn-like, .btn-share {
        background: none;
        border: none;
        color: #666;
        cursor: pointer;
        transition: color 0.3s ease;
        font-size: 1.2rem;
    }
    .btn-like:hover, .btn-share:hover {
        color: #2196F3;
    }
    .btn-read-more {
        background: linear-gradient(45deg, #2196F3, #00BCD4);
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        transition: transform 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .btn-read-more:hover {
        transform: translateX(5px);
        color: white;
    }
    .no-feeds-message {
        text-align: center;
        padding: 3rem;
        color: #666;
    }
    .no-feeds-message i {
        font-size: 3rem;
        color: #2196F3;
        margin-bottom: 1rem;
    }
    .card-glass-effect {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
        border-radius: 20px;
        
        transition: box-shadow 0.3s ease;
    }
    /* .card-glass-effect:hover {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.15),
            0 2px 12px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    } */



    /* Enhanced Tab Styling */
    .nav-tabs {
        border: none;
        background: linear-gradient(145deg, #ffffff, #f0f0f0);
        padding: 15px 15px 0;
        border-radius: 15px 15px 0 0;
        box-shadow: 
            0 -5px 15px rgba(0,0,0,0.1),
            0 5px 15px rgba(255,255,255,0.8);
    }
    .nav-tabs .nav-item {
        margin: 0 5px;
        position: relative;
        transform-style: preserve-3d;
        perspective: 1000px;
    }
    .nav-tabs .nav-link {
        border: none;
        padding: 15px 25px;
        border-radius: 0px;
        font-weight: 600;
        color: #666;
        background: linear-gradient(145deg, #f0f0f0, #ffffff);
        box-shadow: 
            5px 5px 10px rgba(0,0,0,0.1),
            -5px -5px 10px rgba(255,255,255,0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateZ(0);
    }
    .nav-tabs .nav-link:hover {
        color: #2196F3;
        transform: translateY(-2px) translateZ(10px);
        box-shadow: 
            8px 8px 15px rgba(0,0,0,0.15),
            -4px -4px 10px rgba(255,255,255,0.9);
    }
    .nav-tabs .nav-link.active {
        color: #fff;
        background: linear-gradient(145deg, #2196F3, #1976D2);
        box-shadow: 
            inset 3px 3px 5px rgba(0,0,0,0.2),
            inset -2px -2px 5px rgba(255,255,255,0.1);
        transform: translateY(0) translateZ(0);
        animation: tabPulse 2s infinite;
    }
    /* Tab hover indicator */
    .nav-tabs .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #2196F3, #00BCD4);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }
    .nav-tabs .nav-link:hover::after {
        width: 80%;
    }
    /* Active tab indicator */
    .nav-tabs .nav-link.active::after {
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #00BCD4, #2196F3);
        box-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
    }
    @keyframes tabPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.02); }
        100% { transform: scale(1); }
    }
    /* Tab content transition */
    .tab-content {
        background: #fff;
        border-radius: 0 0 15px 15px;
        box-shadow: 
            0 10px 20px rgba(0,0,0,0.1),
            0 -2px 10px rgba(0,0,0,0.05);
        padding: 20px;
    }
    .tab-pane {
        animation: fadeIn 0.5s ease-in-out;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    



.profile-info-section {
    padding: 30px 0;
}
.profile-tab-sub-title1, 
.profile-tab-sub-title {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.1);
}
.profile-tab-sub-title1:hover, 
.profile-tab-sub-title:hover {
    transform: translateY(-5px);
    box-shadow: rgba(33, 150, 243, 0.25) 0px 6px 24px;
}
.profile-tab-sub-title1 h4,
.profile-tab-sub-title h5 {
    color: #2196F3;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}
.profile-tab-sub-title1 h4::after,
.profile-tab-sub-title h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2196F3, #64B5F6);
    border-radius: 2px;
}
.profile-tab-sub-title ul,
.profile-tab-sub-title1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}
.profile-tab-sub-title ul li,
.profile-tab-sub-title1 ul li {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.1);
}
.profile-tab-sub-title ul li:hover,
.profile-tab-sub-title1 ul li:hover {
    background: linear-gradient(145deg, #e3f2fd, #f5f9ff);
    transform: translateX(5px);
    border-color: rgba(33, 150, 243, 0.3);
}
.profile-tab-sub-title ul li i,
.profile-tab-sub-title1 ul li i {
    color: #2196F3;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.profile-tab-sub-title ul li:hover i,
.profile-tab-sub-title1 ul li:hover i {
    background: #2196F3;
    color: white;
    transform: scale(1.1);
}
.profile-tab-sub-title ul li p,
.profile-tab-sub-title1 ul li p {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}
.profile-tab-description {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 35px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    border: 1px solid rgba(33, 150, 243, 0.1);
    line-height: 1.8;
    color: #444;
}
@media (max-width: 768px) {
    .profile-tab-sub-title1, 
    .profile-tab-sub-title {
        padding: 20px;
    }
    .profile-tab-sub-title ul li,
    .profile-tab-sub-title1 ul li {
        padding: 12px 15px;
    }
    .profile-tab-sub-title1 h4,
    .profile-tab-sub-title h5 {
        font-size: 1.2rem;
    }
}
.profile-info-section {
    padding: 15px 0;
}
.profile-tab-sub-title1, 
.profile-tab-sub-title {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;  /* Reduced from 30px */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.1);
}
.profile-tab-sub-title1 h4,
.profile-tab-sub-title h5 {
    color: #2196F3;
    font-size: 1.2rem;  /* Reduced from 1.4rem */
    margin-bottom: 12px;  /* Reduced from 20px */
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;  /* Reduced from 15px */
}
.profile-tab-sub-title ul,
.profile-tab-sub-title1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;  /* Reduced from 15px */
}
.profile-tab-sub-title ul li,
.profile-tab-sub-title1 ul li {
    padding: 10px 15px;  /* Reduced from 15px 20px */
}
.profile-tab-description {
    padding: 15px;  /* Reduced from 25px */
    margin-bottom: 20px;  /* Reduced from 35px */
}



    .clinic-schedule {
        padding: 20px;
        background: #fff;
        border-radius: 10px;
    }
    .day_block {
        background: linear-gradient(145deg, #ffffff, #f0f0f0);
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 
            8px 8px 15px rgba(0,0,0,0.1),
            -8px -8px 15px rgba(255,255,255,0.8);
        transition: transform 0.3s ease;
    }
    .day_block:hover {
        transform: translateY(-5px);
    }
    .day-name {
        color: #2196F3;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
    }
    .time-slots {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .time-slot {
        background: linear-gradient(145deg, #2196F3, #1976D2);
        color: white;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 0.85rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }
    .time-slot:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
    @media (max-width: 768px) {
        .col-md-3 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
    @media (max-width: 576px) {
        .col-md-3 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }.tab-without-style {
        padding: 0px;
        border: 0px;
        border-radius: 0px;
        box-shadow: none;
    }



/* ... existing code ... */
/* Enhanced Recommended Doctors Section */
.profile-widget {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 20px;
    margin: 15px;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        8px 8px 15px rgba(0,0,0,0.1),
        -8px -8px 15px rgba(255,255,255,0.8),
        inset 1px 1px 1px rgba(255,255,255,0.5);
}
.profile-widget:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        15px 15px 30px rgba(0,0,0,0.15),
        -8px -8px 15px rgba(255,255,255,0.8),
        inset 1px 1px 1px rgba(255,255,255,0.5);
}
.doc-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.doc-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.profile-widget:hover .doc-img img {
    transform: scale(1.05) translateZ(20px);
}
.fav-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform: translateZ(30px);
}
.fav-btn:hover {
    background: #2196F3;
    color: white;
    transform: translateZ(40px) scale(1.1);
}
.pro-content {
    padding: 15px 0;
    position: relative;
}
.title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
}
.profile-widget:hover .title {
    color: #2196F3;
    transform: translateZ(20px);
}
.verified {
    color: #2196F3;
    margin-left: 5px;
    animation: pulse 2s infinite;
}
.speciality {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transform: translateZ(10px);
}
.available-info {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.available-info li {
    margin: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    transform: translateZ(15px);
}
.available-info li i {
    margin-right: 8px;
    color: #2196F3;
    width: 20px;
}
.book-btn {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    transform: translateZ(20px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}
.book-btn:hover {
    transform: translateZ(30px) scale(1.02);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    color: white;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/* ... existing code ... */
