 .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            max-width: 1200px;
            width: 100%;
        }

        /* Card Styles & Entry Animation */
        .stat-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 25px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* SVG/Icon Styling */
        .icon-container {
            font-size: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e8f5e9;
            flex-shrink: 0;
			width:143px;height:143px;background-size: cover;
        }

        /* Content Layout */
        .stat-content {
            display: flex;
            /*align-items: baseline;*/
            gap: 15px;
            flex-grow: 1;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 400;
            color: #000;
            line-height: 1;
            min-width: 110px;
        }

        .stat-text {
            font-size: 20px;
            line-height: 1.5;
            color: #353535;
        }

        .sub-text {
            display: block;
            margin-top: 5px;
            font-weight: bold;
            color: #353535;
            font-size: 20px;
        }

        /* Staggered Animation Delays */
        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .stat-card:nth-child(4) { animation-delay: 0.4s; }
        .stat-card:nth-child(5) { animation-delay: 0.5s; }
        .stat-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Mobile View: 1 item per row */
        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-content {
                flex-direction: column;
                gap: 8px;
            }

            .stat-number {
                font-size: 3rem;
            }