
        :root {
            --primary-color: #C62828;
            --secondary-color: #EF9A9A;
            --accent-color: #FFD54F;
            --light-color: #FFFFFF;
            --dark-color: #333333;
            --font-family: 'Roboto', sans-serif;
            --heading-font: 'Montserrat', sans-serif;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-family);
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--heading-font);
            font-weight: 600;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 8px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: #9A1C1C;
            color: var(--light-color);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.shutterstock.com/image-vector/hand-holding-icon-healthcare-medical-600nw-2489273105.jpg') center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: var(--light-color);
            position: relative;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .btn-hero {
            background-color: var(--accent-color);
            color: var(--dark-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-hero:hover {
            background-color: #FFC107;
            color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content {
            padding: 20px;
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .about-content p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        
        .btn-read-more {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-read-more:hover {
            background-color: #9A1C1C;
            color: var(--light-color);
            transform: translateY(-2px);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .counter-text {
            font-size: 1.1rem;
            text-transform: uppercase;
        }
        
        /* Vision & Mission Section */
        .vision-mission-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .vision-mission-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Why Choose Us Section */
        .why-choose-item {
            text-align: center;
            padding: 30px 15px;
            transition: all 0.3s ease;
        }
        
        .why-choose-item:hover {
            transform: translateY(-5px);
        }
        
        .why-choose-icon {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .why-choose-item:hover .why-choose-icon {
            background-color: var(--primary-color);
        }
        
        .why-choose-icon i {
            font-size: 2rem;
            color: var(--light-color);
        }
        
        .why-choose-item h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Work Process Section */
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background-color: var(--primary-color);
        }
        
        .process-icon i {
            font-size: 2rem;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon i {
            color: var(--light-color);
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .service-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .service-content p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-service {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
        }
        
        .btn-service:hover {
            background-color: #9A1C1C;
            color: var(--light-color);
            transform: translateY(-2px);
        }
        
        /* Reviews Section */
        .review-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .review-rating {
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        
        .review-text {
            font-style: italic;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        
        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(198, 40, 40, 0.9), rgba(198, 40, 40, 0.9)), url('https://images.pexels.com/photos/263402/pexels-photo-263402.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            padding: 80px 0;
            color: var(--light-color);
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: var(--accent-color);
            color: var(--dark-color);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-large:hover {
            background-color: #FFC107;
            color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Contact Section */
        .contact-info {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-color);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .contact-form {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-color);
        }
        
        .form-control, .form-select {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25);
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: #9A1C1C;
            color: var(--light-color);
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: var(--light-color);
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--light-color);
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            margin-right: 8px;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #9A1C1C;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #ccc;
        }
        
        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .process-step {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .why-choose-item {
                margin-bottom: 30px;
            }
            
            .footer-links {
                margin-bottom: 30px;
            }
        }
