:root {
            --rainbow-primary: #0066cc;
            --rainbow-secondary: #00b4d8;
            --rainbow-accent: #ff6b6b;
            --rainbow-light: #e9f7fe;
            --rainbow-dark: #003a66;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .header-gradient {
            background: linear-gradient(135deg, var(--rainbow-primary) 0%, var(--rainbow-secondary) 100%);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 102, 204, 0.85), rgba(0, 180, 216, 0.85)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2050&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .section-title {
            color: var(--rainbow-dark);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--rainbow-accent);
        }
        .center-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-service {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        .card-service:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--rainbow-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--rainbow-primary);
            font-size: 2rem;
        }
        .doctor-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .doctor-img {
            height: 300px;
            object-fit: cover;
            object-position: top;
        }
        .stats-counter {
            background: linear-gradient(135deg, var(--rainbow-primary) 0%, var(--rainbow-secondary) 100%);
            color: white;
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .emergency-banner {
            background-color: var(--rainbow-accent);
            color: white;
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }
        .emergency-banner:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.1) 10px, rgba(255, 255, 255, 0.1) 20px);
            animation: moveStripes 20s linear infinite;
        }
        @keyframes moveStripes {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-50px) translateY(-50px); }
        }
        .btn-rainbow {
            background: linear-gradient(to right, var(--rainbow-primary), var(--rainbow-secondary));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-rainbow:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
        }
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding-top: 60px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--rainbow-accent);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            background-color: #333;
            border-radius: 4px;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--rainbow-primary);
            transform: translateY(-3px);
        }
        .copyright {
            background-color: #111;
            padding: 20px 0;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0;
                margin-top: 66px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            .nav-link {
                padding: 0.5rem !important;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item.active {
            color: var(--rainbow-primary);
        }
        .form-control:focus {
            border-color: var(--rainbow-primary);
            box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--rainbow-light);
            color: var(--rainbow-dark);
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--rainbow-primary);
        }
