:root {
            --army-green: #2d5016;
            --army-khaki: #a68a64;
            --army-beige: #e8e1d7;
            --medical-blue: #0066cc;
            --emergency-red: #c8102e;
            --dark-text: #333333;
            --light-text: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .main-header {
            background: linear-gradient(rgba(45, 80, 22, 0.95), rgba(45, 80, 22, 0.98));
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1030;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .hospital-logo {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--army-khaki);
        }
        .hospital-name {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .hospital-tagline {
            color: var(--army-beige);
            font-size: 0.9rem;
            font-weight: 300;
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 8px 15px !important;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255,255,255,0.15);
            color: var(--army-beige) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 15px;
            background-color: var(--army-beige);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: calc(100% - 30px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-top: 80px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--army-beige);
        }
        .emergency-banner {
            background-color: var(--emergency-red);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-top: 30px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(200, 16, 46, 0); }
            100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
        }
        .section-title {
            color: var(--army-green);
            font-weight: 700;
            margin-bottom: 30px;
            padding-bottom: 15px;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--army-khaki);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--army-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }
        .department-card {
            border-left: 5px solid var(--army-green);
            padding-left: 20px;
            margin-bottom: 25px;
        }
        .doctor-profile {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .doctor-profile:hover {
            transform: translateY(-5px);
        }
        .doctor-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 5px solid var(--army-beige);
        }
        .stat-box {
            background: var(--army-green);
            color: white;
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .main-footer {
            background-color: var(--army-green);
            color: white;
            padding-top: 60px;
        }
        .footer-title {
            color: var(--army-beige);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--army-khaki);
            bottom: 0;
            left: 0;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        .contact-info i {
            color: var(--army-khaki);
            margin-right: 10px;
            margin-top: 5px;
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            margin-top: 50px;
            font-size: 0.9rem;
        }
        friendlink {
            display: block;
            background-color: var(--army-beige);
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            border-radius: 50px;
            margin: 8px;
            text-decoration: none;
            color: var(--army-green);
            font-weight: 500;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .flink:hover {
            border-color: var(--army-green);
            background-color: var(--army-green);
            color: white;
            transform: translateY(-3px);
        }
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-subtitle {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .hospital-name {
                font-size: 1.1rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section {
                padding: 70px 0;
                margin-top: 70px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .appointment-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .btn-army {
            background-color: var(--army-green);
            color: white;
            padding: 10px 30px;
            border-radius: 5px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-army:hover {
            background-color: #234011;
            color: white;
            transform: translateY(-2px);
        }
        .btn-emergency {
            background-color: var(--emergency-red);
            color: white;
            padding: 10px 30px;
            border-radius: 5px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-emergency:hover {
            background-color: #a00d26;
            color: white;
        }
        .breadcrumb {
            background-color: transparent;
            padding: 15px 0;
        }
        .breadcrumb-item a {
            color: var(--army-green);
            text-decoration: none;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(45, 80, 22, 0.1);
            color: var(--army-green);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .badge-army {
            background-color: var(--army-khaki);
            color: white;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--army-khaki);
        }
        .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-color: var(--army-green);
            border: 3px solid var(--army-khaki);
        }
