
        :root {
            --primary-color: #97a97c;
            --secondary-color: #cfe1b9;
            --accent-color: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .nav-item{
            margin-left:25px !important;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: var(--accent-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            font-size: 1.8rem;
            margin-right: 10px;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-cta {
            background: var(--primary-color);
            color: var(--accent-color);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .btn-cta:hover {
            background: var(--secondary-color);
            color: var(--text-dark);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(151, 169, 124, 0.9), rgba(207, 225, 185, 0.9)),
                        url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: var(--accent-color);
            position: relative;
        }

        .hero-content h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .btn-hero {
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-hero:hover {
            background: var(--primary-color);
            color: var(--accent-color);
            transform: scale(1.05);
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 50px;
        }

        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Counter Section */
        .counter-section {
            background: var(--secondary-color);
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .counter-label {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-top: 10px;
        }

        /* Feature Box */
        .feature-box {
            background: var(--accent-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature-box h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Process Step */
        .process-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .process-step:hover .process-icon {
            background: var(--secondary-color);
            transform: scale(1.1);
        }

        .process-icon i {
            font-size: 2rem;
            color: var(--accent-color);
        }

        /* Service Card */
        .service-card {
            background: var(--accent-color);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card-body h5 {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Review Card */
        .review-card {
            background: var(--accent-color);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-weight: bold;
            margin-right: 15px;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--secondary-color);
        }

        .accordion-button {
            background: var(--accent-color);
            color: var(--text-dark);
            font-weight: 500;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--accent-color);
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            color: var(--accent-color);
            text-align: center;
        }

        /* Contact Section */
        .contact-info-box {
            background: var(--accent-color);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 20px;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--accent-color);
            padding: 50px 0 20px;
        }

        footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .newsletter-form input {
            padding: 10px;
            border: none;
            border-radius: 5px;
        }

        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
