/* ===========1// */
/* ==============2 Index_search =========== */
/* ===========2// Index_Docotor_list */
/* =============3// Index_Filtering_Search / */
/* ==================4==All_doctors.html========== */



:root {
            --primary: #2b7dbc;
            --primary-dark: #1a5c9c;
            --primary-light: #e8f2fc;
            --secondary: #4fb0ae;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --text: #555;
            --transition: all 0.3s ease;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #fefefe;
            overflow-x: hidden;
            padding-top: 90px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--dark);
            font-weight: 700;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
            font-size: 16px;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(43, 125, 188, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(43, 125, 188, 0.4);
        }
        
        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: var(--transition);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo img{
            width: 90px;
            height: 60px;
            max-width: 120px;
        }
        
        .logo-img {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(43, 125, 188, 0.25);
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo-text span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            padding: 12px 18px;
            font-weight: 500;
            color: var(--dark);
            transition: var(--transition);
            display: block;
            border-radius: 30px;
        }
        
        .nav-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle::after {
            content: '\F282';
            font-family: 'bootstrap-icons';
            font-size: 12px;
            margin-left: 5px;
            vertical-align: middle;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            z-index: 100;
            padding: 12px 0;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }
        
        .dropdown-item {
            padding: 12px 24px;
            display: block;
            transition: var(--transition);
            color: var(--text);
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-light);
            color: var(--primary);
            padding-left: 28px;
        }
        
        .appointment-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 12px 26px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            margin-left: 15px;
            box-shadow: 0 4px 15px rgba(43, 125, 188, 0.3);
        }
        
        .appointment-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(43, 125, 188, 0.4);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }
        
        .hamburger span {
            height: 3px;
            width: 100%;
            background-color: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(43, 125, 188, 0.05) 0%, rgba(79, 176, 174, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(43, 125, 188, 0.1) 0%, rgba(79, 176, 174, 0.1) 100%);
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(43, 125, 188, 0.1) 0%, rgba(79, 176, 174, 0.1) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--text);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--primary);
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* Footer */

        footer {
      background-color: #111;
      color: #fff;
      text-align: center;
      padding: 40px 20px;
    }

    .footer-content {
      max-width: 600px;
      margin: auto;
    }

    .footer-content h2 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #deb03c;
    }

    .contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 12px 0;
      font-size: 16px;
    }

    .contact-item i {
      margin-right: 10px;
      color: #cca74a;
      font-size: 20px;
    }

    .contact-item a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-item a:hover {
      color: #c29f46;
    }

    .copyright {
      margin-top: 30px;
      font-size: 14px;
      color: #ccc;
    }

    /* Responsive Design */
    @media (max-width: 600px) {
      .footer-content h2 {
        font-size: 20px;
      }
      .contact-item {
        font-size: 15px;
      }
    }


        /* .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .footer-links a {
            display: block;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-contact div {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--primary);
            font-size: 18px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        } */
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            body {
                padding-top: 80px;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 40px;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                overflow-y: auto;
                gap: 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-item {
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .nav-link {
                padding: 15px 0;
                width: 100%;
                border-radius: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(43, 125, 188, 0.05);
                margin: 10px 0;
                display: none;
                width: 100%;
            }
            
            .dropdown.active .dropdown-menu {
                display: block;
            }
            
            .dropdown-toggle::after {
                content: '\F282';
                float: right;
                transform: rotate(0deg);
                transition: var(--transition);
            }
            
            .dropdown.active .dropdown-toggle::after {
                transform: rotate(180deg);
            }
            
            .appointment-btn {
                margin: 20px 0 0;
                display: block;
                text-align: center;
                width: 100%;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }


        /* ================================ Index_Docotor_list ============================== */

        .container-in-doct {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Section */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 5px 0;
        }
        
        .section-title {
            font-size: 10px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .view-all-btn {
            background-color: #3498db;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .view-all-btn:hover {
            background-color: #2980b9;
        }
        
        /* Doctors Grid */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            padding: 0 1px;
        }
        
        /* Doctor Card */
        .doctor-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .doctor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }
        
        .doctor-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .card-content {
            display: flex;
            padding: 5px;
        }
        
        .doctor-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 7px;
            border: 3px solid #e8f4f8;
        }
        
        .doctor-info {
            flex: 1;
        }
        
        .experience-badge {
            background-color: #e74c3c;
            color: white;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            margin-bottom: 3px;
            display: inline-block;
        }
        
        .doctor-names {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .doctor-title {
            font-size: 12px;
            color: #7f8c8d;
            /* margin-bottom: 5px; */
        }
        
        .doctor-address {
            font-size: 13px;
            color: #96a5a6;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .doctors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .doctors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .container-in-doct {
                padding: 10px;
            }
            .doctors-grid {
                grid-template-columns: repeat(2, 1fr);
                /* grid-template-columns: 1fr; */
                gap: 10px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .view-all-btn {
                left: 80px;
                align-self: flex-end;
            }
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            grid-column: 1 / -1;
        }

/* ==================== Index_Filtering_Search ========= */


        .container-miz {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 20px;
        }
        
        /* Left Sidebar - Filters */
        .filters-sidebar {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        
        .filter-section {
            margin-bottom: 25px;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 20px;
        }
        
        .filter-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .filter-title {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .show-all {
            font-size: 14px;
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }
        
        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .filter-select, .filter-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        /* Price Range Slider */
        .price-range-container, .experience-range-container {
            padding: 10px 0;
        }
        
        .range-values {
            display: flex;
            justify-content: space-between;
            /* margin-bottom: 10px; */
            font-size: 14px;
            color: #7f8c8d;
        }
        
        .range-slider {
            width: 100%;
            height: 5px;
            background: #ddd;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
        }
        
        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background: #3498db;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .range-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            background: #3498db;
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }
        
        .range-inputs {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .range-input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-align: center;
            font-size: 13px;
        }
        
        .day-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        
        .day-checkbox {
            margin-right: 5px;
            transform: scale(1.2);
        }
        
        .day-label {
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .search-btn {
            width: 100%;
            background: #e74c3c;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        
        .search-btn:hover {
            background: #c0392b;
        }
        
        /* Right Content - Doctors List */
        .doctors-content {
            background: white;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            min-height: 600px;
        }
        
        .content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eaeaea;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .results-count {
            color: #7f8c8d;
            font-size: 10px;
            background: #f8f9fa;
            padding: 5px 10px;
            border-radius: 15px;
        }
        
        .doctors-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .doctor-card {
            display: flex;
            gap: 17px;
            padding: 15px;
            border: 1px solid #eaeaea;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .doctor-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .doctor-image {
            width: 100px;
            height: 100px;
            border-radius: 10px;
            object-fit: cover;
            border: 3px solid #e8f4f8;
        }
        
        .doctor-details {
            flex: 1;
        }
        
        .doctor-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 7px;
        }
        
        .doctor-name {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .doctor-specialty {
            font-size: 12px;
            color: #3498db;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }
        
        .doctor-bio {
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .doctor-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price-section {
            text-align: right;
        }
        
        .visit-price {
            font-size: 16px;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 5px;
        }
        
        .price-label {
            font-size: 10px;
            color: #96a5a6;
        }
        
        .doctor-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #5d6d7e;
        }
        
        .info-label {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .view-profile-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: background 0.3s;
            display: inline-block;
        }
        
        .view-profile-btn:hover {
            background: #2980b9;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
        }
        
        .loading {
            text-align: center;
            padding: 20px;
            color: #3498db;
            display: none;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container-mi {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .filters-sidebar {
                position: static;
            }
            
            .doctor-card {
                flex-direction: column;
                text-align: center;
            }
            
            .doctor-header {
                flex-direction: column;
                gap: 10px;
            }
            
            .doctor-footer {
                flex-direction: column;
                gap: 15px;
            }
            
            .price-section {
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .day-options {
                grid-template-columns: 1fr;
            }
            .price-range, .experience-range {
                flex-direction: column;
            }
            .filter-title {
                font-size: 10px;
            }
            /* .section-title{
                font-size: 10px;
            } */
            .results-count{
                font-size: 8px;
            }
            .filters-sidebar{
                padding: 10px;
                height: fit-content;
                position: sticky;
                top: 20px;
            }
            .container-miz {
                margin: 0 auto;
                padding: 10px;
                display: grid;
                grid-template-columns: 150px 1fr;
                gap: 12px;
            }
            .range-input{
                font-size: 10px;
            }
            .doctor-card {
                gap: 5px;
                padding: 5px;
            }
            .doctor-image {
                width: 70px;
                height: 90px;
            }
            .doctor-name {
                font-size: 12px;
                font-weight: 700;
            }
            .experience-badge {
               font-size: 8px;
            }
        
            .doctor-names {
                font-size: 11px;
                margin-bottom: 1px;
            }
            
            .doctor-title {
                font-size: 10px;
                margin-bottom: 1px;
            }
            
            .doctor-address {
                font-size: 10px;
            }
        }

/* ============================================Index_search_mizan============ */

.search-results-container {
    /* min-height: 100vh; */
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.search-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.active-filters {
    text-align: center;
    margin-bottom: 20px;
}

.active-filters h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.filter-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.results-count {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

.back-to-home {
    text-align: center;
    margin-top: 20px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.doctor-specialty,
.doctor-location,
.doctor-price,
.doctor-appointments,
.doctor-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.doctor-specialty i,
.doctor-location i,
.doctor-price i,
.doctor-appointments i,
.doctor-availability i {
    color: #667eea;
    width: 16px;
}

.doctor-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-view-profile,
.btn-book-appointment {
    flex: 1;
    padding: 12px 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-view-profile {
    background: #f8f9fa;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-view-profile:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-book-appointment {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.btn-book-appointment:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.no-results-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.no-results h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.suggestions {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.suggestions h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.suggestions ul {
    list-style: none;
    padding: 0;
}

.suggestions li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.suggestions li:before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
}

.suggestions a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .search-header {
        padding: 30px 0;
    }
    
    .search-header h1 {
        font-size: 2rem;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .doctor-actions {
        flex-direction: column;
    }
    
    .filter-tags {
        justify-content: flex-start;
    }
}

/* =========================All_Doctors.html============================================ */

.container-all-mizan-doctor {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px 0;
            border-bottom: 2px solid #e8f4f8;
        }
        
        .page-title {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .back-btn {
            background-color: #cca74a;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .back-btn:hover {
            background-color: #dab659;
        }
        
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .doctor-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .doctor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }
        
        .doctor-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .card-content {
            display: flex;
            padding: 15px;
        }
        
        .doctor-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid #e8f4f8;
        }
        
        .doctor-info {
            flex: 1;
        }
        
        .experience-badge {
            background-color: #e74c3c;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            display: inline-block;
        }
        
        .doctor-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .doctor-title {
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 5px;
        }
        
        .doctor-address {
            font-size: 13px;
            color: #95a5a6;
        }
        
        .appointment-count {
            font-size: 12px;
            color: #3498db;
            margin-top: 5px;
            font-weight: 600;
        }
        
        @media (max-width: 1024px) {
            .doctors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .doctors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .page-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .doctors-grid {
                grid-template-columns: 1fr;
            }
            
            .page-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        
        .empty-state {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            grid-column: 1 / -1;
        }