
        :root {
            --primary-color: #87CEEB;
            --secondary-color: #003366;
            --light-color: #F8F9FA;
            --text-dark: #333;
        }

        * {
            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: transparent !important;
            padding: 20px 0;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--secondary-color) !important;
        }

        .navbar-brand i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .navbar-nav .nav-link {
            color: var(--secondary-color) !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), var(--secondary-color));
            color: white !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(237, 237, 237, 0.9), rgba(2, 2, 2, 0.9)),
                        url('https://www.pixelstalk.net/wp-content/uploads/images1/Medical-Wallpapers-HD-Free-download.jpg') center/cover;
            padding: 100px 0;
            color: white;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 6rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform:uppercase;
            animation: fadeInUp 1s ease;
        }

        .hero-section 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 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 50px;
            font-weight: bold;
        }

        /* About Section */
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-text p {
            margin-bottom: 15px;
            color: #555;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }

        /* Vision & Mission */
        .vision-mission-box {
            background: var(--light-color);
            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);
        }

        .vision-mission-box h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .vision-mission-box i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        /* Features Section */
        .feature-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            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 40px rgba(0, 0, 0, 0.15);
        }

        .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;
        }

        /* Services Section */
        .service-card {
            background: var(--light-color);
            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);
        }

        .nav-item{
            margin-left:35px !important;
        }

        .service-card img {
            width: 100%;
            height: 370px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card-body h4 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: bold;
        }

        /* Reviews Section */
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px 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: #ffc107;
            margin-bottom: 15px;
        }

        .review-card h6 {
            color: var(--secondary-color);
            margin-top: 15px;
            font-weight: bold;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--light-color);
            color: var(--secondary-color);
            font-weight: 500;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact-info {
            background: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }

        .contact-info h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 15px;
            color: #555;
        }

        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-form h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px;
            margin-bottom: 15px;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(135, 206, 235, 0.25);
        }

        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 50px 0 20px;
        }

        .footer h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--primary-color);
        }

        .subscribe-form {
            display: flex;
            margin-top: 15px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .subscribe-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .subscribe-form button:hover {
            background: var(--secondary-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;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
