
        :root {
            --primary-dark: #343a40;
            --secondary-gray: #6c757d;
            --white: #ffffff;
            --light-bg: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-dark);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: #28a745;
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: #28a745 !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #28a745;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: #28a745;
            color: var(--white) !important;
            padding: 8px 25px;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
            color: var(--white) !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(52, 58, 64, 0.9), rgba(108, 117, 125, 0.9)), url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        
        .hero-content h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-dark);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-item i {
            font-size: 3rem;
            color: #28a745;
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        /* Vision Mission */
        .vision-mission-section {
            padding: 80px 0;
        }
        
        .vm-card {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            background: var(--white);
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .service-card {
            background: var(--light-bg);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h5 {
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--secondary-gray);
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background: #28a745;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .accordion-button:not(.collapsed) {
            background: #28a745;
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #28a745, #20c997);
            padding: 80px 0;
            color: var(--white);
            text-align: center;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .contact-info-box {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(10px);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: #28a745;
            margin-right: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #28a745;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: #28a745;
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: #218838;
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .copyright a {
            color: #28a745;
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
        }
