
        :root {
            --primary-color: #FF00FF;
            --secondary-color: #1A237E;
            --light-bg: #F5F5F5;
            --text-dark: #333;
            --text-light: #666;
        }

        * {
            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 {
            padding: 1rem 0;
            background: transparent !important;
            box-shadow: none;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--secondary-color) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link.active {
            color: var(--secondary-color) !important;
        }

        .hero-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 0, 255, 0.3);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(255, 0, 255, 0.1)),
                        url('https://static.vecteezy.com/system/resources/thumbnails/036/357/790/small/isolated-stethoscope-on-white-background-medical-equipment-concept-photo.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s 0.2s;
            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(--secondary-color);
            margin-bottom: 50px;
            position: relative;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            padding: 20px;
        }

        .about-content h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .read-more-btn {
            background: var(--secondary-color);
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }

        .read-more-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-box i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }

        .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 */
        .vision-mission-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
        }

        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .vision-mission-box h4 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Why Choose Us */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-box h4 {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .feature-box p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Services Section */
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card-body h5 {
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .service-card-body p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Booking Form */
        .booking-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .booking-form .form-control,
        .booking-form .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 15px;
            transition: border-color 0.3s;
        }

        .booking-form .form-control:focus,
        .booking-form .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 0, 255, 0.25);
        }

        .booking-form label {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 5px;
        }

        /* Reviews */
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 15px;
        }

        /* FAQ */
        .accordion-button {
            background: white;
            color: var(--secondary-color);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(26, 35, 126, 0.1));
            color: var(--secondary-color);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Contact Info */
        .contact-info-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 20px;
            width: 50px;
        }

        .contact-info-box h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 50px 0 20px;
        }

        footer h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
