
        :root {
            --primary-color: #2E1065;
            --secondary-color: #6D28D9;
            --tertiary-color: #A855F7;
            --light-color: #ffffff;
            --dark-color: #333;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }

        /* Navbar Styles */
        .navbar {
            transition: all 0.5s ease-in-out;
            padding: 1rem 0;
        }
        .navbar-scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--dark-color) !important;
        }
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            margin: 0 10px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .cta-btn {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .cta-btn:hover {
            background-color: var(--secondary-color);
            color: var(--light-color);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.mindinventory.com/blog/wp-content/uploads/2024/08/types-of-healthcare-software-key-features-and-benefits.webp') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--light-color);
        }
        .hero-section h1 {
            font-size: 7rem;
            font-weight: 800;
            text-transform: uppercase;
        }
        .hero-section .btn {
            padding: 12px 35px;
            font-size: 1.1rem;
            margin-top: 20px;
            border-radius: 50px;
            font-weight: 600;
        }

        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }

        /* About Us Section */
        .about-us-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Counter Section */
        .counter-section {
            background-color: var(--tertiary-color);
        }
        .counter-box {
            text-align: center;
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        /* Vision & Mission */
        .vm-box {
            text-align: center;
            padding: 30px;
        }
        .vm-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-10px);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-box {
            text-align: center;
            position: relative;
        }
        .process-box:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--tertiary-color);
            z-index: -1;
        }
        .process-number {
            display: inline-block;
            width: 70px;
            height: 70px;
            line-height: 70px;
            background-color: var(--secondary-color);
            color: var(--light-color);
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Services Section */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-card .img-fluid {
            height: 200px;
            object-fit: cover;
        }
        .service-card .card-body {
            background-color: #f8f9fa; /* bg-light equivalent */
        }
        .service-card .card-title {
            color: var(--dark-color);
            font-weight: 700;
        }

        /* Reviews Section */
        .review-box {
            text-align: center;
            padding: 20px;
        }
        .review-box img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
        }
        .review-box .stars {
            color: #ffc107;
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            color: var(--light-color);
            text-align: center;
            padding: 60px 0;
        }
        .cta-section h2 {
            font-size: 2.5rem;
        }

        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
        }
        
        /* Footer */
        footer {
            background-color: #f8f9fa;
            color: var(--dark-color);
        }
        footer h5 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 20px;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 10px;
        }
        footer a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--primary-color);
        }
        .footer-bottom {
            border-top: 1px solid #ddd;
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
        }

