
        :root {
            --primary-color: #4A148C;
            --secondary-color: #D1C4E9;
            --light-color: #FFFFFF;
            --text-dark: #333333;
            --text-light: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }

        .navbar-brand i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary-color), #6A1B9A);
            color: var(--light-color) !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            font-weight: 600;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(74, 20, 140, 0.3);
            color: var(--light-color) !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(74, 20, 140, 0.9), rgba(209, 196, 233, 0.9)), 
                        url('https://www.hindustantimes.com/ht-img/img/2026/04/06/1600x900/doctor-s-desk_d7f78e0c-be1a-11e8-8a71-2e69120e7585_1712413479383.jpg') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--light-color);
            position: relative;
        }

        .hero-content h1 {
            font-size:5rem;
            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;
        }

        .hero-btn {
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* About Section */
        .about-section {
            background: var(--light-color);
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 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);
        }

        .about-content {
            padding: 20px;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color), #6A1B9A);
            color: var(--light-color);
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision Mission Section */
        .vision-mission-card {
            background: var(--light-color);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-10px);
        }

        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            background: var(--light-color);
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #6A1B9A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--light-color);
            font-size: 2rem;
        }

        /* Feature Box */
        .feature-box {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        /* Service Cards */
        .service-card {
            background: var(--secondary-color);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .service-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-body {
            padding: 25px;
        }

        .service-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-desc {
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Review Cards */
        .review-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .review-stars {
            color: #FFC107;
            margin-bottom: 15px;
        }

        .review-text {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .review-location {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--secondary-color);
        }

        .accordion-button {
            background: var(--light-color);
            color: var(--primary-color);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--light-color);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #6A1B9A);
            color: var(--light-color);
            padding: 80px 0;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-btn-large {
            background: var(--light-color);
            color: var(--primary-color) !important;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cta-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255,255,255,0.3);
            color: var(--primary-color) !important;
        }

        /* Contact Section */
        .contact-section {
            background: var(--light-color);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding: 20px;
            background: var(--secondary-color);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--light-color);
        }

        .contact-info-icon i {
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--light-color);
            padding: 60px 0 20px;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--light-color);
        }

        .footer-link {
            display: block;
            color: var(--secondary-color);
            text-decoration: none;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--light-color);
            transform: translateX(5px);
        }

        .subscribe-form {
            display: flex;
            margin-top: 20px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .subscribe-form button {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subscribe-form button:hover {
            background: var(--light-color);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: var(--secondary-color);
        }

        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .copyright a:hover {
            color: var(--light-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
