
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary:rgb(30, 110, 175);
            --primary-light: #3b82f6;
            --primary-dark:rgb(30, 89, 138);
            --secondary: #f8fafc;
            --accent: #0ea5e9;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --border: #e2e8f0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            overflow-x: hidden;
        }

        .main-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Hero */
        .projects-hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }

        .projects-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
        }

        .projects-hero-subtitle {
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .projects-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Content Sections */
        .projects-section {
            padding: 5rem 0;
        }

        .projects-intro-section {
            background: var(--white);
            box-shadow: var(--shadow-lg);
            border-radius: 1rem;
            padding: 3rem;
            margin: -3rem auto 5rem;
            position: relative;
            z-index: 3;
        }

        .projects-intro-text {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .projects-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 3rem;
            position: relative;
        }

     

        /* Services Grid */
        .turnkey-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .turnkey-service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .turnkey-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .turnkey-service-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: var(--shadow-lg);
        }

        .turnkey-service-card:hover::before {
            transform: scaleX(1);
        }

        .turnkey-service-title {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
        }

        .turnkey-service-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Project Types */
        .medical-project-types {
            background: var(--white);
            padding: 4rem 0;
            margin: 4rem 0;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }

        .medical-project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .medical-project-item {
            display: flex;
            align-items: center;
            padding: 1.5rem;
           background-color: white;
            border-radius: 0.75rem;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .medical-project-item:hover {
            background: var(--white);
            box-shadow: var(--shadow);
            transform: translateX(0.25rem);
        }

        .medical-project-icon {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .medical-project-icon i {
            color: var(--white);
            font-size: 1.25rem;
        }

        .medical-project-text {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* Why Choose Us Slider */
        .medgrey-advantage-section {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .medgrey-advantage-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
            z-index: 1;
        }

        .medgrey-advantage-section .main-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .healthcare-slider-container {
            position: relative;
            width: 100%;
            margin: 4rem 0 0;
            overflow: hidden;
            border-radius: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
        }

        .healthcare-slider-wrapper {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .healthcare-slide {
            min-width: 100%;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            padding: 6rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .healthcare-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(14, 165, 233, 0.75) 100%);
            z-index: 1;
        }

        .healthcare-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
        }

        .healthcare-slide-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .healthcare-slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--white);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            background: linear-gradient(45deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .healthcare-slide-description {
            font-size: 1.5rem;
            color: var(--white);
            line-height: 1.8;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            opacity: 0.95;
            font-weight: 300;
        }

        .healthcare-slider-navigation {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 2rem;
            z-index: 3;
        }

        .healthcare-nav-button {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.2);
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .healthcare-nav-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .healthcare-slider-dots {
            display: flex;
            gap: 1rem;
        }

        .healthcare-slider-dot {
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .healthcare-slider-dot:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .healthcare-slider-dot.active {
            background: var(--white);
            transform: scale(1.3);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
        }
        @media (max-width: 768px) {
             .healthcare-slide {
          height: 80vh;
          
        }
    .healthcare-slide-title {
        font-size: 2rem;
    }

    .healthcare-slide-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .healthcare-slide {
        padding: 4rem 2rem;
    }

    .healthcare-nav-button {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }

    .healthcare-slider-navigation {
        bottom: 2rem;
    }
}


        /* Closing Statement */
        .projects-conclusion-section {
            background: var(--white);
            box-shadow: var(--shadow-lg);
            border-radius: 1rem;
            padding: 3rem;
            margin: 4rem 0;
            text-align: center;
            position: relative;
        }

        .projects-conclusion-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4rem;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            border-radius: 0 0 2px 2px;
        }

        .projects-conclusion-text {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .projects-hero-title {
                font-size: 2.5rem;
            }
            
            .projects-section-title {
                font-size: 2rem;
            }
            
            .main-content-wrapper {
                padding: 0 1rem;
            }
            
            .turnkey-services-grid {
                grid-template-columns: 1fr;
            }
            
            .medical-project-grid {
                grid-template-columns: 1fr;
            }
            
            .projects-intro-section {
                padding: 2rem;
                margin: -2rem auto 3rem;
            }
        }

        /* Smooth Animations */
        .projects-fade-in {
            opacity: 0;
            transform: translateY(2rem);
            animation: projectsFadeInUp 0.8s ease forwards;
        }

        @keyframes projectsFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .projects-stagger-1 { animation-delay: 0.1s; }
        .projects-stagger-2 { animation-delay: 0.2s; }
        .projects-stagger-3 { animation-delay: 0.3s; }
        .projects-stagger-4 { animation-delay: 0.4s; }
        .projects-stagger-5 { animation-delay: 0.5s; }
        .projects-stagger-6 { animation-delay: 0.6s; }
