
        :root {
            --primary-color: #000000;
            --secondary-color: #fffcf2;
            --dark-color: #252422;
            --light-color: #ffffff;
            --font-family: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-family);
            color: var(--dark-color);
            background-color: var(--light-color);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand i {
            margin-right: 8px;
        }
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .navbar .btn-cta {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .navbar .btn-cta:hover {
            background-color: #d14e1f;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(37, 36, 34, 0.6), rgba(37, 36, 34, 0.6)), url('https://health.medicaldialogues.in/h-upload/2025/01/01/267220-featured-imagesmoin-1.webp');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: var(--light-color);
            text-align: center;
        }
        .hero-section h1 {
            font-size: 6rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .btn-hero {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid var(--primary-color);
        }
        .btn-hero:hover {
            background-color: transparent;
            color: var(--primary-color);
        }
        
        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }

        /* About Us */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .btn-read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            margin-top: 15px;
            display: inline-block;
        }
        .btn-read-more:hover {
            text-decoration: underline;
        }

        /* Counter */
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--secondary-color);
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .counter-box h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        .counter-box p {
            margin: 0;
            color: #555;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .feature-box h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Work Process */
        .process-box {
            text-align: center;
            position: relative;
        }
        .process-box .process-icon {
            width: 100px;
            height: 100px;
            background-color: var(--primary-color);
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        .process-box h4 {
            font-size: 1.2rem;
        }
        .process-box:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            left: 60%;
            width: 80%;
            height: 2px;
            background-color: #ddd;
            z-index: -1;
        }
        @media (max-width: 768px) {
            .process-box:not(:last-child)::after {
                display: none;
            }
        }

        /* Services Cards */
        .service-card {
            background-color: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 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-body h5 {
            font-weight: 700;
            margin-bottom: 15px;
        }
        .service-card-body p {
            flex-grow: 1;
        }
        .service-card .btn-read-more {
            margin-top: auto;
        }

        /* Reviews */
        .review-card {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        .review-card .review-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        .reviewer h6 {
            margin: 0;
            font-weight: 600;
        }
        .reviewer small {
            color: #777;
        }

        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 80px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        .btn-cta-light {
            background-color: var(--light-color);
            color: var(--primary-color);
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-cta-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: var(--primary-color);
        }

        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        .contact-info-box i {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-right: 20px;
            width: 40px;
        }
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 0;
            border: 1px solid #ddd;
            padding: 12px 15px;
        }
        .contact-form .form-control:focus, .contact-form .form-select:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        .contact-form .btn-submit {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .contact-form .btn-submit:hover {
            background-color: #d14e1f;
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: #aaa;
            padding: 60px 0 20px 0;
        }
        footer h5 {
            color: var(--light-color);
            margin-bottom: 25px;
            font-weight: 600;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 12px;
        }
        footer ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer ul li a:hover {
            color: var(--primary-color);
        }
        .footer-cta {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }
        .footer-cta h5 {
            color: var(--light-color);
            margin-bottom: 15px;
        }
        .footer-cta .form-control {
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
        }
        .footer-cta .btn {
            border-radius: 50px;
            padding: 10px 25px;
            border: none;
        }
        .copyright {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }


        /* Breadcrumb */
        .breadcrumb-section {
            background-color: var(--secondary-color);
            padding: 60px 0;
        }
        .breadcrumb {
            background-color: transparent;
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: var(--dark-color);
        }
        .breadcrumb-item.active {
            color: var(--primary-color);
        }

        /* Page Content */
        .page-content {
            padding: 80px 0;
        }
        .page-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary-color);
        }
        .page-content h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .page-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .page-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .page-content ul li {
            margin-bottom: 10px;
        }
        .page-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
        }
