<style>

        /* Custom Styles for nuances hard to achieve with utility classes alone */
        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .gradient-text {
            background: linear-gradient(to right, #8fd913, #39ae38);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gradient-bg {
            background: linear-gradient(to right, #8fd913, #39ae38);
        }

        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
            border-left-color: #012068;
        }

        /* Custom Bullet using Accent Color */
        .service-item::before {
            content: '✓';
            display: inline-block;
            margin-right: 8px;
            color: #39ae38; /* Fallback */
            font-weight: bold;
        }

        /* Checkmark Icon styling within the grid */
        .check-icon {
            min-width: 18px;
            color: #39ae38; 
            margin-top: 4px;
        }

		@media only screen and (max-width: 767px) {
			#bio_ep {

				height: 90% !important;
				width: 96%;
			}

			.m-3 {
				margin-top: 15px !important;
			}
		}
        /* 
         * Corporate Design System & CSS Variables 
         * Purpose: Maintain consistency and ease of updates.
         */
        :root {
            /* Palette: Industrial, Neutral, Trustworthy */
            --color-primary: #1e3a8a; /* Deep Corporate Blue */
            --color-primary-dark: #172554;
            --color-accent: #f59e0b; /* Amber for subtle highlights (savings/compliance) */
            --color-bg-main: #f8fafc; /* Slate 50 */
            --color-bg-card: #ffffff;
            --color-text-main: #0f172a; /* Slate 900 */
            --color-text-muted: #475569; /* Slate 600 */
            
            /* Typography Scale */
            --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
            --text-xs: 0.75rem;
            --text-sm: 0.875rem;
            --text-base: 1rem;
            --text-lg: 1.125rem;
            --text-xl: 1.25rem;
            --text-2xl: 1.5rem;
            --text-3xl: 1.875rem;
            --text-4xl: 2.25rem;
            
            /* Spacing & Layout */
            --spacing-container: 1200px;
            --spacing-section: 5rem; /* Generous whitespace for enterprise feel */
            --radius-card: 8px;
            
            /* Shadows & Effects */
            --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            
            /* Transitions */
            --transition-base: all 0.3s ease;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg-main);
            color: var(--color-text-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* Section Container */
        .impact-section {
            background-color: var(--color-bg-main);
            padding: var(--spacing-section) 1rem;
            position: relative;
            overflow: hidden;
            padding-top: 0px !important;
        }

        .container {
            max-width: var(--spacing-container);
            margin: 0 auto;
        }

        /* Header Typography */
        .section-header h2 {
            font-size: var(--text-3xl);
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: var(--text-lg);
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Metrics Grid */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        /* Responsive Columns */
        @media (min-width: 640px) {
            .metrics-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            .metrics-grid { grid-template-columns: repeat(4, 1fr); }
        }

        /* Metric Card Styling */
        .metric-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-card);
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow-soft);
            border-top: 3px solid transparent;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .metric-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-top-color: var(--color-primary);
        }

        /* Visual Polish: Subtle Background Glow */
        .metric-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .metric-card:hover::before {
            opacity: 1;
        }

        /* Icon Styling */
        .metric-icon {
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        /* Data Typography */
        .metric-value {
            font-size: var(--text-3xl);
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1.1;
            font-variant-numeric: tabular-nums; /* Prevents layout shift */
            margin-bottom: 0.25rem;
        }

        .metric-value.suffix {
            /* For plus signs or MW text attached directly */
            font-size: var(--text-2xl);
            font-weight: 600;
            color: var(--color-text-muted);
        }

        .metric-label {
            font-size: var(--text-sm);
            font-weight: 600;
            color: var(--color-text-main);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0.5rem;
        }

        .metric-desc {
            font-size: var(--text-xs);
            color: var(--color-text-muted);
            margin-top: 0.25rem;
            line-height: 1.4;
        }

        /* Compliance Badge (Subtle Highlight) */
        .badge-compliance {
            background-color: #eff6ff;
            color: var(--color-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-top: 0.5rem;
            display: inline-block;
        }

        /* Accessibility: Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .metric-card {
                transition: none;
                transform: none !important;
            }
        }

		.partner-area{
 		 background: #ffffff;
		 height: 240px;
		}

	        :root {
            --primary-blue: #012068;
            --action-gradient: linear-gradient(to right, #8fd913, #39ae38);
            --soft-bg: #f8fafc;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #334155;
            scroll-behavior: smooth;
        }

        .text-navy { color: var(--primary-blue); }
        .bg-navy { background-color: var(--primary-blue); }
        .bg-action-gradient { background: var(--action-gradient); }
        .border-action { border-image: var(--action-gradient) 1; }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

        .section-divider {
            height: 4px;
            width: 60px;
            background: var(--action-gradient);
            margin: 1.5rem 0;
        }

        .step-number {
            background: var(--action-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-blue);
        }
		.py-20 {
			padding-bottom: 0rem !important;
		}
		.ptb-100 {
			padding-top: 50px;
			padding-bottom: 100px;
		}
		.bg-slate-50 {
			--tw-bg-opacity: 1;
			background-color: #fff !important;
		}
	</style>