:root {
    --primary: #4338ca;
    /* Indigo 700 */
    --primary-light: #6366f1;
    /* Indigo 500 */
    --secondary: #2563eb;
    /* Blue 600 */
    --accent: #8b5cf6;
    /* Violet 500 */
    --bg-body: #f8fafc;
    --bg-soft: #eff6ff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow-main: 0 10px 40px -10px rgba(37, 99, 235, 0.1);
    --shadow-hover: 0 20px 50px -10px rgba(37, 99, 235, 0.2);
    --radius-l: 30px;
    --radius-m: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

/* Fix for fixed header blocking content */
section,
header,
#booking-widget {
    scroll-margin-top: 100px;
}

.nav-spacer {
    height: 120px;
    width: 100%;
    display: block;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-body);
    color: var(--text-main);
}

/* Background Shapes Container */
.shapes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
}

/* ... existing shape-1/2 styles ... */

/* Mobile Nav Update */
@media (max-width: 900px) {

    /* ... */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        gap: 2rem;
        transform: translateX(100%);
        /* Move off-screen without causing scroll */
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* ... */
}

.shape-1 {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e0e7ff 0%, rgba(255, 255, 255, 0) 70%);
}

.shape-2 {
    top: 200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #f3e8ff 0%, rgba(255, 255, 255, 0) 70%);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.animate-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-primary-small {
    background: var(--primary-light);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    background: var(--primary);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.highlight-text {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary);
}

/* Custom Scrollbar for Doctors Section */
#doctors-scroll-container::-webkit-scrollbar {
    height: 6px;
    /* Even slimmer */
}

#doctors-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

#doctors-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    cursor: pointer;
}

#doctors-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 100%);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    /* Glow effect */
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

/* Hero Image & Graphics */
.hero-image {
    position: relative;
    text-align: center;
}

.image-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 460px;
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
    border-radius: 50%;
    z-index: -1;
}

.doctor-img {
    max-width: 100%;
    width: 420px;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    z-index: 1;
    padding: 5px;
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
}

.floating-icon {
    position: absolute;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 0;
    color: var(--accent);
    animation-delay: 0s;
}

.icon-2 {
    top: 10%;
    right: 10%;
    color: var(--secondary);
    animation-delay: 1.5s;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.icon-3 {
    bottom: 20%;
    right: -20px;
    color: var(--primary);
    animation-delay: 0.5s;
}

/* Search Widget */
.search-widget-container {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.search-widget {
    background: white;
    scroll-margin-top: 120px;
    /* Applied to target ID */
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    /* align-items: flex-end; Removed to let header sit naturally */
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
    /* Wider */
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.input-group {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 1rem;
    position: relative;
    /* For icon alignment */
}

/* Add separation lines */
.border-left {
    border-left: 1px solid #eee;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    /* Brighter label color */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.input-group select,
.input-group input,
.input-group textarea {
    border: 2px solid #f1f5f9;
    /* Thicker border */
    background: #fff;
    outline: none;
    font-size: 1rem;
    color: var(--text-main);
    width: 100%;
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.2s;
}

.input-group select:focus,
.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: white;
}

.btn-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    /* Larger button */
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(67, 56, 202, 0.2);
    height: 54px;
    /* Match input height roughly */
    white-space: nowrap;
    align-self: flex-end;
    /* Align button to bottom of row */
    margin-bottom: 2px;
    /* Fine-tune alignment */
}

.btn-search:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

#manual-address-group {
    flex-basis: 100%;
    border-left: none;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
}

/* Trust Section */
.trust-section {
    margin-top: 2rem;
    padding: 4rem 0;
    text-align: center;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.trust-item h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Services */
.section {
    padding: 3rem 0;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.color-1 {
    background: #fca5a5;
    box-shadow: 0 10px 20px -5px rgba(252, 165, 165, 0.5);
}

.color-2 {
    background: #86efac;
    box-shadow: 0 10px 20px -5px rgba(134, 239, 172, 0.5);
}

.color-3 {
    background: #93c5fd;
    box-shadow: 0 10px 20px -5px rgba(147, 197, 253, 0.5);
}

.color-4 {
    background: #c4b5fd;
    box-shadow: 0 10px 20px -5px rgba(196, 181, 253, 0.5);
}

.color-5 {
    background: #fdba74;
    box-shadow: 0 10px 20px -5px rgba(253, 186, 116, 0.5);
}

.color-white {
    background: white;
    color: var(--secondary);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.service-box h3 {
    font-size: 1.35rem;
    /* slightly less heavy */
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.service-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

.highlight-box {
    background: var(--secondary);
    /* Blue */
    color: white;
    border: none;
    /* No border for highlight */
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.4);
    /* Glow */
}

.highlight-box h3 {
    color: white;
}

.highlight-box p,
.highlight-box ul,
.highlight-box li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.link-arrow {
    margin-top: auto;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Tests */
.bg-soft {
    background-color: var(--bg-soft);
    border-radius: 50px;
    margin: 2rem 1.5rem;
    width: auto;
}

.test-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.test-tags span {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.covid-banner {
    background: #4f46e5;
    color: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.covid-banner i {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Contact Modern */
.contact-modern {
    background: white;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-main);
    display: flex;
    overflow: hidden;
}

.contact-text {
    padding: 4rem;
    flex: 1;
}

.contact-row {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    align-items: center;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-visual {
    flex: 1;
    background: #cbd5e1 url('https://img.freepik.com/free-vector/map-light-concept-illustration_114360-192.jpg') center/cover;
    position: relative;
    min-height: 400px;
}

.map-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-main);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile Navigation & Responsive Styles */

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Tablet & Mobile Styles */
@media (max-width: 900px) {
    .container {
        padding: 0 1.25rem;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        gap: 2rem;
        transform: translateX(100%);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Backup mobile close button if needed, but clicking outside is better */

    /* Hero Responsive */
    .hero {
        padding-top: 140px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 85vh;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
    }

    .hero-image {
        order: -1;
    }

    /* Image on top for mobile */
    .image-circle-bg {
        width: 300px;
        height: 300px;
    }

    .doctor-img {
        padding: 10px;
    }

    /* Search Widget Responsive */
    .search-widget {
        flex-direction: column;
        max-width: 100%;
        margin-top: 2rem;
        gap: 0;
        padding: 1rem;
    }

    .input-group {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 1rem 0.5rem;
    }

    .input-group:last-of-type {
        border-bottom: none;
    }

    .btn-search {
        width: 100%;
        margin-top: 1rem;
    }

    /* Stats */
    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
        /* Safety wrap if screen is tiny */
        justify-content: space-evenly;
        gap: 1rem;
    }

    .trust-item {
        flex: 1 1 30%;
        /* Take up roughly 1/3 each */
        min-width: 80px;
    }

    /* Contact */
    .contact-modern {
        flex-direction: column;
    }

    .contact-text {
        padding: 2rem;
    }

    .contact-visual {
        min-height: 250px;
    }

    .map-card {
        bottom: 10px;
        right: 10px;
    }

    .btn-primary-small {
        display: none;
    }

    /* Hide call button in header on small screens */

    .covid-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-item h2 {
        font-size: 1.5rem;
    }

    .trust-item p {
        font-size: 0.8rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Selected Tests Container */
.selected-tests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    min-height: 0;
}

.test-tag-pill {
    background-color: #dbeafe;
    /* Blue 100 */
    color: #1e40af;
    /* Blue 800 */
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.3s ease-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.test-tag-remove {
    cursor: pointer;
    color: #3b82f6;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.test-tag-remove:hover {
    color: #ef4444;
    /* Red */
}

/* Blog Grid & Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 100%;
    position: relative;
    text-decoration: none;
    max-width: 400px;
    /* Force card to not be huge if single item */
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e2e8f0;
}

.blog-card-img-wrapper {
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-snippet {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    margin-top: auto;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
}

.blog-author i {
    color: var(--secondary);
}

/* Post Page Styles */
.post-layout {
    max-width: 900px !important;
}

.post-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.post-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

.post-featured-image {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-main);
    max-height: 500px;
    object-fit: cover;
}

.post-content-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #334155;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.post-content-body p {
    margin-bottom: 1.5rem;
}

.post-content-body h2 {
    color: var(--text-main);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.post-content-body ul,
.post-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content-body li {
    margin-bottom: 0.5rem;
}

.post-content-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* Custom Scrollbar for Specialists & Physios */
#doctors-scroll-container::-webkit-scrollbar,
#physios-scroll-container::-webkit-scrollbar {
    height: 6px;
}

#doctors-scroll-container::-webkit-scrollbar-view,
#physios-scroll-container::-webkit-scrollbar-view {
    background: transparent;
}

#doctors-scroll-container::-webkit-scrollbar-track,
#physios-scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

#doctors-scroll-container::-webkit-scrollbar-thumb,
#physios-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    transition: background 0.3s;
}

#doctors-scroll-container::-webkit-scrollbar-thumb:hover,
#physios-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}