
        :root {
            --primary-cyan: #22D3EE;
            --primary-dark: #0891B2;
            --light-gray: #F3F4F6;
            --text-dark: #1F2937;
            --text-light: #6B7280;
        }

        * {
            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);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: transparent !important;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            color: var(--primary-cyan);
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-dark) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-cyan);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .btn-cta-nav {
            background: linear-gradient(135deg, #fbbf24, var(--primary-dark));
            color: white !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .btn-cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(241, 241, 241, 0.96), rgba(8, 145, 178, 0.1)),
                        url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            color: #0b0b0b;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .btn-hero {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(34, 211, 238, 0.4);
            color: white;
        }

        /* About Section */
        .about-section {
            padding: 5rem 0;
            background: white;
        }

        .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;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .btn-read-more {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-read-more:hover {
            color: var(--primary-cyan);
            gap: 1rem;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            padding: 4rem 0;
            color: white;
        }

        .counter-item {
            text-align: center;
        }

        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Vision & Mission Section */
        .vision-mission-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }

        .vm-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-5px);
        }

        .vm-card i {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            margin-bottom: 1.5rem;
        }

        .vm-card h3 {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .vm-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 5rem 0;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .feature-card:hover {
            border-color: var(--primary-cyan);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            margin-bottom: 1.5rem;
        }

        .feature-card h4 {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .nav-item{
            margin-left:35px !important;
        }

        .service-card:hover img {
            transform: scale(1.05);
        }

        .service-card-body {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-body h4 {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-card-body p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        /* Book Service Section */
        .book-service-section {
            padding: 5rem 0;
            background: white;
        }

        .form-control, .form-select {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-cyan);
            box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.25);
        }

        .btn-book {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
            color: white;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }

        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .review-stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .review-text {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .review-author {
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .review-location {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .accordion-button {
            background: white;
            color: var(--text-dark);
            font-weight: 600;
            padding: 1.25rem;
            border: none;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(8, 145, 178, 0.1));
            color: var(--primary-dark);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230891B2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 1.25rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            padding: 5rem 0;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-cyan);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(34, 211, 238, 0.1);
            border-radius: 50%;
        }

        .contact-info-item h5 {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .contact-info-item p {
            color: var(--text-light);
            margin: 0;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
            color: white;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-widget h4 {
            color: var(--primary-cyan);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-widget p {
            color: #9ca3af;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-cyan);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #374151;
            background: #374151;
            color: white;
            border-radius: 5px;
        }

        .newsletter-form input::placeholder {
            color: #9ca3af;
        }

        .newsletter-form button {
            padding: 0.75rem 1rem;
            background: var(--primary-cyan);
            color: white;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            color: #9ca3af;
        }

        .footer-bottom a {
            color: var(--primary-cyan);
            text-decoration: none;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
