
        :root {
            --primary-green: #e3e0e0;
            --coral: #FF6F61;
            --deep-blue: #1A237E;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--deep-blue) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--deep-blue) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--coral) !important;
        }
        
        .btn-cta {
            background: var(--coral);
            color: white;
            padding: 8px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background: var(--deep-blue);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, rgba(152, 255, 152, 0.3) 100%),
                        url('https://wallpapers.com/images/hd/healthcare-background-8u6l9oyzn67dtdas.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            position: relative;
        }
        
        .hero-content h1 {
            font-size:4rem;
            text-transform: uppercase;
            font-weight: bold;
            color: var(--deep-blue);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 30px;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--deep-blue);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--coral);
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--deep-blue);
            color: white;
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
        }
        
        /* Vision Mission */
        .vision-mission-box {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--deep-blue);
            transition: all 0.3s ease;
        }
        
        .feature-box:hover .feature-icon {
            background: var(--coral);
            color: white;
        }
        
        /* Services Section */
        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            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: 20px;
        }
        
        .service-card h5 {
            color: var(--deep-blue);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* Booking Form */
        .booking-section {
            background: linear-gradient(135deg, rgba(152, 255, 152, 0.2) 0%, rgba(255, 111, 97, 0.2) 100%);
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 12px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--coral);
            box-shadow: 0 0 0 0.2rem rgba(255, 111, 97, 0.25);
        }
        
        /* Reviews Section */
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background: var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-blue);
            font-weight: bold;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-green);
            color: var(--deep-blue);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--coral);
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--deep-blue);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-info-box {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--coral);
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background: var(--deep-blue);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .copyright a {
            color: var(--primary-green);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
