
        :root {
            --primary-blue: #0284C7;
            --light-blue: #38BDF8;
            --accent-yellow: #FACC15;
            --white: #FFFFFF;
        }

        * {
            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 {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            color: var(--accent-yellow);
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .btn-cta {
            background: var(--primary-blue);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .btn-cta:hover {
            background: var(--light-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(2, 132, 199, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(2, 132, 199, 0.9), rgba(56, 189, 248, 0.9)),
                        url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            min-height: 600px;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size:4rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 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(--primary-blue);
            margin-bottom: 50px;
            text-align: center;
        }

        /* About Section */
        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-blue);
            color: var(--white);
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
        }

        .counter-box i {
            font-size: 3rem;
            color: var(--accent-yellow);
            margin-bottom: 20px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }

        .counter-label {
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Vision Mission Cards */
        .vm-card {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-10px);
        }

        .vm-card i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20%;
            width: 40%;
            height: 2px;
            background: var(--light-blue);
            transform: translateY(-50%);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--white);
        }

        /* Feature Box */
        .feature-box {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        /* Service Cards */
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            color: var(--primary-blue);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-desc {
            color: #666;
            margin-bottom: 20px;
        }

        /* Book Service Section */
        .book-service-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            padding: 80px 0;
            color: var(--white);
        }

        /* Review Cards */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .review-stars {
            color: var(--accent-yellow);
            margin-bottom: 20px;
        }

        .review-author {
            color: var(--primary-blue);
            font-weight: bold;
            margin-top: 20px;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--light-blue);
            color: var(--white);
            font-weight: 500;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-blue);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary-blue);
            padding: 80px 0;
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .btn-hero {
            background: var(--accent-yellow);
            color: #333;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-hero:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
        }

        /* Contact Section */
        .contact-info {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-info h4 {
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .contact-info div {
            margin-bottom: 15px;
        }

        .contact-info i {
            color: var(--primary-blue);
            margin-right: 10px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: var(--white);
            padding: 50px 0 20px;
        }

        footer h5 {
            color: var(--light-blue);
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--light-blue);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        .footer-bottom a {
            color: var(--light-blue);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
