    <style>
        body {
            margin: 0;
            padding-top: 100px; /* Make room for fixed header */
            font-family: Poppins, sans-serif;
            background: #f5f5f5;
            background-color: lightblue;  
            justify-content: center; /* Center horizontally */       
        }
        
        .main-container {
          display: flex;
          flex-direction: column;
          padding: 10px;
          box-sizing: border-box;
        padding-bottom: 60px; /* Match footer height to prevent overlap */
        }

        .search-container {
            justify-content: center;
            position: relative ;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            max-width: 950px;
            width: 100%;
            padding: 10px;
            background: white;
            border-radius: 1px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        .card-container {
            position:relative;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 0 auto;
            max-width: 1200px;
            padding: 2px;
            width: 100%;            
        }
        .card-containerhospital {
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: flex-start; /* Ensures cards align left */
            margin: 0; /* Remove horizontal centering */
            max-width: 1000px; /* Remove restriction if not needed */
            padding: 0 5px; /* Keep slim side padding */
            width: 100%;
        } 
        .header-bar {
            display: flex;
            justify-content: center;
            align-items: left;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .header-bar a {
            text-decoration: none;
            color: white;
            background-color: #007bff;
            padding: 8px 14px;
            border-radius: 5px;
            font-size: 14px;
        }

        .header-bar a:hover {
            background-color: #0056b3;
        }

        .btn1 {
            background-color: #A8C3A7; /* green-ash tone */
            border: none;
            color: #2F3E2F; /* darker text for contrast */
            padding: 14px 28px;
            font-size: 14px;
            font-weight: 600;
            width:230px;
            border-radius: 6px; /* subtle rectangle */
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
        .btn1:hover {
            background-color: #94B394;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .txtbx {
            padding: 12px 16px;
            font-size: 16px;
            border: 2px solid #A8C3A7;
            border-radius: 6px;
            outline: none;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 300px;
            box-sizing: border-box;
        }

        .txtbx:focus {
        border-color: #94B394;
        box-shadow: 0 0 5px rgba(148, 179, 148, 0.5);
        }

        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 1px;
            justify-content: center;
        }

        .filters input {
            padding: 5px;
            font-size: 14px;
            flex: 1;
        }


        .card {
            width: 300px;
            border: 1px solid #ccc;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            background-color: #fff;
            text-align: center;
        }

        .card img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            object-position: center 10%; /* shift down (try 10%–30%) */
            border-radius: 50%;
            margin: 15px auto 10px;
            border: 3px solid #007bff;
        }

        .card-title {
            font-size: 20px;
            color: #333;
        }

        .card-name {
            font-family: Sans-serif;
            font-size: 20px;
            color:#000000;
        }
        .card-specialties {
            font-family: Sans-serif;
            font-size: 14px;
            color: #00008B;
        }
        .card-chamber {
            font-family: Sans-serif;
            font-size: 14px;
            color: #800080;
        }
        .card-chambercity {
            font-size: 14px;
            color: #333;
        } 
        .card-workplace {
            font-family: Sans-serif;
            font-size: 14px;
            color: #333;
        }   
        .card-designation {
            font-family: Sans-serif;
            font-size: 14px;
            color: #333;
        }                                
        .card-qualification {
            font-family: Sans-serif;
            font-size: 16px;
            color: #333;
        }        
        .card-subtitle {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }

        .card-text {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }

        .card-link {
            display: inline-block;
            padding: 8px 12px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        .card-link:hover {
            background-color: #0056b3;
        }
    </style>