:root {
            --bbc-primary: #0056a6;
            --bbc-secondary: #6c757d;
            --bbc-accent: #28a745;
            --bbc-light: #f8f9fa;
            --bbc-dark: #343a40;
            --bbc-warning: #ffc107;
            --bbc-danger: #dc3545;
            --bbc-teal: #20c997;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.97) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--bbc-primary) !important;
            font-size: 1.5rem;
        }
        .nav-link {
            color: var(--bbc-dark) !important;
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 15px !important;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: var(--bbc-primary);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(0, 86, 166, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--bbc-primary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: var(--bbc-accent);
            border-radius: 2px;
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
        }
        .service-icon {
            font-size: 2.8rem;
            color: var(--bbc-primary);
            margin-bottom: 20px;
        }
        .bg-light-blue {
            background-color: #e8f4fd !important;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--bbc-primary);
            line-height: 1;
        }
        .btn-bbci {
            background-color: var(--bbc-primary);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            border: 2px solid var(--bbc-primary);
            transition: all 0.3s;
        }
        .btn-bbci:hover {
            background-color: transparent;
            color: var(--bbc-primary);
            border-color: var(--bbc-primary);
        }
        .btn-bbci-outline {
            background-color: transparent;
            color: var(--bbc-primary);
            border: 2px solid var(--bbc-primary);
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-bbci-outline:hover {
            background-color: var(--bbc-primary);
            color: white;
        }
        .footer {
            background-color: var(--bbc-dark);
            color: #ccc;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px 8px;
            transition: all 0.3s;
        }
        .friendlink:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .flink {
            color: #a3d0ff;
            font-weight: 500;
        }
        .contact-info-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 25px;
            border-left: 5px solid var(--bbc-primary);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--bbc-primary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--bbc-accent);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--bbc-primary);
        }
        .doctor-card {
            text-align: center;
            padding: 20px;
        }
        .doctor-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #f0f8ff;
            margin-bottom: 20px;
        }
        .news-card {
            border-left: 4px solid var(--bbc-accent);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 166, 0.1);
            color: var(--bbc-primary);
            font-weight: 600;
        }
        .sticky-top {
            top: 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0 4rem;
                margin-top: 66px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .navbar-nav {
                padding-top: 1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        .opacity-0 { opacity: 0; }
