:root {
            --primary-blue: #0a4a7a;
            --secondary-teal: #2a9d8f;
            --accent-gold: #e9c46a;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--primary-blue);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 74, 122, 0.85), rgba(10, 74, 122, 0.9)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 100px;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-teal);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--secondary-teal);
        }
        .btn-outline-primary {
            color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        .stats-section {
            background-color: var(--primary-blue);
            color: white;
            padding: 60px 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
        }
        footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding-top: 60px;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-teal);
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--secondary-teal);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--secondary-teal);
        }
        .copyright {
            background-color: #111;
            padding: 20px 0;
            border-top: 1px solid #333;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 8px 15px;
            border-radius: 5px;
            margin: 5px;
            transition: background-color 0.3s;
        }
        .flink:hover {
            background-color: rgba(42, 157, 143, 0.2);
        }
        .service-card {
            border-left: 4px solid var(--secondary-teal);
            padding-left: 20px;
        }
        .doctor-card img {
            height: 250px;
            object-fit: cover;
            object-position: top;
        }
        .contact-info i {
            color: var(--secondary-teal);
            font-size: 1.2rem;
            margin-right: 10px;
        }
        .form-control:focus {
            border-color: var(--secondary-teal);
            box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 74, 122, 0.1);
            color: var(--primary-blue);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
        }
        .breadcrumb-item a {
            color: var(--primary-blue);
        }
        .timeline-item {
            border-left: 3px solid var(--primary-blue);
            padding-left: 30px;
            padding-bottom: 30px;
            position: relative;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -9px;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--secondary-teal);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 80px;
                min-height: 70vh;
                text-align: center;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .section-title {
                text-align: center;
            }
            .section-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
